Add Multi Vehicles
Sandbox API to add multi vehicles for a particular GSTIN
Overview
This API takes in GSTIN of Requester(Tax payer or Transporter) and adds the multi vehicles.
Endpoint
HTTP Method | Resource |
---|---|
Post | /ewb/tax-payer/seller/bills/{ewb_no}/multi-vehicle/add |
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...... |
Path Parameters
Param | Type | Description | Example |
---|---|---|---|
ewb_no | string | E-Way bill number | 1310000267 |
Body Parameters
Param | Type | Description | Example |
---|---|---|---|
ewbNo | num | E-way bill Generated | 131000026768 |
fromPlace | string | Place of Consignor | BANGALORE SOUTH |
fromState | num | State of Consignor | 29 |
reasonCode | num | Reason code for vehicle updation | 2 |
toPlace | num | Reason for Vehicle Updation | Vehicle details updated |
totalQuantity | num | Total Quantity | |
unitCode | string | Unit Code | NOS |
transMode | num | Mode of Transport | 1 |
ewbNo | num | E-way bill Generated | 131000026768 |
fromPlace | string | Place of Consignor | BANGALORE SOUTH |
fromState | num | State of Consignor | 29 |
reasonCode | num | Reason code for vehicle updation | 2 |
toPlace | string | Place of Consinee | BANGALORE SOUTH |
toState | num | State of Consinee | 29 |
reasonRem | string | Reason for Vehicle Updation | Vehicle details updated |
totalQuantity | num | Total Quantity | |
unitCode | string | Unit Code | NOS |
transMode | num | Mode of Transport | 1 |
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/1310000267/multi-vehicle/add \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-api-key: xxxxxxxxxx' \
--header 'x-api-version: 1.0' \
--data '
{
"ewbNo": 171002233847,
"groupNo": "32",
"vehicleNo": "PQR1234",
"transDocNo": "1234",
"transDocDate": "12/10/2017",
"quantity": 15
}
'
Response
Param | Type | Description | Example |
---|---|---|---|
ewbNo | num | E-way bill Generated | 131000026768 |
groupNo | num | Group Number | 1 |
vehAddedDate | num | Vehicle Added Date | 05/06/2018 02:08:00 PM |
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 1 month ago