Extend E-Way Bill Validity
Sandbox API to extend the validity of particular E-Way bill
Overview
This API takes in the GSTIN of the Requester(Taxpayer or Transporter) and extends the validity of E-Way Bill along with updated date
and validupto
.
Endpoint
HTTP Method | Resource |
---|---|
Post | /ewb/tax-payer/seller/bills/{ewb_no}/extend |
Request
Follow the below guidelines to pass the below 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 | num | E-way bill number for which an extension of validity is required | 131000026768 |
Body Parameters
Param | Type | Description | Examples |
---|---|---|---|
ewbNo | num | E-way bill number for which an extension of validity is required | 131000026768 |
vehicleNo | string | Vehicle No. 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 | string | Place of consignor | BANGLORE 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 |
remainingDistance | num | remainingDistance | 50 |
transDocNo | string | transDocNo | TrnDoc123 |
transDocDate | string | Transporter Document Date | 12/09/2017 |
extnRemarks | num | extnRemarks Possible value - 1 : Natural Calamity2 : Law and Order Situation4 : Transshipment5 : Accident99 : Others | 1 |
transMode | num | Mode of Transport Possible value - 1 : Road2 : Rail3 : Air4 : Ship5 : inTransit | 1 |
extnRsnCode | num | extnRsnCode | 1 |
fromPincode | num | fromPincode | 560090 |
consignmentStatus | string | consignmentStatus Possible value - M : inMovementT : inTransit | T |
transitType | string | transitType | R |
addressLine1 | string | addressLine1 | Bengaluru |
addressLine2 | string | addressLine2 | Bengaluru |
addressLine3 | string | addressLine3 | Bengaluru |
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/extend \
--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": 191002233843,
"vehicleNo": "PQR1234",
"fromPlace": "Bengaluru",
"remainingDistance": 50,
"transDocNo": "1234",
"transMode": "5",
"extnRsnCode": 1,
"extnRemarks": "Flood",
"fromPincode": 560090,
"consignmentStatus": "T",
"transitType": "R",
"addressLine1": "Bengaluru",
"addressLine2": "Bengaluru",
"addressLine3": "Bengaluru"
}
'
Response
Param | Type | Description | Examples |
---|---|---|---|
ewbNo | num | E-way bill Generated | 131000026768 |
updatedDate | num | Date on which validity is extended | 6/04/2018 05:07:00 PM |
validUpto | num | Updated Validity of E-way bill | 21/05/2018 23:59: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