- 评论
- souring相关
- 站点->sourcing
- 购物车 -> 购物车
- 个人中心->订单管理
- 产品->详情
- 订单 -> 订单
- 站点->支付方式
- 产品搜索->列表
- 购物车 -> 结算
- 商品详情->激光定制
- 商品定制
- 多买多奖
评论详情
POST
/st-order/order-review/details
请求参数
Body 参数application/json
order_number
string
订单编码
service_score
number
服务得分
默认值:
0
shipment_score
number
物流得分
默认值:
0
cost_score
number
商品得分
默认值:
0
imageList
array[string]
可选
评论图片
video
string
评论视频
content
string
评论内容
tagIdList
array[integer]
评论标签ID列表
anonymous
integer
是否匿名
likeSkuList
array[string]
点赞sku列表
示例
{
"order_number": "string",
"service_score": 0,
"shipment_score": 0,
"cost_score": 0,
"imageList": [
"string"
],
"video": "string",
"content": "string",
"tagIdList": [
0
],
"anonymous": 0,
"likeSkuList": [
"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://www.nihaocloud.cn/st-order/order-review/details' \
--header 'Content-Type: application/json' \
--data-raw '{
"order_number": "string",
"service_score": 0,
"shipment_score": 0,
"cost_score": 0,
"imageList": [
"string"
],
"video": "string",
"content": "string",
"tagIdList": [
0
],
"anonymous": 0,
"likeSkuList": [
"string"
]
}'
返回响应
🟢200成功
application/json
Body
com.nihao.siteorderweb.model.vo.ReviewDetailVo
orderNumber
string
可选
totalQty
integer
可选
createdAt
string
可选
avg_score
number
平均得分
service_score
number
服务得分
shipment_score
number
物流得分
cost_score
number
商品得分
reply
object (ReplyVo)
可选
replyName
string
可选
replyAvatar
string
可选
content
string
可选
createdAt
string
可选
totalPaid
number
可选
currencySymbol
string
可选
content
string
可选
imgs
array[string]
可选
video
string
评论视频
tagList
array[object (TagVo) {2}]
可选
id
integer
可选
name
string
可选
示例
{
"orderNumber": "",
"totalQty": 0,
"createdAt": "",
"avg_score": 0.0,
"service_score": 0.0,
"shipment_score": 0.0,
"cost_score": 0.0,
"reply": {
"replyName": "",
"replyAvatar": "",
"content": "",
"createdAt": ""
},
"totalPaid": 0.0,
"currencySymbol": "",
"content": "",
"imgs": [
""
],
"video": "",
"tagList": [
{
"id": 0,
"name": ""
}
]
}
修改于 2025-04-18 03:48:57