- 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/description-category/attribute/values/search
CategoryAPI
value
返回属性的参考值。请求参数
Header 参数
Client-Id
string
用户识别号。
Api-Key
string
API-密钥。
Body 参数application/json
attribute_id
integer <int64>
必需
description_category_id
integer <int64>
必需
limit
integer <int64>
必需
type_id
integer <int64>
必需
value
string
必需
示例
{
"attribute_id": 0,
"description_category_id": 0,
"limit": 0,
"type_id": 0,
"value": "string"
}
示例代码
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/description-category/attribute/values/search' \
--header 'Client-Id;' \
--header 'Api-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"attribute_id": 0,
"description_category_id": 0,
"limit": 0,
"type_id": 0,
"value": "string"
}'
返回响应
🟢200成功
application/json
Body
result
array[object (object) {4}]
属性值。
id
integer <int64>
属性值的标识符。
info
string
额外信息。
picture
string
图片链接。
value
string
可选
示例
{
"result": [
{
"id": 0,
"info": "string",
"picture": "string",
"value": "string"
}
]
}
🔴500服务器错误
修改于 2025-06-10 08:30:31