Description
- Update Parcel Status Interface
Request URL
/rest/sc_api/parcel/update_status
Request Method
Content-Type
Request Parameter (Request Body)
Name |
Data Type |
Mandatory |
Description |
order_no |
String |
Y |
order no which is generated by sales channel system. |
us_parcel_no |
String |
Y |
parcel no which is generatied by sales channel system. |
parcel_id |
String |
Y |
parcel id which is generatied by oms4. |
status |
String |
Y |
available value: SHIPPING/DELIVERED/PENDING DELIVERY/RETURNED TO FP/LOST |
event_time |
Long |
Y |
parcel update time |
Request Example
{
"order_no":"ON001",
"us_parcel_no":"USP001",
"parcel_id":"PID001",
"status":"DELIVERED",
"event_time":"1727345777022"
}
Success Response Example
{
"code": "200",
"message": "success",
"data":null,
"request_id": "2d48f902-7efa-4718-8b88-9686803a8a02"
}