GET api/tournaments/getcashouttournaments

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

BO.BETResponseObjects.Tournament.ApiCashOutTournamentResponse
NameDescriptionTypeAdditional information
ResponseObject

Collection of BO.Models.Tournament.CashOutTournament

None.

ResponseType

integer

None.

ResponseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "responseObject": [
    {
      "tournamentID": 1,
      "fK_TournamentID": 2
    },
    {
      "tournamentID": 1,
      "fK_TournamentID": 2
    }
  ],
  "responseType": 1,
  "responseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ApiCashOutTournamentResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ResponseObject>
    <CashOutTournament>
      <TournamentID>1</TournamentID>
      <FK_TournamentID>2</FK_TournamentID>
    </CashOutTournament>
    <CashOutTournament>
      <TournamentID>1</TournamentID>
      <FK_TournamentID>2</FK_TournamentID>
    </CashOutTournament>
  </ResponseObject>
  <ResponseType>1</ResponseType>
  <ResponseMessage>sample string 2</ResponseMessage>
</ApiCashOutTournamentResponse>