# Get a summary of the shareholder's live room orders

# Dxplaination of Interface Call Request

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

# Request parameters

{
    "openid": "OPENID",
    "live_export_id": "LIVE_EXPORT_ID", 
    "page": 1,
    "page_size": 10
}

# Examples of back-up

{
    "errcode":0,
    "errmsg":"ok",
    "orders":[
        {
            "order_id":123455,
            "out_order_id":"xxxxx",
            "status":20,
            "path":"/pages/order.html?out_order_id=xxxxx",
            "order_detail":{
                "promotion_info":{
                    "finder_username":"FINDER_USERNAME",
                    "finder_nickname":"FINDER_NICKNAME",
                    "sharer_openid":"OPENID",
                    "live_start_time":"2020-04-25 12:05:25"
                },
                "product_infos":[
                    {
                        "out_product_id":"12345",
                        "out_sku_id":"23456",
                        "product_cnt":10,
                        "sale_price":200,
                        "path":"pages/productDetail/productDetail?productId=2176180",
                        "title":"标题",
                        "head_image":"http://img10.360buyimg.com/n1/s450x450_jfs/t1/85865/39/13611/488083/5e590a40E4bdf69c0/55c9bf645ea2b727.jpg",
                        "real_price":200
                    }
                ],
                "pay_info":{
                    "pay_method":"微信支付",
                    "prepay_id":"42526234625",
                    "prepay_time":"2020-03-25 14:04:25",
                    "transaction_id":"131456479687",
                    "pay_time":"2020-03-25 14:05:25",
                    "pay_method_type":0
                },
                "price_info":{
                    "order_price":1600,
                    "freight":500,
                    "discounted_price":1000,
                    "additional_price":100,
                    "additional_remarks":"税费"
                },
                "delivery_detail":{
                    "delivery_type":1,
                    "finish_all_delivery":1,
                    "delivery_list":[
                        {
                            "waybill_id":"SFXXXX",
                            "delivery_id":"SF"
                        }
                    ]
                }
            }
        }
    ],
    "total_num":20
}

# Dxplaination of request parameters

参数 type Is it compulsory? Introductions
openid string yes Sharer openid
live_export_id string yes Direct broadcast export_id
page number yes What Page (Minimum Fill 1)
page_size number yes Number of pages per page (no more than 100)

# Dxplaination of callback parameters

参数 type Introductions
errcode string Error code
errmsg string Error message
orders[].order_id number(uint64) Trading Component Platform Order ID
orders[].out_order_id string Merchant Custom Order ID
orders[].status number Order Status
orders[].path string Merchant Weixin Mini Program The page path of the order, used for WeChat side order center jump
orders[].order_detail.promotion_info.finder_username string Promoter WeChat Channels user name
orders[].order_detail.promotion_info.finder_nickname string Username for the WeChat Channels of the promoter
orders[].order_detail.promotion_info.sharer_openid string The openid of the sharer
orders[].order_detail.promotion_info.live_start_time string Broadcast start time
orders[].order_detail.product_infos[].out_product_id string Merchant Custom Item ID
orders[].order_detail.product_infos[].out_sku_id string Merchant custom product skuID, can fill in the character string (if there is no sku under this product_id)
orders[].order_detail.product_infos[].product_cnt number Number of purchases
orders[].order_detail.product_infos[].sale_price number The selling price (in units of cents) of the item at the time of the creation of this order may not be consistent with the price of the uploaded item interface
orders[].order_detail.product_infos[].real_price number The average price of a single SKU after deducting the discount (unit: cent), if there is no discount, the same as the sale_price
orders[].order_detail.product_infos[].path number Bound Weixin Mini Program product path
orders[].order_detail.product_infos[].head_image number Headmap of the item at the time of creation of the order
orders[].order_detail.product_infos[].title number The title of the item at the time of the order is generated
orders[].order_detail.pay_info.pay_method_type number 0: WeChat payment, 1: payment on arrival, 2: merchant membership storage card (default 0)
orders[].order_detail.pay_info.prepay_id string Prepaid ID
orders[].order_detail.pay_info.prepay_time string Prepayment time (time to get prepay_id)
orders[].order_detail.pay_info.transaction_id string Payment ID
orders[].order_detail.pay_info.pay_time string Payment time (time to get the transaction_id)
orders[].order_detail.price_info.freight number Shipping costs (in units of cents)
orders[].order_detail.price_info.order_price number The final amount of the order (in units of cents)
orders[].order_detail.price_info.discounted_price number Amount of concession (in units of cents)
orders[].order_detail.price_info.additional_price number Additional amount (in units of cents)
orders[].order_detail.price_info.additional_remarks string Note of Additional Amount
orders[].order_detail.delivery_detail.delivery_type number Shipping Type
orders[].order_detail.delivery_detail.finish_all_delivery number Is the shipment complete?
orders[].order_detail.delivery_detail.delivery_list[].delivery_id string Quick-recursive company ID, obtained by getting the Quick-recursive company list
orders[].order_detail.delivery_detail.delivery_list[].waybill_id string Tracking number
total_num number Total Orders