Description
- Update waybill info interface
Request URL
/rest/sc_api/parcel/update_waybill
Request Method
Content-Type
Request Body
Name |
Data Type |
Mandatory |
Description |
order_no |
String |
Y |
order no which is generated by Sales Channel system. |
parcel_id |
String |
Y |
parcel id which is generatied by oms4. |
us_parcel_no |
String |
Y |
upstream system parcel no. |
delivery_carrier |
String |
Y |
delivery carrier |
delivery_type |
String |
Y |
delivery type |
tracking_no |
String |
Y |
tracking no |
waybill_doc |
String |
Y |
doc should be PDF. base64 string |
Request Example
{
"order_no": "order123",
"parcel_id": "parcel123",
"us_parcel_no": "US123",
"delivery_carrier": "J&T",
"delivery_type": "Express",
"tracking_no": "tracking123",
"waybill_doc": "waybillDoc123"
}
Success Response Example
{
"code": "200",
"message": "success",
"data":null,
"request_id": "2d48f902-7efa-4718-8b88-9686803a8a02"
}