Skip to main content
POST
/
gst
/
compliance
/
e-way-bill
/
consignor
/
bill
/
{ewb_no}
/
multi-vehicle
/
vehicle
Add Vehicle
curl --request POST \
  --url https://api.sandbox.co.in/gst/compliance/e-way-bill/consignor/bill/{ewb_no}/multi-vehicle/vehicle \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '{
  "ewbNo": 291010080003,
  "groupNo": "1",
  "quantity": 15,
  "transDocDate": "12/10/2017",
  "transDocNo": "1234",
  "vehicleNo": "PQR1234"
}'
{
"code": 200,
"data": {
"alert": null,
"data": {
"ewbNo": "291010080003",
"groupNo": "1",
"vehAddedDate": "13/05/2024 04:19:00 PM"
},
"status": "1"
},
"timestamp": 1763446641000,
"transaction_id": "b0eb7094-2825-4fae-8b1b-79771a41a65a"
}

Headers

Authorization
string
required

E-Way Bill access token

x-api-key
string
required

API key for identification

x-api-version
string
default:1.0.0

API version

Path Parameters

ewb_no
string
required
Example:

"161010501944"

Body

application/json
ewbNo
number
Example:

291010080003

groupNo
string
Example:

"1"

quantity
number
Example:

15

transDocDate
string
Example:

"12/10/2017"

transDocNo
string
Example:

"1234"

vehicleNo
string
Example:

"PQR1234"

Response

200 - application/json

200 Vehicle added / 301 Invalid EWB number / 400 Exceeded multi-vehicle movement initiation quantity

code
number
Example:

200

data
object
timestamp
number
Example:

1763446641000

transaction_id
string
Example:

"b0eb7094-2825-4fae-8b1b-79771a41a65a"