## 可贖回認籌訂單列表
注意事項:
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": ? "無效簽名,非法傳入!"
}
~~~