- 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/posting/fbs/split
BetaMethod
请求参数
Body 参数application/json
posting_number
string
货件编号。
postings
array[object (v1PostingFbsSplitRequestPosting) {1}]
必需
products
array[object (PostingFbsSplit) {2}]
订单中的商品列表。
示例
{
"posting_number": "string",
"postings": [
{
"products": [
{
"product_id": 0,
"quantity": 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/posting/fbs/split' \
--header 'Content-Type: application/json' \
--data-raw '{
"posting_number": "string",
"postings": [
{
"products": [
{
"product_id": 0,
"quantity": 0
}
]
}
]
}'
返回响应
🟢200成功
application/json
Body
parent_posting
object (v1PostingFbsSplitResponsePostingParent)
原始货件的信息。
posting_number
string
原始货件编号。
products
array[object (PostingFbsSplit) {2}]
货件中的商品列表。
postings
array[object (v1PostingFbsSplitResponsePosting) {2}]
可选
posting_number
string
货件编号。
products
array[object (PostingFbsSplit) {2}]
货件中的商品列表。
示例
{
"parent_posting": {
"posting_number": "string",
"products": [
{
"product_id": 0,
"quantity": 0
}
]
},
"postings": [
{
"posting_number": "string",
"products": [
{
"product_id": 0,
"quantity": 0
}
]
}
]
}
🔴500服务器错误
修改于 2025-06-10 08:30:31