简要描述:
- 收入提现接口
请求域名:
- http://test.yunzshop.com
请求URL:
GET/addons/yun_shop/api.php?i=6&route=finance.withdraw.withdraw-log
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
i | 是 | int | 店铺ID |
status | 否 | int | 为空:全部 0:待审核 1:待打款 2:已打款 -1:无效 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "获取数据成功!",
"data": [
{
"id": 1,
"type_name": "分销佣金",
"amounts": "1000.00",
"poundage": "100.00",
"status": "0",
"created_at": "2017-03-30 10:34:40",
"status_name": "未审核"
}
]
}
错误时返回:
{
"result": 0,
"msg": "未检测到数据!",
"data": {}
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | ID |
type_name | string | 类型名称 |
amounts | float | 提现金额 |
poundage | float | 手续费 |
status | int | 状态 |
status_name | string | 状态名称 |
created_at | string | 提现时间 |
备注:
- 更多返回错误代码请看首页的错误代码描述