- CategoryAPI
- ProductAPI
- Prices&StocksAPI
- Promos
- PricingStrategyAPI
- WarehouseAPI
- PolygonAPI
- FBS&rFBSMarks
- FBS
- ReturnsAPI
- CancellationAPI
- ChatAPI
- ReportAPI
- AnalyticsAPI
- FinanceAPI
- DeliveryFBS
- DeliveryrFBS
- Pass
- RFBSReturnsAPI
- BetaMethod
- Examples
- ReviewAPI
通行证列表
POST
/v1/pass/list
Pass
请求参数
Header 参数
Client-Id
string
用户识别号。
Api-Key
string
API-密钥。
Body 参数application/json
cursor
string
可选
filter
object (object)
筛选器。
arrival_pass_ids
array[string <int64>]
按通行证ID筛选。
arrival_reason
string
可选
FBS_DELIVERY
— 发运。FBS_RETURN
— 运出退货。dropoff_point_ids
array[string <int64>]
按发运点筛选。
only_active_passes
boolean
可选
true
, 以获取仅活跃的通行证申请。warehouse_ids
array[string <int64>]
可选
limit
integer <int32>
必需
示例
{
"cursor": "string",
"filter": {
"arrival_pass_ids": [
"string"
],
"arrival_reason": "string",
"dropoff_point_ids": [
"string"
],
"only_active_passes": true,
"warehouse_ids": [
"string"
]
},
"limit": 0
}
示例代码
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/v1/pass/list' \
--header 'Client-Id;' \
--header 'Api-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"cursor": "string",
"filter": {
"arrival_pass_ids": [
"string"
],
"arrival_reason": "string",
"dropoff_point_ids": [
"string"
],
"only_active_passes": true,
"warehouse_ids": [
"string"
]
},
"limit": 0
}'
返回响应
🟢200成功
application/json
Body
arrival_passes
array[object (object) {10}]
运输通行证列表。
arrival_pass_id
integer <int64>
通行证ID。
arrival_reasons
array[string]
入场目的。
arrival_time
string <date-time>
可选
driver_name
string
司机的姓名。
driver_phone
string
司机的电话号码。
dropoff_point_id
integer <int64>
发运点ID。
is_active
boolean
可选
true
。vehicle_license_plate
string
车辆牌照号码。
vehicle_model
string
车辆型号。
warehouse_id
integer <int64>
卖家仓库ID。
cursor
string
可选
如果此参数为空,则没有更多数据。
示例
{
"arrival_passes": [
{
"arrival_pass_id": 0,
"arrival_reasons": [
"string"
],
"arrival_time": "2019-08-24T14:15:22Z",
"driver_name": "string",
"driver_phone": "string",
"dropoff_point_id": 0,
"is_active": true,
"vehicle_license_plate": "string",
"vehicle_model": "string",
"warehouse_id": 0
}
],
"cursor": "string"
}
🔴500服务器错误
修改于 2025-06-10 08:30:31