Update Transporter

Update Transporter Id API

Request Method

POST

Request Path

{{API_URL}}/api/v1/transporterIdUpdate/

Request Headers

Request Body

The request body description for the API can be found here.

Sample Request

{
    "userGstin": "XXXXXXXXXXXXXXX",
    "eway_bill_number": 321009218808,
    "transporter_id": "XXXXXXXXXXXXXXX",
    "transporter_name": "MS Uttarayan"
}

Response Body

200 (OK)

The response description for success can be found here.

Sample Response

{
  "results": {
    "message": {
      "ewayBillNo": "321009218808",
      "transporterId": "XXXXXXXXXXXXXXX",
      "transUpdateDate": "15/09/2023 03:05:00 PM",
      "error": false
    },
    "status": "Success",
    "code": 200
  }
}

204 (Invalid Parameters)

{
  "results": {
    "message": "222: Invalid Transporter Id",
    "status": "No Content",
    "code": 204,
    "nic_code": "222"
  }
}

Last updated