EInvoicing
  • Introduction
  • Environments
  • Authentication
    • Access Tokens
    • API KEY
  • Generate IRN
  • Cancel IRN
  • Generate E-Way Bill by IRN
  • Generate IRN in Bulk
  • Get IRN Details In Bulk
  • Get IRN Details By IRN
  • Get IRN Details By Doc Details
  • Get e-Waybill Details by IRN
  • Get Gstin Details
  • Sync GSTIN Details from CP
Powered by GitBook
On this page
  • Request Method
  • Request Path
  • Request Headers
  • Request Params
  • Response Body

Get e-Waybill Details by IRN

This method provides the e-Waybill Details for a given IRN.

Request Method

GET

Request Path

{{API_URL}}/api/v1/get-ewb-byirn/

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

user_gstin

XXXXXXXXXXXXXXX

GSTIN of the authenticated user

irn

dd609070d4f3f66f1585fc13abd52e8f47d4102c8389bb9f7411afe52a9e778a

SHA256 hash of Gstin, DocDtls.No, DocDtls.Typ, financial year of DoctDtls.Dt

Response Body

200 (OK)

Sample Response

{
  "results": {
    "message": {
      "EwbNo": 401008880911,
      "Status": "ACT",
      "GenGstin": "XXXXXXXXXXXXXXX",
      "EwbDt": "2023-09-14 13:36:00",
      "EwbValidTill": "2023-09-16 23:59:00",
      "Alert": ""
    },
    "errorMessage": "",
    "InfoDtls": "",
    "status": "Success",
    "code": 200
  }
}

204 (Invalid Parameters)

{
  "results": {
    "message": "",
    "errorMessage": "4005: Eway Bill details are not found",
    "InfoDtls": "",
    "status": "Failed",
    "code": 204
  }
}
PreviousGet IRN Details By Doc DetailsNextGet Gstin Details

Last updated 1 year ago