Update Transporter Details
Sandbox API which takes in the E-Way bill number and transporter id to update the transporter details.
Overview
This API takes in the gstin of the Requester(Taxpayer or Transporter) and updates the details of the transporter.
Endpoint
HTTP Method | Resource |
---|---|
Post | /ewb/tax-payer/seller/bills/{ewb_no}/update/transporter |
Request
Follow the below guidelines to pass GSTIN in path parameters to call the API.
Headers
Param | Type | Description | Example |
---|---|---|---|
x-api-key | string | An API key is a public key to identify users when calling any Sandbox API. | key_live_ZUQT5UEf4...... |
Authorization | string | JWT Authorization token which is generated using E-Way Bill Authentication API. | eyJhsebihGyUf...... |
Path Parameters
Param | Type | Description | Example |
---|---|---|---|
ewb_no | string | E-Way billl number | 131000026768 |
Body Parameters
Param | Type | Description | Examples |
---|---|---|---|
ewbNo | string | E-way bill Generated | 131000026768 |
transporterId | num | Transporter Id | 29BQSPA3829E1Z0 |
Once the values are added, Your curl will look something like this
curl --request POST \
--url https://api.sandbox.co.in/ewb/tax-payer/seller/bills/131000026768/update/transporter \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'x-api-key: xxxxxxxxxx' \
--header 'x-api-version: 1.0' \
--data '
{
"Raw Body": {
"ewbNo": "131002233704",
"transporterId": "29AAACW6874H1ZS"
}
}
'
Response
Param | Type | Description | Examples |
---|---|---|---|
ewbNo | string | E-way bill Generated | 131000026768 |
transporterId | num | Transporter Id | 29BQSPA3829E1Z0 |
transUpdateDate | num | Transporter Updated Date | 26/04/2018 04:32:27 PM |
Response Caching
Response caching is not available for this API. Learn more about our response caching mechanism here
Wallet Charges
Since Generate E-Way Bill is a Paid API, a wallet charge of INR 0.25 + GST will take place.
Versioning
This API is currently in major version 1.0. Refer to our versioning policies here
Updated about 1 month ago