Consolidate E-Way Bill
Sandbox API to give the consolidated E-Way bill details of the respective GSTIN
Overview
This API takes in gstin of Requester(Tax payer or Transporter) to give the Consolidated E-Way bill details of respective gstin.
Endpoint
HTTP Method | Resource |
---|---|
Post | /ewb/tax-payer/seller/bills/consolidate |
Request
Follow the below guidelines to pass GSTIN in path parameters to call the API.
Headers
Param | Type | Description | Example |
---|---|---|---|
x-api-key | string | An API key is a public key to identify users when calling any Sandbox API. | key_live_ZUQT5UEf4...... |
Authorization | string | JWT Authorization token which is generated using E-Way Bill Authentication API. | eyJhsebihGyUf...... |
Body Parameters
Param | Type | Description | Examples |
---|---|---|---|
vehicleNo | string | Vehicle number Possible value - 1. AB121234 (First 2 char are State Code) 2. AB12A1234 (First 2 char are State Code) 3. AB12AB1234 (First 2 char are State Code) 4. ABC1234 5. AB123A1234 (First 2 char are State Code) 6. AB12ABC1234 (First 2 char are State Code) 7. DFXXXXXX (Defence Vehicle) 8. TMXXXXXXXXXXXXX (Temp RC) At least 7 characters 9. BPXXXXXXXXXXXXX (Bhutan Vehicle) At least 7 characters 10. NPXXXXXXXXXXXXX (Nepal Vehicle) At least 7 characters | KA12BL4567 |
fromPlace | num | Current Place | BANGALORE SOUTH |
fromState | num | Current State Possible value - 1 : JAMMU AND KASHMIR2 : HIMACHAL PRADESH3 : PUNJAB4 : CHANDIGARH5 : UTTARAKHAND6 : HARYANA7 : DELHI8 : RAJASTHAN9 : UTTAR PRADESH10 : BIHAR11 : SIKKIM12 : ARUNACHAL PRADESH13 : NAGALAND14 : MANIPUR15 : MIZORAM16 : TRIPURA17 : MEGHALAYA18 : ASSAM19 : WEST BENGAL20 : JHARKHAND21 : ORRISA22 : CHATTISGARH23 : MADHYA PRADESH24 : GUJARAT26 : DADAR AND NAGAR HAVELI & DAMAN AND DIU27 : MAHARASHTRA29 : KARNATAKA30 : GOA31 : LAKSHADWEEP32 : KERELA33 : TAMIL NADU34 : PUDUCHERRY35 : ANDAMAN AND NICOBAR36 : TELENGANA37 : ANDHRA PRADESH38 : LADAKH97 : OTHER TERRITORY99 : OTHER COUNTRY | KARNATAKA |
transMode | num | Mode of transportation Possible value - 1 : Road2 : Rail3 : Air4 : Ship5 : inTransit | 1 |
transDocNo | string | Transporter Document number | 12-86/3 |
transDocDate | string | Transporter Document Date | 12/09/2017 |
tripSheetEwbBills | array | Array of E-Way Bill Number | [ { "ewbNo": "131002233845" }, { "ewbNo": "161002233844" } ] |
Once the values are added, Your curl will look something like this
curl --request POST \
--url https://api.sandbox.co.in/ewb/tax-payer/seller/bills/consolidate \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-api-key: xxxxxxxxxx' \
--header 'x-api-version: 1.0' \
--data '
{
"fromPlace": "BANGALORE SOUTH",
"fromState": 29,
"vehicleNo": "KA12AB1234",
"transMode": "1",
"transDocNo": "1234",
"transDocDate": "12/10/2017",
"tripSheetEwbBills": [
{
"ewbNo": "131002233845"
},
{
"ewbNo": "161002233844"
}
]
}
'
Response
Param | Type | Description | Examples |
---|---|---|---|
cEwbNo | num | Consolidated E-Way Bill Number | 1810000387 |
cEWBDate | num | Consolidated E-Way Bill Date | 15/12/2017 10:27:00 AM |
Response Caching
Response caching is not available for this API. Learn more about our response caching mechanism here
Wallet Charges
Since Generate E-Way Bill is a Paid API, a wallet charge of INR 0.25 + GST will take place.
Versioning
This API is currently in major version 1.0. Refer to our versioning policies here
Updated about 2 months ago