获取商品sku列表
根据商品id获取商品的sku列表,支持返回预占库存信息
请求URL:
公共参数
参数名称 | 参数类型 | 是否必须 | 示例值 | 参数描述 |
---|---|---|---|---|
appid | String | 是 | 合作伙伴AppId | |
timestamp | String | 是 | 1657525936 | 当前Unix时间戳,秒 |
seller_nick | String | 是 | 38173182 | 抖店的账号,对应蜂巢授权返回doudianseller字段 |
sign | String | 是 |
业务参数
参数名称 | 参数类型 | 是否必须 | 示例值 | 参数描述 |
---|---|---|---|---|
product_id | - | 否 | 3213654123157 | 商品ID;抖店系统生成。 |
out_product_id | Number | 否 | 243523452435 | 外部商品ID;商家创建商品时自定义。 |
2. 请求示例代码(Java)
请求示例代码
@Test
public void DDSkuList() throws Exception {
Map<String, Object> data = new HashMap<String, Object>();
data.put("appid", Config.AppId);
Long timestamp = System.currentTimeMillis() / 1000;
data.put("timestamp", timestamp.toString());
data.put("seller_nick", Config.DDSellerNick);
data.put("product_id", 3668963015870513459L);
// data.put("out_product_id", 0);
data.put("sign", Sign(data,Config.AppSecret));
// 调用服务API
String resp = doHttpRequest(Config.DDSkuList, data);
System.out.println(resp);
}
3. 返回结果如下:
{
"code": 0,
"message": "ok",
"data": [{
"channel_stock_num": 0,
"code": "sk100",
"create_time": 1708495124,
"customs_report_info": {
"bar_code": null,
"first_measure_qty": null,
"first_measure_unit": null,
"g_model": null,
"hs_code": null,
"report_brand_name": null,
"report_name": null,
"second_measure_qty": null,
"second_measure_unit": null,
"unit": null,
"usage": null
},
"id": 3398076948315650,
"is_suit": 0,
"normal_stock_num": 1000,
"open_user_id": 0,
"out_sku_id": 0,
"prehold_step_stock_num": 0,
"prehold_stock_map": null,
"prehold_stock_num": 0,
"price": 22223,
"product_id": 3668963015870513459,
"product_id_str": "3668963015870513459",
"prom_step_stock_num": 0,
"prom_stock_num": 0,
"sell_properties": [{
"value_name": "默认",
"value_spec_detail_id": 1791486981413888
}],
"settlement_price": 0,
"ship_rule_map": null,
"sku_status": true,
"sku_type": 0,
"spec_detail_id1": 1791486981413888,
"spec_detail_id2": 0,
"spec_detail_id3": 0,
"spec_detail_name1": "默认",
"spec_detail_name2": "",
"spec_detail_name3": "",
"spec_id": 1791486981410857,
"step_stock_num": 0,
"stock_map": null,
"stock_num": 1000,
"suit_num": 0,
"supplier_id": "1",
"volume": 0
}]
}
说明: code为0表示成功,非0为失败,message会包含失败原因。返回字段说明见文档
https://op.jinritemai.com/docs/api-docs/14/82
文档更新时间: 2024-05-21 22:56 作者:JSL