GET api/CrmInfo/GetCardLogs?code={code}&pageIndex={pageIndex}&pageSize={pageSize}
“GetCardLogs”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| code | “code”的文档。 |
Define this parameter in the request URI. |
| pageIndex | “pageIndex”的文档。 |
Define this parameter in the request URI. |
| pageSize | “pageSize”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Items": [
{
"code": "sample string 1",
"name": "sample string 2",
"oderId": 3,
"amount": 4.0,
"date": "sample string 5",
"uname": "sample string 6"
},
{
"code": "sample string 1",
"name": "sample string 2",
"oderId": 3,
"amount": 4.0,
"date": "sample string 5",
"uname": "sample string 6"
},
{
"code": "sample string 1",
"name": "sample string 2",
"oderId": 3,
"amount": 4.0,
"date": "sample string 5",
"uname": "sample string 6"
}
],
"PageIndex": 1,
"PageSize": 2,
"PageTotal": 3
}
application/xml, text/xml
Sample:
<CardLogListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models">
<Items>
<CardLogModel>
<amount>4</amount>
<code>sample string 1</code>
<date>sample string 5</date>
<name>sample string 2</name>
<oderId>3</oderId>
<uname>sample string 6</uname>
</CardLogModel>
<CardLogModel>
<amount>4</amount>
<code>sample string 1</code>
<date>sample string 5</date>
<name>sample string 2</name>
<oderId>3</oderId>
<uname>sample string 6</uname>
</CardLogModel>
<CardLogModel>
<amount>4</amount>
<code>sample string 1</code>
<date>sample string 5</date>
<name>sample string 2</name>
<oderId>3</oderId>
<uname>sample string 6</uname>
</CardLogModel>
</Items>
<PageIndex>1</PageIndex>
<PageSize>2</PageSize>
<PageTotal>3</PageTotal>
</CardLogListModel>