POST api/v1/sysv1/GetCoinFetchList
Request Information
URI Parameters
None.
Body Parameters
PagedParam| Name | Description | Type | Additional information |
|---|---|---|---|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PageIndex": 1,
"PageSize": 2
}
application/xml, text/xml
Sample:
<PagedParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Models"> <PageIndex>1</PageIndex> <PageSize>2</PageSize> </PagedParam>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
PageListOfFetchRecordDto| Name | Description | Type | Additional information |
|---|---|---|---|
| PageIndex | integer |
None. |
|
| PageSize | integer |
None. |
|
| TotalPage | integer |
None. |
|
| TotalCount | integer |
None. |
|
| Items | Collection of FetchRecordDto |
None. |
Response Formats
application/json
Sample:
Sample not available.
application/xml
Sample:
Sample not available.
text/json
Sample:
{
"PageIndex": 1,
"PageSize": 2,
"TotalPage": 3,
"TotalCount": 4,
"Items": [
{
"ActionStr": "sample string 1",
"CompensateAmount": 2.0,
"CreateTimestamp": 3,
"TotalCount": 4
},
{
"ActionStr": "sample string 1",
"CompensateAmount": 2.0,
"CreateTimestamp": 3,
"TotalCount": 4
}
]
}
text/xml
Sample:
<PageListOfFetchRecordDtov4v4Uyl1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Infrastructure.Collections">
<Items xmlns:d2p1="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Activity.Odd">
<d2p1:FetchRecordDto>
<d2p1:ActionStr>sample string 1</d2p1:ActionStr>
<d2p1:CompensateAmount>2</d2p1:CompensateAmount>
<d2p1:CreateTimestamp>3</d2p1:CreateTimestamp>
<d2p1:TotalCount>4</d2p1:TotalCount>
</d2p1:FetchRecordDto>
<d2p1:FetchRecordDto>
<d2p1:ActionStr>sample string 1</d2p1:ActionStr>
<d2p1:CompensateAmount>2</d2p1:CompensateAmount>
<d2p1:CreateTimestamp>3</d2p1:CreateTimestamp>
<d2p1:TotalCount>4</d2p1:TotalCount>
</d2p1:FetchRecordDto>
</Items>
<PageIndex>1</PageIndex>
<PageSize>2</PageSize>
<TotalCount>4</TotalCount>
<TotalPage>3</TotalPage>
</PageListOfFetchRecordDtov4v4Uyl1>