GET BetGames/GetGames

Gets all the Games of BetGames

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BaseResponseOfListOfGetGames_Result
NameDescriptionTypeAdditional information
ResponseMessage

string

None.

ResponseType

integer

None.

ResponseObject

Collection of GetGames_Result

None.

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<BaseResponseOfArrayOfGetGames_ResultRXS7htwG 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/BetGames.Online.Bo.BetGamesReadOnly">
    <d2p1:GetGames_Result>
      <d2p1:GameID>1</d2p1:GameID>
      <d2p1:GameName>sample string 2</d2p1:GameName>
    </d2p1:GetGames_Result>
    <d2p1:GetGames_Result>
      <d2p1:GameID>1</d2p1:GameID>
      <d2p1:GameName>sample string 2</d2p1:GameName>
    </d2p1:GetGames_Result>
  </ResponseObject>
  <ResponseType>2</ResponseType>
</BaseResponseOfArrayOfGetGames_ResultRXS7htwG>