订单同步

按时间范围或状态拉取平台订单,用于订单中心增量同步。

POST https://api.cheeli.com/open/v1/orders/sync 在线调试

请求参数

参数名称类型必填说明
platformstring平台标识
shop_idstring店铺 ID
start_timestring开始时间
end_timestring结束时间

请求示例

Request json
{
  "platform": "taobao",
  "shop_id": "shop_10001",
  "start_time": "2026-03-10T00:00:00+08:00",
  "end_time": "2026-03-10T23:59:59+08:00"
}

返回示例

Response json
{
  "code": 0,
  "message": "success",
  "data": {
    "total": 2,
    "orders": []
  }
}