GET api/CrmInfo/GetRecordList?uid={uid}&carnumber={carnumber}&pageIndex={pageIndex}&pageSize={pageSize}
“GetRecordList”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| uid | “uid”的文档。 |
Define this parameter in the request URI. |
| carnumber | “carnumber”的文档。 |
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": [
{
"OrderId": 1,
"CarNumber": "sample string 2",
"ProvTime": "sample string 3",
"UserName": "sample string 4",
"Status": "sample string 5"
},
{
"OrderId": 1,
"CarNumber": "sample string 2",
"ProvTime": "sample string 3",
"UserName": "sample string 4",
"Status": "sample string 5"
},
{
"OrderId": 1,
"CarNumber": "sample string 2",
"ProvTime": "sample string 3",
"UserName": "sample string 4",
"Status": "sample string 5"
}
],
"PageIndex": 1,
"PageSize": 2,
"Total": 3
}
application/xml, text/xml
Sample:
<CarRecordListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models">
<Items>
<CarRecordModel>
<CarNumber>sample string 2</CarNumber>
<OrderId>1</OrderId>
<ProvTime>sample string 3</ProvTime>
<Status>sample string 5</Status>
<UserName>sample string 4</UserName>
</CarRecordModel>
<CarRecordModel>
<CarNumber>sample string 2</CarNumber>
<OrderId>1</OrderId>
<ProvTime>sample string 3</ProvTime>
<Status>sample string 5</Status>
<UserName>sample string 4</UserName>
</CarRecordModel>
<CarRecordModel>
<CarNumber>sample string 2</CarNumber>
<OrderId>1</OrderId>
<ProvTime>sample string 3</ProvTime>
<Status>sample string 5</Status>
<UserName>sample string 4</UserName>
</CarRecordModel>
</Items>
<PageIndex>1</PageIndex>
<PageSize>2</PageSize>
<Total>3</Total>
</CarRecordListModel>