获取玩乐产品价格及库存
说明:
获取玩乐产品价格和库存信息
请求方式:POST(HTTPS)
请求地址:https://btbapi.sctt.net/v1/availability
请求包体:
{ "merchant_id":287729, "request_time":"2023-02-11 11:48:00", "sign":"D19A61DBE64BA6CFB547855F216E0201", "product_id":6230222870, "start_date":"2023-03-17", "end_date":"2023-03-20" }
参数说明:
参数 | 必须 | 类型 | 说明 |
---|---|---|---|
merchant_id | 是 | bigint | 商户编号 |
request_time | 是 | string | 用户请求的当前时间,格式:“yyyy-MM-dd HH:mm:ss” |
sign | 是 | string | 签名 |
product_id | 是 | bigint | 产品编号 |
start_date | 是 | string | 开始时间 格式为yyyy-MM-dd |
end_date | 是 | string | 结束时间 格式为yyyy-MM-dd(范围最多6个月 |
返回结果:
{ "code": 0, "msg": "ok", "data": { "product_id": 6230214382, "goods_list": [ { "goods_id": 5230215265, "goods_extras": 1, "surplus_quota": 0, "stock_pattern": 1, "sku_list": [ { "sku_id": 523021526501, "availabilities": [] }, { "sku_id": 523021526502, "availabilities": [] }, { "sku_id": 523021526503, "availabilities": [ { "start_date": "2023-03-17", "end_date": "2023-03-17", "surplus_quota": 0, "market_price": 0, "customer_price": 0, "cost_price": 0, "sessions": [ { "time_id": 1, "time": "00:00", "surplus_quota": 0 } ] } ] } ] } ] } }
参数说明:
参数 | 类型 | 说明 |
---|---|---|
code | int | 状态码 |
msg | string | 接口返回信息 |
data | object | 接口返回数据 |
product_id | bigint | 产品编号 |
goods_list | list | 资源列表 |
- goods_id | bigint | 资源编号 |
- goods_extras | int | 资源类型(1-资源,2-加购项 |
- surplus_quota | int | 总剩余库存 |
- stock_pattern | int | 库存方式(日库存,总库存 |
- sku_list | list | sku信息 |
- - sku_id | bigint | sku编号 |
- - availabilities | list | 价格列表 |
- - - start_date | string | 开始天 |
- - - end_date | string | 结束天 |
- - - surplus_quota | int | 剩余名额(日库存 |
- - - market_price | float | 市场价 |
- - - ustomer_price | float | 直客价 |
- - - cost_price | float | 同行价 |
- - - sessions | list | sessions |
- - - - time_id | int | 场次id |
- - - - time | string | 场次时间 |
- - - - surplus_quota | int | 剩余名额(场次剩余 |
状态码说明:
状态码 | 说明 |
---|---|
0 | 查询成功 |
4001 | 报文错误 |
4002 | 签名错误 |
4003 | 账号停用(商户账号,商户主账号 |
7004 | 时间错误(时间周期错误或时间格式错误) |
7005 | 产品不存在(下架,不在售 |
7006 | 资源错误 (不存在,下架,不在售 |
7007 | sku错误(不存在,不在售 |