电影票小程序/插件相关
美团联盟订单接口(按订单号查询)
基本信息:

根据订单号查询订单详情信息

接口说明
请求方式: GET
接口参数
参数名称 参数类型 是否必须 示例 备注
apikey string 接口秘钥,请登录个人中心获取
orderid String 订单号
type int 4 订单类型 2-酒店 4-外卖 6-商超 8-优选 默认4
返回参数
名称 类型 示例值 说明
orderId Object 订单号
sid String 合作方唯一标识
payprice String 订单用户实际支付金额
profit String 订单预估返佣金额
cpaProfit String 订单预估cpa总收益(优选、话费券)
smstitle String 订单标题
status int 订单状态,外卖、话费、闪购、优选、酒店订单会返回该字段 1 已付款 8 已完成 9 已退款或风控
tradeTypeList String[] 订单的奖励类型 话费订单类型返回该字段 3 首购奖励 5 留存奖励 优选订单类型返回该字段 2 cps 3 首购奖励
riskOrder int 0表示非风控订单,1表示风控订单
refundProfit String 订单需要扣除的返佣金额,外卖、话费、闪购、优选、酒店订单若发生退款会返回该字段
cpaRefundProfit String 订单需要扣除的cpa返佣金额(优选、话费券)
refundInfoList String 退款列表
refundInfoList.refundPrice String 订单实际退款金额,外卖、话费、闪购、优选、酒店订单若发生退款会返回该字段
refundInfoList.refundTime String 订单退款时间,10位时间戳
refundInfoList.refundType String ALL_REFUND(1, "全部退"), PART_REFUND(2, "部分退"), RISK_REFUND(3, "风控退");
refundProfitList String 退款佣金明细
refundProfitList.refundProfit String 退款佣金
refundProfitList.refundFinishTime String 佣金产生时间,10位时间戳
refundProfitList.type String 券订单: 1 流量订单: 2 首单: 3 复购: 4 留存: 5 二单: 6 唤起: 7
返回示例
{
    "code": 1,
    "msg": "【success】",
    "data": {
        "order": {
            "businessLine": 2,
            "subBusinessLine": 1,
            "actId": 33,
            "quantity": 1,
            "orderId": "103749082578225360",
            "paytime": "1637735754",
            "modTime": "1637735765",
            "payprice": "11.20",
            "profit": "0.34",
            "cpaProfit": "0",
            "sid": null,
            "appkey": "65c5f4b9271221c79eae104d969a48a3",
            "smstitle": "蜜雪冰城(富达店)",
            "status": 1,
            "tradeTypeList": [],
            "riskOrder": null,
            "refundprofit": null,
            "cpaRefundProfit": null,
            "refundInfoList": null,
            "refundProfitList": null,
            "extra": null
        }
    }
}