POST api/v1/sysv1/GetRewardRecordList

Request Information

URI Parameters

None.

Body Parameters

RewardRecordListParam
NameDescriptionTypeAdditional information
RewardType

integer

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RewardType": 1,
  "PageIndex": 2,
  "PageSize": 3
}

application/xml, text/xml

Sample:
<RewardRecordListParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Models.v1.Params">
  <PageIndex xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Models">2</PageIndex>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/DDO.AppApi.Models">3</PageSize>
  <RewardType>1</RewardType>
</RewardRecordListParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PageListOfRewardRecordDto
NameDescriptionTypeAdditional information
PageIndex

integer

None.

PageSize

integer

None.

TotalPage

integer

None.

TotalCount

integer

None.

Items

Collection of RewardRecordDto

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",
      "RewardAmount": 2.0,
      "CreateTimestamp": 3
    },
    {
      "ActionStr": "sample string 1",
      "RewardAmount": 2.0,
      "CreateTimestamp": 3
    }
  ]
}

text/xml

Sample:
<PageListOfRewardRecordDtov4v4Uyl1 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:RewardRecordDto>
      <d2p1:ActionStr>sample string 1</d2p1:ActionStr>
      <d2p1:CreateTimestamp>3</d2p1:CreateTimestamp>
      <d2p1:RewardAmount>2</d2p1:RewardAmount>
    </d2p1:RewardRecordDto>
    <d2p1:RewardRecordDto>
      <d2p1:ActionStr>sample string 1</d2p1:ActionStr>
      <d2p1:CreateTimestamp>3</d2p1:CreateTimestamp>
      <d2p1:RewardAmount>2</d2p1:RewardAmount>
    </d2p1:RewardRecordDto>
  </Items>
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
  <TotalCount>4</TotalCount>
  <TotalPage>3</TotalPage>
</PageListOfRewardRecordDtov4v4Uyl1>