GET v2/networks/{networkid}/playoffs/{id}
Return a specific playoff data object by playoff id
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | playoff id |
Define this parameter in the request URI. |
networkid | network id |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{ "id": "sample string 1", "league_id": "sample string 2", "teams_count": 3, "playoffs_type": 0, "name": "sample string 4", "third_place_game": true, "allow_select_position": true, "select_start_date": "2024-11-21T03:43:04.0975349-06:00", "stagger_select_time": 8, "bracket_style": 0, "bracket_display": 0, "bracket_settings": 0, "completed_game_display_style": 0, "show_seed": true, "num_of_levels": 10 }
application/xml, text/xml
Sample:
<PlayoffDtoV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.API.DTO.V2"> <allow_select_position>true</allow_select_position> <bracket_display>LongBracket</bracket_display> <bracket_settings>Show</bracket_settings> <bracket_style>Normal</bracket_style> <completed_game_display_style>Show</completed_game_display_style> <id>sample string 1</id> <league_id>sample string 2</league_id> <name>sample string 4</name> <num_of_levels>10</num_of_levels> <playoffs_type>SingleElemination</playoffs_type> <select_start_date>2024-11-21T03:43:04.0975349-06:00</select_start_date> <show_seed>true</show_seed> <stagger_select_time>8</stagger_select_time> <teams_count>3</teams_count> <third_place_game>true</third_place_game> </PlayoffDtoV2>