Description
- Update Parcel Activity API
Request URL
/rest/fp_api/fulfillment_task/update_parcel_activity
Request Method
Request Parameter (Request Body)
Name |
Data Type |
Mandatory |
Description |
ft_no |
String |
Y |
Fulfillment task no |
fp_parcel_no |
String |
Y |
parcel no which is generated by fulfillment point system. |
milestone |
String |
N |
parcel milestone.The available values contain:SHIPPING / DELIVERED / PENDING DELIVERY / RETURNED TO FP / LOST . |
description |
String |
Y |
description of parcel activity |
event_time |
Long |
Y |
timestamp |
Request Example
{
"ft_no": "FT00000001",
"fp_parcel_no": "fp_parcel00001",
"milestone":"SHIPPING",
"description":"transporter has picked up parcel from warehouse.",
"event_time":130000292291
}
Success Response Example
{
"code": "200",
"data":null,
"message": "success",
"request_id": "2d48f902-7efa-4718-8b88-9686803a8a02"
}