# 订单确认收货

# 接口调用请求说明

把订单状态从30(待收货)流转到100(完成)

http请求方式:POST
https://api.weixin.qq.com/shop/delivery/receive?access_token=xxxxxxxxx

# 请求参数示例

{
    "order_id": 123456,
    "out_order_id": "xxxxx",
    "openid": "oTVP50O53a7jgmawAmxKukNlq3XI",
}

# 回包示例

{
    "errcode": 0,
    "errmsg":"ok"
}

# 请求参数说明

参数 类型 是否必填 说明
order_id number 订单ID
out_order_id string 商家自定义订单ID,与 order_id 二选一
openid string 用户的openid

# 回包参数说明

参数 类型 说明
errcode number 错误码
errmsg string 错误信息