查询所有商品编码
接口描述 查询所有商品编码
API
/api/open/product/getSkuCodes
- 参数格式
POST application/x-www-form-urlencoded
- 入参
参数名称 | 类型 | 是否必填 | 描述 |
---|---|---|---|
token | string | yes | 授权时获取的 access token |
current | Integer | yes | 当前页 |
size | Integer | yes | 每页大小 |
- 出参
参数名称 | 类型 | 描述 |
---|---|---|
skuCode | String | sku编码 |
- 入参示例
{
"token": "your_access_token",
"current": 1,
"size": 10
}
- 出参示例
{
"success": true,
"code": 200,
"message": "操作成功",
"data": {
"records": [
"fake_sku_code_1"
],
"total": 1101201,
"current": 1,
"size": 1
},
"stackTrace": null
}