- 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
CategoryAPI
请求参数
Header 参数
Client-Id
string
用户识别号。
Api-Key
string
API-密钥。
Body 参数application/json
attribute_id
integer <int64>
必需
description_category_id
integer <int64>
必需
language
enum<string>
可选
EN
— 英语,RU
— 俄语,TR
— 土耳其语,ZH_HANS
— 中文。枚举值:
DEFAULTRUENTRZH_HANS
默认值:
DEFAULT
last_value_id
integer <int64>
可选
last_value_id
为 10,则响应将包含从第十一个开始的指南。limit
integer <int64>
必需
type_id
integer <int64>
必需
示例
{
"attribute_id": 0,
"description_category_id": 0,
"language": "DEFAULT",
"last_value_id": 0,
"limit": 0,
"type_id": 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/description-category/attribute/values' \
--header 'Client-Id;' \
--header 'Api-Key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"attribute_id": 0,
"description_category_id": 0,
"language": "DEFAULT",
"last_value_id": 0,
"limit": 0,
"type_id": 0
}'
返回响应
🟢200成功
application/json
Body
has_next
boolean
可选
true
—— 请用新参数 last_value_id
再次请求以获取其它值;false
—— 响应包含了所有特性值。result
array[object (object) {4}]
特性值。
id
integer <int64>
特性值ID。
info
string
附加描述。
picture
string
图片链接。
value
string
商品特性值。
示例
{
"has_next": true,
"result": [
{
"id": 0,
"info": "string",
"picture": "string",
"value": "string"
}
]
}
🔴500服务器错误
修改于 2025-06-10 08:30:17