Description
- Get Cancellation Task List API
Request URL
/rest/fp_api/cancellation_task/get
Request Method
Request Parameter (Request Parameter)
Name |
Data Type |
Mandatory |
Description |
created_from |
Long |
N |
The from time stamp of the cancellation task created time e.g. 1517820392000 |
created_to |
Long |
N |
The to time stamp of the cancellation task created time e.g. 1517820392000 |
updated_from |
Long |
N |
The from time stamp of the cancellation task updated time e.g. 1517820392000 |
updated_to |
Long |
N |
The to time stamp of the cancellation task updated time e.g. 1517820392000 |
status |
String |
N |
status of cancellation task. |
ft_no |
String |
N |
task no of fulfillment task. |
offset |
Int |
N |
Number of cancellation tasks to skip at the beginning of the list. Default 0. |
limit |
Int |
N |
The maximum number of cancellation tasks that can be returned. The supported maximum number is 50. |
Cancellation Task Standard Response Properties Definition
Name |
Data Type |
Description |
ct_no |
String |
Cancellation Task No (Unique) |
ft_no |
String |
Fulfillment Task No (Unique) |
order_no |
String |
Order No |
created_time |
Long |
Created Date Time |
updated_time |
Long |
Updated Date Time |
status |
String |
Status |
task_details |
Object[] |
Task Details |
├──ft_detail_id |
Long |
Fulfillment Task Detail Id |
├──seller_sku_code |
String |
Seller SKU Code |
├──brand_code |
String |
Brand Code |
├──brand_sku_code |
String |
Brand SKU Code |
├──sku_name |
String |
SKU Name |
Success Response Example
{
"code": "200",
"data":
{
"total_count": 500,
"cursor":1,
"ct_list":[
{
"ct_no": "CT123456",
"ft_no": "FT123456",
"order_no": "Order123456",
"created_time": 1727338566755,
"updated_time": 1727338566755,
"status": "CREATE",
"task_details": [{
"ft_detail_id": 123456,
"seller_sku_code": "SellerSku123456",
"brand_code": "Brand123456",
"brand_sku_code": "BrandSku123456",
"sku_name": "SkuName123456"
}]
}
]
},
"message": "success",
"request_id": "2d48f902-7efa-4718-8b88-9686803a8a02"
}