GET BetGames/GetTop3Winners/{gameId}

Gets the Top 3 Payouts for the last draw ran, for the specified game.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
gameId

integer

Required

Body Parameters

None.

Response Information

Resource Description

BaseResponseOfListOfNullableOfDecimal
NameDescriptionTypeAdditional information
ResponseMessage

string

None.

ResponseType

integer

None.

ResponseObject

Collection of decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "ResponseMessage": "sample string 1",
  "ResponseType": 2,
  "ResponseObject": [
    1.0,
    1.0
  ]
}

application/xml, text/xml

Sample:
<BaseResponseOfArrayOfNullableOfdecimal5F2dSckg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models.BetGamesModels.Response">
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseObject xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:decimal>1</d2p1:decimal>
    <d2p1:decimal>1</d2p1:decimal>
  </ResponseObject>
  <ResponseType>2</ResponseType>
</BaseResponseOfArrayOfNullableOfdecimal5F2dSckg>