Initiate Multi Vehicle

Initiate Multi Vehicle API

Request Method

POST

Request Path

{{API_URL}}/api/v1/multiVehicleMovement/

Request Headers

ParameterValueDescription

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 here.

Sample Request

{
    "userGstin": "XXXXXXXXXXXXXXX",
    "eway_bill_number": 321009218808,
    "reason_code_for_vehicle_updation": "due to break down",
    "reason_for_vehicle_updation": "",
    "place_of_consignor": "Dehradun",
    "state_of_consignor": "UTTARAKHAND",
    "place_of_consignee": "Beml Nagar",
    "state_of_consignee": "KARNATAKA",
    "mode_of_transport": 1,
    "total_quantity": 60,
    "unit_code": "NOS",
    "data_source": "erp"
}

Response Body

200 (OK)

The response description for success can be found here.

Sample Response

{
  "results": {
    "message": {
      "ewbNo": "321009218808",
      "groupNo": "1",
      "createdDate": "15/09/2023 03:48:00 PM",
      "error": false
    },
    "status": "Success",
    "code": 200
  }
}

204 (Invalid Parameters)

{
  "results": {
    "message": "220: Invalid Trans mode",
    "status": "No Content",
    "code": 204,
    "nic_code": "220"
  }
}

Last updated