POST api/XiaoChengXu/xcxTransLogList
冲销记录
Request Information
URI Parameters
None.
Body Parameters
xcxBuyListPost| Name | Description | Type | Additional information |
|---|---|---|---|
| keyword | string |
None. |
|
| skip |
跳过多少条 |
integer |
None. |
| limit | integer |
None. |
|
| openid | string |
None. |
|
| token |
token |
string |
None. |
| uid | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"keyword": "sample string 1",
"skip": 2,
"limit": 3,
"openid": "sample string 4",
"token": "sample string 5",
"uid": 1
}
application/xml, text/xml
Sample:
<xcxBuyListPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers"> <openid xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 4</openid> <token xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 5</token> <uid xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</uid> <limit>3</limit> <skip>2</skip> <keyword>sample string 1</keyword> </xcxBuyListPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
xcxTransLogListResult| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
状态码,200成功,300错误,400缺少参数,500没有权限,301数据不存在... |
integer |
None. |
| msg |
成功或者错误的说明,例如:登录成功,token过期... |
string |
None. |
| list | 数组: xcxTransLogListItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"list": [
{
"id": 1,
"type": 2,
"balance": 3.0,
"amount": 4.0,
"dt": "sample string 5"
},
{
"id": 1,
"type": 2,
"balance": 3.0,
"amount": 4.0,
"dt": "sample string 5"
}
],
"code": 1,
"msg": "sample string 2"
}
application/xml, text/xml
Sample:
<xcxTransLogListResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApi.Controllers">
<code xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">1</code>
<msg xmlns="http://schemas.datacontract.org/2004/07/WebApi.Models">sample string 2</msg>
<list>
<xcxTransLogListItem>
<amount>4</amount>
<balance>3</balance>
<dt>sample string 5</dt>
<id>1</id>
<type>2</type>
</xcxTransLogListItem>
<xcxTransLogListItem>
<amount>4</amount>
<balance>3</balance>
<dt>sample string 5</dt>
<id>1</id>
<type>2</type>
</xcxTransLogListItem>
</list>
</xcxTransLogListResult>