e-Way Bill APIEnvironment:
API Reference
Overview
Authentication
Generate Eway Bill
Update PART-B/Vehicle Number
Generate Consolidated Ewaybill
Cancel E-Way bill
Reject EwayBill
Update Transporter
Extend Validity of E-Way Bill
Extend Validity of E-Way BillPOST
Regenerate Consolidated E-Way Bill - Api
Get EwayBill Details
Get EWay bill for transporter by Date
Get EwayBills For Transporter By State
Get EwayBills For Transporter By Gstin
Get EwayBill Report By Transporter assigned Date
Get Eway Bills By Date
Get Eway Bills Rejected By Others
Get Eway bills by parties
Get consolidated e-way bill
Get EwayBill by Consigner
Get Error List
Get GSTIN details
GET Transin details
GET HSN details
Initiate Multi Vehicle Movement
Add Multi Vehicles
Change Multi Vehicles
Closure e-Way Bill
e-Way Bill APIExtend Validity of E-Way BillExtend Validity of E-Way Bill

Extend Validity of E-Way Bill

POSThttps://apisandbox.whitebooks.in/ewaybillapi/v1.03/ewayapi/extendvalidity

Extend Validity of E-Way Bill

Parameters

query parameters
emailstringrequired
User Email
header parameters
ip_addressstringrequired
IP Address
client_idstringrequired
Client ID
client_secretstringrequired
Client Secret
gstinstringrequired
GSTIN number

Request Body

application/jsonrequired
ewbNonumberrequired
Ewaybill Number
Example: 381009282489
vehicleNostringoptional
Vehicle Number
Example: "ABC1234"
fromPlacestringrequired
From Place
Example: "FRAZER TOWN"
fromStateintegerrequired
From State
Example: 29
remainingDistancenumberrequired
Remaining Distance
Example: 50
transDocNostringoptional
Transport Document Number
Example: "12"
transDocDatestringoptional
Transport Document Date
Example: "11/12/2024"
transModestringoptional
Transport Mode
Example: "1"
extnRsnCodenumberrequired
Extension Reason Code
Example: 1
extnRemarksstringrequired
Extension Remarks
Example: "Nature Calamity"
fromPincodenumberrequired
From Pincode
Example: 560001
consignmentStatusstringoptional
consignmentStatus(T)
Example: "M"
transitTypestringoptional
transit Type
Example: ""
addressLine1stringoptional
addressLine1
Example: ""
addressLine2stringoptional
addressLine2
Example: ""
addressLine3stringoptional
addressLine3
Example: ""

Response

Not Found. If requested entity is not found or if requested API is not found.
POST/ewaybillapi/v1.03/ewayapi/extendvalidity
1const response = await fetch('https://apisandbox.whitebooks.in/ewaybillapi/v1.03/ewayapi/extendvalidity?email=value', {
2 method: 'POST',
3 headers: {
4 ip_address: "value",
5 client_id: "value",
6 client_secret: "value",
7 gstin: "value",
8 Content-Type: "application/json"
9},
10 body: JSON.stringify({
11 "ewbNo": 381009282489,
12 "vehicleNo": "ABC1234",
13 "fromPlace": "FRAZER TOWN",
14 "fromState": 29,
15 "remainingDistance": 50,
16 "transDocNo": "12",
17 "transDocDate": "11/12/2024",
18 "transMode": "1",
19 "extnRsnCode": 1,
20 "extnRemarks": "Nature Calamity",
21 "fromPincode": 560001,
22 "consignmentStatus": "M",
23 "transitType": "",
24 "addressLine1": "",
25 "addressLine2": "",
26 "addressLine3": ""
27}),
28});
29
30const data = await response.json();
31console.log(data);
No example available.