POST api/v1/topicv1/GetMyGuessList

Request Information

URI Parameters

None.

Body Parameters

GetMyGuessListParam
NameDescriptionTypeAdditional information
TopicId

integer

None.

PageIndex

integer

None.

PageSize

integer

None.

Request Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<GetMyGuessListParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AIT.AppApi.Models.v1.Params.Info">
  <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>
  <TopicId>1</TopicId>
</GetMyGuessListParam>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

PageListOfMyGuessListDto
NameDescriptionTypeAdditional information
PageIndex

integer

None.

PageSize

integer

None.

TotalPage

integer

None.

TotalCount

integer

None.

Items

Collection of MyGuessListDto

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": [
    {
      "GuessAmount": 1.0,
      "GuessDirection": 2,
      "DecisionResult": 3,
      "SettleAmount": 4.0,
      "CompensateCouponCount": 5,
      "CompensateCoinAmount": 6.0,
      "EstimateAmount": 7.0,
      "GuessTimestamp": 8,
      "DecisionRemark": "sample string 9"
    },
    {
      "GuessAmount": 1.0,
      "GuessDirection": 2,
      "DecisionResult": 3,
      "SettleAmount": 4.0,
      "CompensateCouponCount": 5,
      "CompensateCoinAmount": 6.0,
      "EstimateAmount": 7.0,
      "GuessTimestamp": 8,
      "DecisionRemark": "sample string 9"
    }
  ]
}

text/xml

Sample:
<PageListOfMyGuessListDtov4v4Uyl1 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:MyGuessListDto>
      <d2p1:CompensateCoinAmount>6</d2p1:CompensateCoinAmount>
      <d2p1:CompensateCouponCount>5</d2p1:CompensateCouponCount>
      <d2p1:DecisionRemark>sample string 9</d2p1:DecisionRemark>
      <d2p1:DecisionResult>3</d2p1:DecisionResult>
      <d2p1:EstimateAmount>7</d2p1:EstimateAmount>
      <d2p1:GuessAmount>1</d2p1:GuessAmount>
      <d2p1:GuessDirection>2</d2p1:GuessDirection>
      <d2p1:GuessTimestamp>8</d2p1:GuessTimestamp>
      <d2p1:SettleAmount>4</d2p1:SettleAmount>
    </d2p1:MyGuessListDto>
    <d2p1:MyGuessListDto>
      <d2p1:CompensateCoinAmount>6</d2p1:CompensateCoinAmount>
      <d2p1:CompensateCouponCount>5</d2p1:CompensateCouponCount>
      <d2p1:DecisionRemark>sample string 9</d2p1:DecisionRemark>
      <d2p1:DecisionResult>3</d2p1:DecisionResult>
      <d2p1:EstimateAmount>7</d2p1:EstimateAmount>
      <d2p1:GuessAmount>1</d2p1:GuessAmount>
      <d2p1:GuessDirection>2</d2p1:GuessDirection>
      <d2p1:GuessTimestamp>8</d2p1:GuessTimestamp>
      <d2p1:SettleAmount>4</d2p1:SettleAmount>
    </d2p1:MyGuessListDto>
  </Items>
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
  <TotalCount>4</TotalCount>
  <TotalPage>3</TotalPage>
</PageListOfMyGuessListDtov4v4Uyl1>