action pandascore_get_tournaments_tournament_id_or_slug_rosters { label: "Get rosters for a tournament" description: "List participants (player or team) for a given tournament." provider: pandascore method: GET path: "/tournaments/{tournament_id_or_slug}/rosters" encoding: json input: { type: "object" properties: { tournament_id_or_slug: { description: "A tournament ID or slug" type: "object" } } required: ["tournament_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }