通过取消(退货)受理号码查看撤回的退货记录。
路径
POST
/v2/providers/openapi/apis/api/v4/vendors/{vendorId}/returnWithdrawList
示例
请求参数
Name |
|
Required |
Type |
Description |
vendorId |
O |
|
String |
卖家ID 酷澎分配给卖家的固有代码 e.g. A00012345 |
请求体参数
Name |
Required |
Type |
Description |
cancelIds |
O |
Array |
可查看撤回记录的取消(退货)受理号码列表 一次最多可查看50个cancel Id Cancel Id必须为数字 |
请求体示例
{
"cancelIds": [
87033689
]
}
返回消息
Name |
Type |
Description |
||||
code |
Number |
Http请求状态代码 Example: 200, 400, 500 |
||||
message |
String |
成功或失败时显示相应结果信息 |
||||
data |
Array |
|
||||
|
cancelId |
Number |
取消(退货)受理号码 |
|||
|
orderId |
Number |
订单号码 |
|||
|
vendorId |
String |
卖家代码 |
|||
|
refundDeliveryDuty |
String |
退货责任方 |
|||
|
COM |
卖家 |
|
|||
CUS |
顾客
|
|||||
COU |
Coupang
|
|||||
|
createdAt |
String |
撤回取消(退货)的时间 yyyy-MM-ddThh:mm:ss |
|||
|
vendorItemIds |
Array |
退货属性ID列表 |
返回消息示例
{
"code": "200",
"message": "OK",
"data": [
{
"cancelId": 87033689,
"orderId": 23000016565020,
"vendorId": "A00001234",
"refundDeliveryDuty": "COM",
"createdAt": "2018-06-05T13:40:56",
"vendorItemIds": [
3737624764
]
}
]
}
错误代码
HTTP status code (error type) |
Error message |
Solution |
500 (确认请求参数) |
CReturns getWithdrawnList failed |
查看输入的退货受理号码(cancellds)是否正确。该项未输入时会发生500error。 |
接口名称
GET_RETURNWITHDRAW_BY_CANCEL_IDS