Update Vehicle Details (Part B)
Sandbox API to update the Vehicle details(Part B) in E-Way Bill.
Overview
This API takes in the GSTIN of the Requester(Taxpayer or Transporter) and updates the Vehicle details(Part B) in E-Way Bill.
Endpoint
HTTP Method | Resource |
---|---|
Post | /ewb/tax-payer/seller/bills/{ewb_no}/update/vehicle |
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 billl number | 131000026768 |
Body Parameters
Param | Type | Description | Examples |
---|---|---|---|
ewbNo | num | E-way bill Generated | 131000026768 |
vehicleNo | string | Vehicle number | KA12TR1234 |
fromPlace | string | Place of Consignor | BANGALORE SOUTH |
fromState | num | State of Consignor 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 | 29 |
reasonCode | num | Reason code for vehicle updation Possible value - 1 : Due to Break Down2 : Due to Transshipment3 : Others (Pls. Specify)4 : First Time | 2 |
reasonRem | string | Reason for Vehicle Updation | Vehicle details updated |
transDocNo | string | Transporter Document number | 12-86/3 |
transDocDate | string | Transporter Document Date | 12/09/2017 |
transMode | num | Mode of Transport Possible value - 1 : Road2 : Rail3 : Air4 : Ship5 : inTransit | 1 |
vehicleType | char | Type of Vehicle Possible value - R : RegularO : ODC(Over Dimensional Cargo) | R |
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/131000026768/update/vehicle \
--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": 131002233704,
"vehicleNo": "PQR1234",
"fromPlace": "BANGALORE",
"fromState": 29,
"reasonCode": "1",
"reasonRem": "vehicle broke down",
"transDocNo ": "1234 ",
"transDocDate ": "12/10/2017 ",
"transMode": "1",
"vehicleType": "R"
}
'
Response
Param | Type | Description | Examples |
---|---|---|---|
VehUpdDate | num | Vehicle updated date | 15/12/2017 10:56:00 AM |
validUpto | num | Vehicle number valid upto | 17/09/2017 12.00: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