Description
- Update Parcel Packing Finished API
Request URL
/rest/fp_api/fulfillment_task/set_parcel_packed
Request Method
Request Parameter (Request Body)
Name |
Data Type |
Mandatory |
Description |
ft_no |
String |
Y |
Fulfillment Task No (Unique) |
order_no |
String |
N |
Order No |
sales_channel |
String |
N |
Sales Channel Name |
parcels |
Object[] |
Y |
Packed parcels Details |
├──fp_parcel_no |
String |
Y |
FP's parcel no |
├──parcel_packed_time |
Long |
Y |
Parcel packed time |
├──weight |
Number |
N |
Value in kg - The actual parcel weight. |
├──length |
Number |
N |
Value in cm |
├──height |
Number |
N |
Value in cm |
├──width |
Number |
N |
Value in cm |
├──actual_delivery_partner |
String |
N |
Actual Delivery Partner. Required if it's self-managed transporter. |
├──actual_delivery_type |
String |
N |
Available value: Standard/Economic/Premium. Required if it's self-managed transporter. |
├──tracking_no |
String |
N |
The tracking No. of the delivery partner. Leave it blank if it the upstream system who provides the tracking No. |
├──source_location |
String |
N |
parcel pickup address (warehouse) details |
├──dest_location |
String |
N |
delivery address details. |
├──actual_delivery_cost |
Number |
N |
Actual Delivery Cost |
├──delivery_carrier_id |
String |
N |
showdoc api 'Get Fulfillment Tasks By FT NOs' response avail_delivery_carrier.value |
├──parcel_items |
Object[] |
Y |
parcels items |
├────ft_detail_id |
String |
Y |
Fulfillment task detail ID. |
├────seller_sku_code |
String |
N |
seller sku code |
├────brand_code |
String |
Y |
brand code |
├────brand_sku_code |
String |
Y |
brand sku code |
Request Example
{
"parcels": [{
"weight": 1.5,
"length": 30.0,
"height": 20.0,
"width": 10.0,
"fp_parcel_no": "FP123456",
"parcel_packed_time": 1727342255859,
"actual_delivery_carrier": "J&T",
"actual_delivery_type": "Standard",
"tracking_no": "TN123456",
"source_location": "Warehouse123456",
"dest_location": "Destination123456",
"actual_delivery_cost": 10.0,
"delivery_carrier_id": 111,
"parcel_items": [{
"ft_detail_id": "FTD123456",
"seller_sku_code": "SSC123456",
"brand_code": "BC123456",
"brand_sku_code": "BSC123456"
}
]
}
],
"ft_no": "FT123456",
"order_no": "Order123456",
"sales_channel": "Online"
}
Success Response Example
{
"code": "200",
"data":null,
"message": "success",
"request_id": "2d48f902-7efa-4718-8b88-9686803a8a02"
}