post {url}/app/product/storage/cursorList
请求参数
|
字段 |
名称 |
类型 |
是否必须 |
|
cursor |
游标 |
int |
否 |
|
pageSize |
每页个数 |
int |
是(最大值100,默认50) |
备注:第一次请求接口时,cursor可以填0或者不传此参数,之后每次请求都用上一次请求接口返回的cursor即可,直到返回商品数量小于pageSize或者返回商品数量为0,即可停止请求。下次请求可继续使用上次的最后一个cursor请求此接口,以返回商品数量判断是否有新商品,亦可以从cursor=0开始重新请求,请开发者根据自有业务逻辑进行判断。
返回:
|
字段 |
名称 |
|
code |
0为成功其余都是失败 |
|
data |
array |
|
msg |
提示语 |
data
|
字段 |
名称 |
|
list |
数据列表 |
|
total |
总数量 |
|
pageSize |
每页个数 |
|
cursor |
游标 |
list
|
字段 |
名称 |
|
id |
中台商品id |
|
title |
商品名称 |
|
image_url |
商品主图 |
|
source |
来源 0中台 1云仓(聚合供应链) 2京东 6阿里 7天猫 |
|
agreement_price |
协议价 |
|
guide_price |
指导价 |
|
activity_price |
营销价 |
|
market_price |
市场价 |
|
sale_price |
销售价 |
|
cost_price |
成本价 |
|
origin_rate |
常规利率 |
|
activity_rate |
营销利率 |
|
recommend_brand_str |
推荐品牌 |
|
recommend_category_str |
推荐分类 |
|
supplier_name |
供应商 |
示例响应数据:(示例中pageSize为1)
{
“code”: 0,
“data”: {
“list”: [
{
“id”: 5658,
“title”: “美菱(MELNG) 低糖电饭煲 MF-LC4008A 黑色 “,
“image_url”: “https://img.yunzhonghe.com/image/1627610426746MgaFjCPoJO.jpg”,
“source”: 101,
“category_1_id”: 273,
“category_2_id”: 279,
“category_3_id”: 293,
“brand_id”: 62,
“agreement_price”: 51390,
“guide_price”: 98800,
“activity_price”: 98800,
“market_price”: 98800,
“sale_price”: 98800,
“cost_price”: 98800,
“origin_rate”: 0.92,
“activity_rate”: 0.92,
“profit”: 47410,
“profit_rate”: 0.48,
“is_display”: 0,
“is_recommend”: 0,
“is_new”: 0,
“is_hot”: 0,
“stock”: 4999,
“sales”: 0,
“unit”: “”,
“is_promotion”: 0,
“min_price”: 0,
“max_price”: 0,
“created_at”: 1668594326,
“supplier_id”: 0,
“gather_supplier_id”: 3,
“freight_type”: 2,
“recommend_brand_str”: “美菱”,
“recommend_category_str”: “家用电器,厨房小电,电饭煲”,
“supplier_name”: “”,
“updated_at”: 1669968276,
“sort”: 0,
“is_plugin”: 0,
“level_1_price”: 51390,
“level_2_price”: 61668,
“level_3_price”: 0,
“level_4_price”: 0,
“level_5_price”: 0,
“level_6_price”: 0,
“level_7_price”: 0,
“level_8_price”: 0,
“level_9_price”: 0,
“level_10_price”: 0,
“level_1_profit”: 47410,
“level_2_profit”: 37132,
“level_3_profit”: 98800,
“level_4_profit”: 98800,
“level_5_profit”: 98800,
“level_6_profit”: 98800,
“level_7_profit”: 98800,
“level_8_profit”: 98800,
“level_9_profit”: 98800,
“level_10_profit”: 98800,
“barcode”: “”,
“import_apps”: “”
}
],
“total”: 4771,
“cursor”: 5658,
“pageSize”: 1
},
“msg”: “获取成功”
}