## 可赎回认筹订单列表
注意事项:
1. 一维数组
**请求方式**:POST
**请求地址**:`/v1/investList`
**参数说明:**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| customid | String| yes | 用户ID |
| sign | String | yes | 秘钥 |
**请求包结构体:**
~~~
{
"customid ": "MDEyOTQxMjcO0O0O",
"sign": "EC2FCD02E676832D928AA8F9384D7C05"
}
~~~
**返回信息**
| 参数 | 参数类型 | 必须 | 说明|
| ----------- | ------------------------------ | ------------ | --- |
| money| Integer | yes |认筹订单可赎回金额|
| invest_order| String| yes | 认筹订单号|
| time| String| yes | 认筹订单时间戳|
| item_name| String| yes | 认筹项目名称|
| panterid | Integer | yes | 商户ID |
| storeid | Integer | yes | 门店ID |
**返回示例:**
~~~
{
"status": "1",
"message": "成功",
"data": [
{
"price": "0.01",
"invest_order": "19316778049882",
"time": "1565614897",
"name": "郑州建业至尊商务服务有限公司T1",
"panterid": "00000227",
"storeid": "88888888"
},
{
"price": "0.01",
"invest_order": "19317555209885",
"time": "1565614897",
"name": "郑州建业至尊商务服务有限公司T1",
"panterid": "00000227",
"storeid": "88888888"
}
]
}
~~~
**错误示例:**
~~~
{
"status": "0",
"message": "无效签名,非法传入!"
}
~~~