# Order confirmation for delivery
# Dxplaination of Interface Call Request
Transfer order status from 30 (to be received) to 100 (completed)
http请求方式:POST
https://api.weixin.qq.com/shop/delivery/receive?access_token=xxxxxxxxx
# Example of request parameters
{
"order_id": 123456,
"out_order_id": "xxxxx",
"openid": "oTVP50O53a7jgmawAmxKukNlq3XI",
}
# Examples of back-up
{
"errcode": 0,
"errmsg":"ok"
}
# Dxplaination of request parameters
参数 | type | Is it compulsory? | Introductions |
---|---|---|---|
order_id | number | no | Order ID |
out_order_id | string | no | Custom order ID, and order_id two options |
openid | string | yes | User's openid |
# Dxplaination of callback parameters
参数 | type | Introductions |
---|---|---|
errcode | number | Error code |
errmsg | string | Error message |