Get E-Way Bill by Consigner Details
Sandbox API that takes in doctype and docNo and provides the E-Way bill generated by Consigner
Overview
This API takes in GSTIN of Requester(Tax payer or Transporter), doctype and docNo and provides the E-Way bill generated by Consigner.
Endpoint
HTTP Method | Resource |
---|---|
Get | /ewb/tax-payer/consigner/bills?doc-type={doc-type}&doc-no={doc-no} |
This API treats the authenticate GSTIN user as the Generator GSTIN
Request
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...... |
Query Parameters
Param | Type | Description | Example |
---|---|---|---|
doc-type | string | Document Type Possible value - INV : Tax InvoiceBIL : Bill of SupplyBOE : Bill of EntryCHL : Delivery ChallanOTH : Others | Delivery Challan |
doc-no | string | Document No | 12876343-9 |
Once the values are added, Your curl will look something like this
curl --request GET \
--url 'https://api.sandbox.co.in/ewb/tax-payer/consigner/bills?doc-type=doc-type&doc-no=doc-no' \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'x-api-key: xxxxxxxxxx' \
--header 'x-api-version: 1.0'
Response
Param | Type | Description | Examples |
---|---|---|---|
ewbNo | num | E-way bill Generated | 131000026768 |
ewayBillDate | num | Refers to date when E-way bill is generated | 25/09/2018 10:30:00 AM |
validUpto | num | Refers to valid date of E-way Bill | 26/09/2018 12.00:00 PM |
alert | Refers to any kind of alert |
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