GET api/User/GetCardHistory?code={code}&platformId={platformId}&type={type}
“GetCardHistory”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| code | “code”的文档。 |
Define this parameter in the request URI. |
| platformId | “platformId”的文档。 |
Define this parameter in the request URI. |
| type | “type”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Items": [
{
"Id": 1,
"CardId": 2,
"Subtract": 3.0,
"Total": 4.0,
"CName": "sample string 5",
"DateTime": "sample string 6",
"Remark": "sample string 7"
},
{
"Id": 1,
"CardId": 2,
"Subtract": 3.0,
"Total": 4.0,
"CName": "sample string 5",
"DateTime": "sample string 6",
"Remark": "sample string 7"
},
{
"Id": 1,
"CardId": 2,
"Subtract": 3.0,
"Total": 4.0,
"CName": "sample string 5",
"DateTime": "sample string 6",
"Remark": "sample string 7"
}
]
}
application/xml, text/xml
Sample:
<CardHistoryList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TaiShengShi.Models">
<Items>
<CardHistory>
<CName>sample string 5</CName>
<CardId>2</CardId>
<DateTime>sample string 6</DateTime>
<Id>1</Id>
<Remark>sample string 7</Remark>
<Subtract>3</Subtract>
<Total>4</Total>
</CardHistory>
<CardHistory>
<CName>sample string 5</CName>
<CardId>2</CardId>
<DateTime>sample string 6</DateTime>
<Id>1</Id>
<Remark>sample string 7</Remark>
<Subtract>3</Subtract>
<Total>4</Total>
</CardHistory>
<CardHistory>
<CName>sample string 5</CName>
<CardId>2</CardId>
<DateTime>sample string 6</DateTime>
<Id>1</Id>
<Remark>sample string 7</Remark>
<Subtract>3</Subtract>
<Total>4</Total>
</CardHistory>
</Items>
</CardHistoryList>