## 赎回列表
注意事项:
1. 一维数组
2. 只能当天撤销赎回
**请求方式**:POST
**请求地址**:`/v1/withdrawlist`
**参数说明:**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| customid | String| yes | 用户ID |
| sign | String | yes | 秘钥 |
**请求包结构体:**
~~~
{
"customid ": "MDEyOTQxMjcO0O0O",
"sign": "EC2FCD02E676832D928AA8F9384D7C05"
}
~~~
**返回信息**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| bankno| Integer | yes |银行卡号|
| bankname | String| yes | 银行名称|
| amount| Integer | yes | 赎回金额|
| order_no | String | yes | 赎回流水号 |
| time| Integer | yes | 赎回时间戳|
| status | Integer | yes | 赎回状态 (0,1) 未同步 2 已同步 3 失败 4 完成 6 撤销 |
**返回示例:**
~~~
{
"status": "1",
"message": "成功",
"data": [
{
"bankno": "6998371888800015881",
"bankname": "中国银行",
"amount": "100",
"order_no":"zy_201911121152183890",
"time": "1565614897",
"status": "4"
},
{
"bankno": "6998371888800015881",
"bankname": "中国银行",
"amount": "100",
"order_no":"zy_201911121152183890",
"time": "1565614897",
"status": "4"
}
]
}
~~~
**错误示例:**
~~~
{
"status": "0",
"message": "无效签名,非法传入!"
}
~~~