POST Event/GetWebApiOutRightsByTournament
Gets WebApiOutRights By Tournament
Request Information
URI Parameters
None.
Body Parameters
ApiTournamentEventBetTypeRequestFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| tournamentID |
Gets or sets the tournamentID identifier. |
integer |
None. |
| userID |
Gets or sets the user identifier. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"tournamentID": 1,
"userID": 2
}
application/xml, text/xml
Sample:
<ApiTournamentEventBetTypeRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models"> <userID>2</userID> <tournamentID>1</tournamentID> </ApiTournamentEventBetTypeRequestFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiGetWebApiOutRightsByTournamentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject |
Gets or sets the response object. |
Collection of ApiGetWebApiOutRightsByTournament |
None. |
| ResponseType |
Gets or sets the type of the response. |
integer |
None. |
| ResponseMessage |
Gets or sets the response message. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseObject": [
{
"EventID": 1,
"EventName": "sample string 2",
"EventNumber": 3,
"EventDateTime": "2025-12-06T06:54:23.2712771+02:00",
"BetTypeName": "sample string 5",
"EventBetTypeMapID": 6
},
{
"EventID": 1,
"EventName": "sample string 2",
"EventNumber": 3,
"EventDateTime": "2025-12-06T06:54:23.2712771+02:00",
"BetTypeName": "sample string 5",
"EventBetTypeMapID": 6
}
],
"ResponseType": 1,
"ResponseMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiGetWebApiOutRightsByTournamentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
<ResponseMessage>sample string 2</ResponseMessage>
<ResponseType>1</ResponseType>
<ResponseObject>
<ApiGetWebApiOutRightsByTournament>
<BetTypeName>sample string 5</BetTypeName>
<EventBetTypeMapID>6</EventBetTypeMapID>
<EventDateTime>2025-12-06T06:54:23.2712771+02:00</EventDateTime>
<EventID>1</EventID>
<EventName>sample string 2</EventName>
<EventNumber>3</EventNumber>
</ApiGetWebApiOutRightsByTournament>
<ApiGetWebApiOutRightsByTournament>
<BetTypeName>sample string 5</BetTypeName>
<EventBetTypeMapID>6</EventBetTypeMapID>
<EventDateTime>2025-12-06T06:54:23.2712771+02:00</EventDateTime>
<EventID>1</EventID>
<EventName>sample string 2</EventName>
<EventNumber>3</EventNumber>
</ApiGetWebApiOutRightsByTournament>
</ResponseObject>
</ApiGetWebApiOutRightsByTournamentResponse>