GET api/syxbetgames/game/{gameId}/winners/top3

Request Information

URI Parameters

NameDescriptionTypeAdditional information
gameId

integer

Required

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.BaseResponseOfSystem.Collections.Generic.ListOfSystem.Decimal
NameDescriptionTypeAdditional information
ResponseObject

Collection of decimal number

None.

ResponseMessage

string

None.

ResponseType

BO.Enums.ResponseType

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    1.0,
    2.0
  ],
  "responseMessage": "sample string 1",
  "responseType": 1
}

application/xml, text/xml

Sample:
<BaseResponseOfListOfDecimal xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <decimal>1</decimal>
    <decimal>2</decimal>
  </ResponseObject>
  <ResponseMessage>sample string 1</ResponseMessage>
  <ResponseType>Success</ResponseType>
</BaseResponseOfListOfDecimal>