Qeasy Cloud
Get Started
POSThttps://dopen.weimob.com/api/1_0/weimob_shop/order/list/searchaccess_token(accesstoken query 参数)

Search Order List (weimob_shop/order/list/search)

微盟商城订单列表搜索接口,按时间、状态、订单号等条件分页查询订单,是微盟店铺订单同步进 ERP 与财务对账的取数口。

## Overview weimob_shop/order/list/search (v2.0) pages through Weimob mall orders by condition, returning orderNo, status, amounts, buyer info and item summaries; its companion weimob_shop/order/detail/get fetches the full detail per order number. The API capability must be granted in the Weimob Cloud console first. ### Request essentials 1. POST with Content-Type: application/json; the access_token goes on the URL as the accesstoken query parameter. 2. Body: pageNum/pageSize for paging; filters such as createStartTime/createEndTime (order-time window), orderNo (pinpoint) and statuses (state array) as needed. 3. When code.errcode is "0", data.pageList holds the orders and data.totalCount the total; an order number feeds detail/get for line-level data (items, paid, discounts, freight). 4. Incremental sync advances the creation-time window with a few minutes of overlap; slice by hour during promotion peaks so a window never exceeds the paging ceiling. ### Reconciliation use Match Weimob receipts, freight and discount allocations against WeChat/Alipay statements and ERP receivables three-way; Qeasy keys on orderNo and auto-classifies divergences (amount gap, missing order, status gap). ### Amount semantics Weimob splits amounts into goods total, discounts, freight and paid; discounts may combine platform and shop coupons, and line-level allocation follows the API documentation. Agree with finance upfront whether reconciliation uses the paid amount or goods-total-minus-shop-discount — otherwise a systematic gap against payment statements will be misread as a reconciliation incident.

Code examples

curl
curl -X POST "https://dopen.weimob.com/api/1_0/weimob_shop/order/list/search?accesstoken=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"pageNum":1,"pageSize":50,"createStartTime":1780000000000,"createEndTime":1780003600000}'

Error codes

CodeMessageMeaning
0success成功
token_invalidaccesstoken 无效token 过期或未按店铺维度获取,重新换取
api_not_granted无接口权限未在控制台申请该 API 能力