Per-user side and permission set for a team match
GET
/api/v1/team-matches/{id}/me
const url = 'https://internal.myscore.live/api/v1/api/v1/team-matches/tmm_abc123/me';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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/team-matches/tmm_abc123/me \ --header 'Authorization: Bearer <token>'Returns the caller’s side (home/guest/none) and the list of allowed actions (submit-lineup, approve, etc.) for this match. Used by the frontend to drive captain/TP/admin UI.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Example
tmm_abc123Team match ID
Responses
Section titled “ Responses ”User side + per-action booleans
Unauthorized
Team match not found