简要描述:

  • 分销商佣金列表接口

请求域名:

  • http://test.yunzshop.com

请求URL:

GET/addons/yun_shop/api.php?i=6&route=plugin.commission.api.commission.get-commission-list&test_uid=146&type=2

参数:

参数名 是否必须 类型 说明
i int 店铺ID
commission_type int 佣金状态

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "获取数据成功!",
    "data": [
        {
            "id": 1,
            "commission": "3.30",
            "created_at": "2017-04-07 10:14:11",
            "order_sn": "sn1491531251",
            "price": "29.70"
        },
        {
            "id": 4,
            "commission": "6.60",
            "created_at": "2017-04-07 10:14:17",
            "order_sn": "sn1491531257",
            "price": "59.40"
        }
    ]
}

错误时返回:

{
    "result":0,
    "msg":"未检测到数据!",
    "data": {
	}
}

返回参数说明:

参数名 类型 说明
id int ID
commission float 佣金
created_at string 时间
order_sn string 订单号
price float 订单金额
status int 佣金状态 -1无效

备注:

  • 更多返回错误代码请看首页的错误代码描述