Eway
Eway List
eway/list
POST /eway/list
Lists the eway bills stored against your organization, filtered by the time they were added to marketpe.
Request
{
"createdTimeFrom": "2025-11-12T10:00:00+05:30",
"createdTimeTo": "2025-11-13T10:00:00+05:30"
}"2025-11-12T10:00:00+05:30" represents 10AM india time.
You can also pass ISO format like "2025-11-12T10:00:00.000Z" but you need to adjust time as this represents 3.30PM india time.
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
createdTimeFrom | string | Yes | Start of the added-to-marketpe time range (inclusive). |
createdTimeTo | string | Yes | End of the added-to-marketpe time range (inclusive). |
The window between createdTimeFrom and createdTimeTo cannot exceed 30 days.
Response
{
"status": "success",
"data": [
{
"ewayBillNumber": "123456789012",
"ewayBillDate": "2025-11-12T10:00:00.000Z",
"vehicleNumber": "TS09AB1234",
"validUpto": "2025-11-14T18:29:59.000Z",
"fromPlace": "Hyderabad",
"toPlace": "Bengaluru",
"gstin": "36AAAAA0000A1Z5"
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
ewayBillNumber | string | 12 digit eway bill number. |
ewayBillDate | string | Date the eway bill was generated. |
vehicleNumber | string | null | Vehicle on the latest part-B entry. |
validUpto | string | null | Validity end of the eway bill. |
fromPlace | string | Dispatch place. Empty string when not available. |
toPlace | string | Delivery place. Empty string when not available. |
gstin | string | GSTIN under which the bill was fetched. |
Last updated on