Description
- Get Shipping Information by FT No/ FT Parcel No API
Request URL
/rest/fp_api/fulfillment_task/get_shipping_info
Request Method
Request Parameter (Request Parameter)
Name |
Data Type |
Mandatory |
Description |
ft_no |
String[] |
Y |
Comma-separated list of Fulfillment task no in square brackets. Max List Size: 5. |
fp_parcel_no |
String |
N |
Parcel No which is generated by FP system. |
Fulfillment Task Shipping Info Properties Definition (Object[])
Name |
Data Type |
Description |
ft_no |
String |
Description of ft no |
parcels |
Object[] |
Description of parcels |
├── parcel_id |
Integer |
Unique identifier for parcel id |
├── fp_parcel_no |
String |
Description of fp parcel no |
├── delivery_carrier |
String |
Description of delivery carrier |
├── delivery_type |
String |
Description of delivery type |
├── tracking_no |
String |
Description of tracking no |
├── shipping_label |
String |
Description of shipping label |
Success Response Example
{
"code": "200",
"data":[
{
"ft_no": "FT-0001",
"parcels":[
{
"parcel_id": 100002,
"fp_parcel_no": "PACK00001",
"delivery_carrier":"J&T Express",
"delivery_type":"Standard",
"tracking_no":"TRACK0001",
"shipping_label":"base64 string"
}
]
}],
"message": "success",
"request_id": "2d48f902-7efa-4718-8b88-9686803a8a02"
}