- CategoryAPI
- ProductAPI
- Prices&StocksAPI
- Promos
- PricingStrategyAPI
- WarehouseAPI
- PolygonAPI
- FBS&rFBSMarks
- FBS
- ReturnsAPI
- CancellationAPI
- ChatAPI
- ReportAPI
- AnalyticsAPI
- FinanceAPI
- DeliveryFBS
- DeliveryrFBS
- Pass
- RFBSReturnsAPI
- BetaMethod
- Examples
- ReviewAPI
获取 rFBS 取消申请列表
POST
/v2/conditional-cancellation/list
CancellationAPI
请求参数
Body 参数application/json
filters
object (GetConditionalCancellationListV2RequestFilters)
过滤器。
cancellation_initiator
array[string]
可选
SELLER
— 卖家,CLIENT
— 买家,OZON
— Ozon,SYSTEM
— 系统,DELIVERY
— 配送服务。枚举值:
OZONSELLERCLIENTSYSTEMDELIVERY
posting_number
array[string]
按货件编号筛选。
state
enum<string>
可选
ALL
— 所有状态的申请,ON_APPROVAL
— 审核中申请,APPROVED
— 已确认申请,REJECTED
— 已拒绝申请。枚举值:
ALLON_APPROVALAPPROVEDREJECTED
默认值:
ALL
last_id
integer <int64>
可选
last_id
。limit
integer <int32>
必需
<= 500
with
object (GetConditionalCancellationListV2RequestWith)
附加信息。
counter
boolean
可选
ON_APPROVAL
状态的申请数量的标志。示例
{
"filters": {
"cancellation_initiator": [
"CLIENT"
],
"posting_number": [
"34009011-0094-1"
],
"state": "ALL"
},
"limit": 500,
"last_id": 0,
"with": {
"counter": true
}
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-seller.ozon.ru/v2/conditional-cancellation/list' \
--header 'Content-Type: application/json' \
--data-raw '{
"filters": {
"cancellation_initiator": [
"CLIENT"
],
"posting_number": [
"34009011-0094-1"
],
"state": "ALL"
},
"limit": 500,
"last_id": 0,
"with": {
"counter": true
}
}'
返回响应
🟢200成功
application/json
Body
counter
integer <int64>
可选
ON_APPROVAL
状态申请的计数器。last_id
integer <int64>
可选
last_id
。result
array[object (GetConditionalCancellationListV2ResponseResult) {13}]
可选
approve_comment
string
可选
approve_date
string <date-time>
可选
auto_approve_date
string <date-time>
可选
cancellation_id
integer <int64>
取消申请标识符。
cancellation_initiator
enum<string>
可选
SELLER
— 卖家,CLIENT
— 买家,OZON
— Ozon,SYSTEM
— 系统,DELIVERY
— 配送服务。枚举值:
OZONSELLERCLIENTSYSTEMDELIVERY
cancellation_reason
object (GetConditionalCancellationListV2ResponseCancellationReason)
取消原因。
cancellation_reason_message
string
可选
cancelled_at
string <date-time>
可选
order_date
string <date-time>
订单的创建日期。
posting_number
string
货件编号。
source_id
integer <int64>
可选
state
object (GetConditionalCancellationListV2ResponseState)
取消申请的状态。
tpl_integration_type
string
可选
示例
{
"result": [
{
"approve_comment": "string",
"approve_date": "2024-11-27T12:31:43.621Z",
"auto_approve_date": "2024-11-27T12:31:43.621Z",
"cancellation_id": 0,
"cancellation_initiator": "OZON",
"cancellation_reason": {
"id": 0,
"name": "string"
},
"cancellation_reason_message": "string",
"cancelled_at": "2024-11-27T12:31:43.621Z",
"order_date": "2024-11-27T12:31:43.621Z",
"posting_number": "string",
"state": {
"id": 0,
"name": "string",
"state": "ALL"
},
"tpl_integration_type": "string"
}
],
"counter": "1",
"last_id": 283784254
}
🔴500服务器错误
修改于 2025-06-10 08:30:31