- 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/review/info
ReviewAPI
请求参数
Body 参数application/json
review_id
string
评价标识符。
示例
{
"review_id": "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/review/info' \
--header 'Content-Type: application/json' \
--data-raw '{
"review_id": "string"
}'
返回响应
🟢200成功
application/json
Body
comments_amount
integer <int32>
评价的回复数量。
dislikes_amount
integer <int32>
评价的踩数量。
id
string
评价标识符。
is_rating_participant
boolean
可选
true
:评论是由官方人员留下的;false
:评论是由买家留下的。likes_amount
integer <int32>
评价的点赞数量。
order_status
string
可选
DELIVERED
— 已送达,CANCELLED
— 已取消。photos
array[object (ReviewInfoResponsePhoto) {3}]
图片信息。
height
integer <int32>
高度。
url
string
图片链接。
width
integer <int32>
宽度。
photos_amount
integer <int32>
评价中的图片数量。
published_at
string <date-time>
评价的发布日期。
rating
integer <int32>
评价评分。
sku
integer <int64>
可选
status
string
可选
UNPROCESSED
— 未处理,PROCESSED
— 已处理。text
string
评价文字。
videos
array[object (ReviewInfoResponseVideo) {5}]
视频信息。
height
integer <int64>
高度。
preview_url
string
预览视频链接。
short_video_preview_url
string
短视频链接。
url
string
视频链接。
width
integer <int64>
宽度。
videos_amount
integer <int32>
评价中的视频数量。
示例
{
"comments_amount": 0,
"dislikes_amount": 0,
"id": "string",
"is_rating_participant": true,
"likes_amount": 0,
"order_status": "string",
"photos": [
{
"height": 0,
"url": "string",
"width": 0
}
],
"photos_amount": 0,
"published_at": "2019-08-24T14:15:22Z",
"rating": 0,
"sku": 0,
"status": "string",
"text": "string",
"videos": [
{
"height": 0,
"preview_url": "string",
"short_video_preview_url": "string",
"url": "string",
"width": 0
}
],
"videos_amount": 0
}
🔴500服务器错误
修改于 2025-06-10 08:30:31