# 获取合作店铺订单
通过此接口小程序可以获取合作账号微信小店订单
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/channels/ec/cooperation/order/get?access_token=ACCESS_TOKEN
# 请求参数示例
{
"shop_appid": "SHOP_APPID",
"order_id": "ORDER_ID"
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
shop_appid | string | 是 | 店铺appid,由回调事件得到 |
order_id | string | 是 | 订单id,由回调事件得到 |
# 回包示例
{
"order": {
"openid": "OPENID",
"order_detail": {
"product_infos": [
{
"product_id": 234245,
"sku_id": 23424,
"sku_cnt": 10,
"title": "健身环",
"thumb_img": "https://mmecimage.cn/p/wx37f38d59298839c3/HJE9eJaEc5bJk-eaArVdILSB7MMaHgdK2-JIn51nMQ",
"sale_price": 2000,
"market_price": 2000,
"sku_attrs": [
{
"attr_key": "产地",
"attr_value": "四川成都"
},
{
"attr_key": "材质",
"attr_value": "玻璃"
},
{
"attr_key": "适用人群",
"attr_value": "青年;中年"
},
{
"attr_key": "数量",
"attr_value": "33"
},
{
"attr_key": "精度",
"attr_value": "3.001"
},
{
"attr_key": "重量",
"attr_value": "38 mg"
},
{
"attr_key": "毛重",
"attr_value": "380 kg"
}
]
}
],
"price_info": {
"product_price": 20000,
"order_price": 10500,
"freight": 500,
"discounted_price": 10000,
"is_discounted": true
}
}
}
}
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | string | 错误码 |
errmsg | string | 错误信息 |
order | object | 订单信息,见下方 Order 结构 |
# 结构体
# Order
订单结构
字段名 | 类型 | 说明 |
---|---|---|
openid | string | 买家身份标识 |
unionid | string | 买家在开放平台的唯一标识符,若当前微信小店已绑定到微信开放平台账号下,绑定成功后产生的订单会返回,详见UnionID 机制说明 |
order_detail | object OrderDetail | 订单详细数据信息,具体结构请参考OrderDetail结构体 |
# OrderDetail
订单详细数据信息
字段名 | 类型 | 说明 |
---|---|---|
product_infos | array ProductInfo | 商品列表,具体结构请参考ProductInfo结构体 |
price_info | object PriceInfo | 价格信息,具体结构请参考PriceInfo结构体 |
# ProductInfo
商品列表
字段名 | 类型 | 说明 |
---|---|---|
product_id | number | 商品spuid |
sku_id | number | 商品skuid |
thumb_img | string | sku小图 |
sku_cnt | number | sku数量 |
sale_price | number | 售卖单价,单位为分, |
title | string | 商品标题 |
sku_code | string | 商品编码 |
market_price | number | 市场单价,单位为分 |
sku_attrs | array AtrrInfo | sku属性 |
real_price | number | sku实付总价,取estimate_price和change_price中较小值 |
is_discounted | bool | 是否有商家优惠金额,非必填,默认为false |
estimate_price | number | 使用所有优惠后sku总价,非必填,有优惠金额时必填 |
is_change_price | bool | 是否修改过价格,非必填,默认为false |
change_price | number | 改价后sku总价,非必填,is_change_price为true时有值 |
# PriceInfo
价格信息
字段名 | 类型 | 描述 |
---|---|---|
product_price | number | 商品总价,单位为分 |
order_price | number | 用户实付金额,单位为分order_price=original_order_price-discounted_price-finder_discounted_price-deduction_price-change_down_price |
freight | number | 运费,单位为分 |
discounted_price | number | 商家优惠金额,单位为分,非必填,有商家优惠时返回 |
is_discounted | bool | 是否有商家优惠券优惠 |
original_order_price | number | 订单原始价格,单位为分,original_order_price=product_price+freight |
estimate_product_price | number | 商品预估价格,单位为分 |
change_down_price | number | 改价后降低金额,单位为分 |
change_freight | number | 改价后运费,单位为分 |
is_change_freight | bool | 是否修改运费 |
use_deduction | bool | 是否使用了会员积分抵扣 |
deduction_price | number | 会员积分抵扣金额,单位为分 |
merchant_receieve_price | number | 商家实收金额,单位为分merchant_receieve_price=original_order_price-discounted_price-deduction_price-change_down_price |
merchant_discounted_price | number | 商家优惠金额,单位为分,含义同discounted_price,必填 |
finder_discounted_price | number | 达人优惠金额,单位为分 |