Get Other Party E-way Bill#
This API provides the list of E-way bills generated by other parties on your GSTIN. This can be used for rejecting the e-way bill, if required. Note that the headers date and month support both 1 character and 2 characters i.e. both ¼/2020 and 01/04/2020 are valid formats in the URL. However, year needs to be 4 characters.
API Route#
Route
/basic/eway/{flynn-version}/{ewb_provider}/{ewb-api-version}/ewayapi/GetEwayBillsofOtherParty?date={Date}
- active ‘flynn-version’: v3.0
- method: GET
URL Parameters#
| Name | Description | Type | 
|---|---|---|
| flynn-version | version of the API for example, v3.0 | string | 
| ewb-api-version | E-invoice API version for example, v1.03 | string | 
| ewb_provider | Eway bill provider for example, ew1 | enum(ew1, ew2) | 
QUERY Parameters#
| Name | Description | Type | 
|---|---|---|
| date | date (format DD/MM/YYYY, like 31/12/2020) | string | 
Headers#
All headers are mentioned in common EWB headers
Response#
200:#
Sample Response Body
{
    "status": "1",
    "data": [
        {
            "ewbNo": 161001811977,
            "ewayBillDate": "20/06/2021 07:35:00 AM",
            "genMode": "API",
            "genGstin": "29AAACW4202F1ZM",
            "docNo": "ARGST20/20010381",
            "docDate": "20/06/2021",
            "fromGstin": "29AAACW4202F1ZM",
            "fromTradeName": "E-Invoice",
            "toGstin": "29AEKPV7203E1Z9",
            "toTradeName": "EInvoice_ShipTo",
            "totInvValue": 1180.00,
            "hsnCode": 28,
            "hsnDesc": "CMC",
            "status": "ACT",
            "rejectStatus": false
        },
        {
            "ewbNo": 131001811978,
            "ewayBillDate": "20/06/2021 12:07:00 PM",
            "genMode": "API",
            "genGstin": "29AAACW4202F1ZM",
            "docNo": "ARGST20/20010382",
            "docDate": "20/06/2021",
            "fromGstin": "29AAACW4202F1ZM",
            "fromTradeName": "E-Invoice",
            "toGstin": "29AEKPV7203E1Z9",
            "toTradeName": "EInvoice_ShipTo",
            "totInvValue": 1180.00,
            "hsnCode": 28,
            "hsnDesc": "CMC",
            "status": "ACT",
            "rejectStatus": false
        }
    ],
    "error": null,
    "info": null,
    "additionalInfo": null,
    "alert": null
}
E-way Bill errors are mentioned under Common Errors for v3.0 API
Notes#
Below URL is deprecated now. Instead of it please use New URL.
/basic/ewb/{flynn-version}/{ewb-api-version}/ewayapi/GetEwayBillsofOtherParty?date={Date}