GET api/DataExport/upRecList?token={token}&pageIndex={pageIndex}&pageSize={pageSize}&no={no}&begin={begin}&end={end}
“upRecList”的文档。
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| token | “token”的文档。 |
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. |
| no | “no”的文档。 |
Define this parameter in the request URI. |
| begin | “begin”的文档。 |
Define this parameter in the request URI. |
| end | “end”的文档。 |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"PageIndex": 1,
"PageSize": 2,
"PageCount": 3,
"Total": 4,
"Items": [
{
"Id": 1,
"batch": "sample string 2",
"type": "sample string 3",
"typeName": "sample string 4",
"count": "sample string 5",
"createTime": "sample string 6"
},
{
"Id": 1,
"batch": "sample string 2",
"type": "sample string 3",
"typeName": "sample string 4",
"count": "sample string 5",
"createTime": "sample string 6"
},
{
"Id": 1,
"batch": "sample string 2",
"type": "sample string 3",
"typeName": "sample string 4",
"count": "sample string 5",
"createTime": "sample string 6"
}
],
"Success": 5,
"Message": "sample string 6",
"DataId": "sample string 7",
"Uid": "sample string 8"
}
application/xml, text/xml
Sample:
<UploadRecordListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models.HCR">
<DataId>sample string 7</DataId>
<Message>sample string 6</Message>
<Success>5</Success>
<Uid>sample string 8</Uid>
<Items>
<UploadRecordModel>
<Id>1</Id>
<batch>sample string 2</batch>
<count>sample string 5</count>
<createTime>sample string 6</createTime>
<type>sample string 3</type>
<typeName>sample string 4</typeName>
</UploadRecordModel>
<UploadRecordModel>
<Id>1</Id>
<batch>sample string 2</batch>
<count>sample string 5</count>
<createTime>sample string 6</createTime>
<type>sample string 3</type>
<typeName>sample string 4</typeName>
</UploadRecordModel>
<UploadRecordModel>
<Id>1</Id>
<batch>sample string 2</batch>
<count>sample string 5</count>
<createTime>sample string 6</createTime>
<type>sample string 3</type>
<typeName>sample string 4</typeName>
</UploadRecordModel>
</Items>
<PageCount>3</PageCount>
<PageIndex>1</PageIndex>
<PageSize>2</PageSize>
<Total>4</Total>
</UploadRecordListModel>