该接口支持根据二级地址城市查询商品配件信息
参数名称 | 必填 | 类型 | 长度 | 示例值 |
token | 是 | String | 100 | 授权接口获取的access token |
cityId | 是 | String | 50 | 二级地址市ID |
名称 | 类型 | 必填 | 备注 |
success | boolean | 是 | true|false,根据该字段判断接口是否调用成功,若为false,则解析error_response字段查看具体失败原因 |
result | Array | 是 | 数组对象,数据节点 |
└fittings | Array | 是 | 数组对象,数据节点 |
└└fitting_id | String | 是 | 配件编号 | └└genre | int | 是 | 品类:0 配件;1 服务 |
└└name | String | 是 | 配件名称 | └└price | number | 是 | 单价 |
错误码 | 错误描述 | 解决方案 |
ERR-000013 | Token 不能为空 | |
ERR-000014 | Token参数数据类型为字符串 | |
ERR-000015 | token_expired |
{ "token":"cb0bd9f8-ae67-4365-b14d-566ee96886a8", "cityId": "757" }
{ "success": true, "result": { "fittings": [ { "fitting_id": 111111, "genre": 0, "name": "支架 ", "price": 111.11 } ] } }