Get EWB By Transporter 3
This method provides the list of E-way bills assigned to requesting GSTIN/TRANSIN for transportation by a given GSTIN, based on generated date.
Request Method
GET
Request Path
{{API_URL}}/api/v1/getEwayBillData/Request Headers
Parameter
Value
Description
Authorization/api_key
api_key/auth token
Value and header type is mentioned in the Authentication Page
Request Params
Parameter
Value
Description
action
GetEwayBillsForTransporterByGstin
Action
gstin
XXXXXXXXXXXXXXX
Gstin
eway_bill_generator_gstin
XXXXXXXXXXXXXXX
Generator gstin of E-Way Bill
generated_date
25/06/2023
Generated Date
Response Body
200 (OK)
Sample Response
{
  "results": {
    "message": [
      {
        "eway_bill_number": 321009218808,
        "eway_bill_date": "15/09/2023 02:44:00 PM",
        "eway_bill_status": "Active",
        "gstin_of_generator": "XXXXXXXXXXXXXXX",
        "document_number": "IMP/23/035",
        "document_date": "22/06/2023",
        "pincode_of_delivery": 248001,
        "state_name_of_delivery": "UTTARAKHAND",
        "place_of_delivery": "Dehradun",
        "eway_bill_valid_date": "24/09/2023 11:59:00 PM",
        "extended_times": 0,
        "reject_status": "Y"
      }
    ],
    "status": "Success",
    "code": 200
  }
}204 (Invalid Parameters)
{
  "results": {
    "message": "336: Could not retrieve transporter data by gstin",
    "status": "No Content",
    "code": 204,
    "nic_code": "336"
  }
}Last updated