(Deprecated) Getting Consolidated E-Waybill

This API is deprecated. Please use the E-Waybill APIs from the unified set available here.

Get all Consolidated E-Waybill

You can get all Consolidated E-Waybills generated by submitting a GET request to the E-Waybill API with the following request headers.

URL query string:

{{HOST}}/v0.1/taxable_entities/{{TAXABLE_ENTITY_ID}}/consolidated_ewb

Request Parameters:

Parameters

Parameter Type

Type

Description

X-Cleartax-Auth-Token

Header

String

Mandatory. The auth token generated from ClearTax user id and password.

taxable_entity_id

Path

String

Required. This is the unique ID associated with the GSTIN in your account.

cewb_number

Query

String

Consolidated E-waybill number

cewb_start_date

Query

String

Consolidated E-waybill start date

cewb_end_date

Query

String

Consolidated E-waybill end date

from_place

Query

String

From place

Sample Request:

https://ewbbackend-preprodpub-http.internal.cleartax.co/gst/v0.1/taxable_entities/269ea15f-5e27-4203-bb11-3bb911fc5724/consolidated_ewb

Sample Response:

200
[
    {
        "id": "1110003484",
        "cewb_number": "1110003484", // Consolidated EWB Number
        "cewb_date": "26-09-2018 13:06:00",
        "from_place": "Karnataka",
        "from_state": "ASSAM",
        "vehicle_number": "KA19ED2843",
        "transport_mode": "ROAD",
        "transport_doc_number": null,
        "transport_doc_date": "26-09-2018 00:00:00",
        "number_of_ewbs": 5,
        "status": "ACTIVE",
        "regenerate_reason": null,
        "regenerate_remarks": null
    }
]

Last updated