List all bracket positions with assigned players
GET
/api/v1/draws/{id}/positions
const url = 'https://internal.myscore.live/api/v1/api/v1/draws/draw_abc123/positions';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://internal.myscore.live/api/v1/api/v1/draws/draw_abc123/positionsReturns all first-round positions with player assignments for the draw.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
draw_abc123Draw ID
Responses
Section titled “ Responses ”List of positions
Draw not found