EWAY
  • Introduction
  • Environments
  • Authentication
    • Access Tokens
    • API KEY
  • Generate E-Way Bill
  • Cancel E-Way Bill
  • Update Part-B
  • Extend Validity of E-Way Bill
  • Update Transporter
  • Reject E-Way Bill
  • Generate Consolidate E-Way Bill
  • Regenerate Consolidate E-Way Bill
  • Initiate Multi Vehicle
  • Add Multi Vehicles
  • Change Multi Vehicles
  • Return Status (Blocked and Unblocked)
  • Generate E-Way Bill In Bulk
  • Get E-Way Bill in Bulk
  • Generate E-Way Request in Bulk
  • Get E-Way Response in Bulk
  • Get E Way Bill Details
  • Get Other Party EWB
  • Get Consolidated EWB
  • Get GSTIN Details
  • Get Transporter Details
  • GET HSN Details
  • Get EWB By Consignor
  • Get EWB By Date
  • Get EwayBills Rejected By Others
  • Get EWB By Transporter 1
  • Get EWB By Transporter 2
  • Get EWB By Transporter 3
  • Get EWB By Transporter 4
Powered by GitBook
On this page
  • Request Method
  • Request Path
  • Request Headers
  • Request Body
  • Response Body

Return Status (Blocked and Unblocked)

Blocked and Unblocked API

PreviousChange Multi VehiclesNextGenerate E-Way Bill In Bulk

Last updated 1 year ago

Request Method

POST

Request Path

{{API_URL}}/api/v1/returnStatus/

Request Headers

Parameter
Value
Description

Authorization/api_key

api_key/auth token

Value and header type is mentioned in the Authentication Page

Request Body

The request body description for the API can be found .

Sample Request

{
    "user_gstin": "XXXXXXXXXXXXXXX",
    "GSTIN_Status":"N",
    "gstin_list": [
        {
            "gstin": "XXXXXXXXXXXXXXX"
        },
        {
            "gstin": "XXXXXXXXXXXXXXX"
        }
    ]
}

Response Body

200 (OK)

Sample Response

{
  "results": {
    "message": {
      "XXXXXXXXXXXXXXX": "Unblocked",
      "XXXXXXXXXXXXXXX": "Unblocked"
    },
    "status": "Success",
    "code": 200
  }
}

204 (Invalid Parameters)

{
  "results": {
    "message": {
      "XXXXXXXXXXXXXXX": "Incorrect user id/User does not exists",
      "XXXXXXXXXXXXXXX": "Incorrect user id/User does not exists"
    },
    "status": "Fail",
    "code": 204
  }
}

The response description for success can be found .

here
here