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
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 assigned to you (requesting GSTIN) for a Particular DateGET
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 APIGet Eway Bills By DateGet eway bills assigned to you (requesting GSTIN) for a Particular Date

Get eway bills assigned to you (requesting GSTIN) for a Particular Date

GEThttps://apisandbox.whitebooks.in/ewaybillapi/v1.03/ewayapi/getewaybillsbydate

Get eway bills assigned to you (requesting GSTIN) for a Particular Date

Parameters

query parameters
emailstringrequired
User Email
datestringrequired
E-way bill generated Date(dd/MM/YYYY)
header parameters
ip_addressstringrequired
IP Address
client_idstringrequired
Client ID
client_secretstringrequired
Client Secret
gstinstringrequired
GSTIN number

Response

Not Found. If requested entity is not found or if requested API is not found.
GET/ewaybillapi/v1.03/ewayapi/getewaybillsbydate
1const response = await fetch('https://apisandbox.whitebooks.in/ewaybillapi/v1.03/ewayapi/getewaybillsbydate?email=value&date=value', {
2 method: 'GET',
3 headers: {
4 ip_address: "value",
5 client_id: "value",
6 client_secret: "value",
7 gstin: "value"
8},
9});
10
11const data = await response.json();
12console.log(data);
No example available.