On this page
排序商品规格选项
接口URL
请求方式
POST
Content-Type
json
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
token | 2f...5e | Text | 是 | 用户token |
请求Body参数
json5
{
"sortdata": [
{
"id": "136",
"order": 1
},
// ...
]
}
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
sortdata | [{ id:1,order:1 },{ id:2,order:2 }] | Array | 是 | 排序后的数据 |
成功响应示例
json5
{
"msg": "ok",
"data": [
{
"id": "136",
"order": 1
},
// ...
]
}