action pandascore_get_tournaments_tournament_id_or_slug_players { label: "Get players for a tournament" description: "List players for the given tournament" provider: pandascore method: GET path: "/tournaments/{tournament_id_or_slug}/players" encoding: json input: { type: "object" properties: { filter: { type: "object" properties: { birth_year: { type: "array" items: { type: "number" description: "Not present if the client did not subscribe to the appropriate plan." } } birthday: { type: "array" items: { type: "string" description: "Not present if the client did not subscribe to the appropriate plan." } } first_name: { type: "array" items: { type: "string" } } hometown: { type: "array" items: { type: "string" } } id: { type: "array" items: { type: "integer" } } last_name: { type: "array" items: { type: "string" } } name: { type: "array" items: { type: "string" } } nationality: { type: "array" items: { type: "string" } } role: { type: "array" items: { type: "string" } } slug: { type: "array" items: { type: "string" } } team_id: { type: "array" items: { type: "integer" } } videogame_id: { type: "array" items: { type: "integer" description: "A videogame ID" enum: [1, 3, 4, 14, 20, 22, 23, 24, 25, 26] } } } additionalProperties: false } range: { type: "object" properties: { birth_year: { type: "array" items: { type: "number" description: "Not present if the client did not subscribe to the appropriate plan." } } birthday: { type: "array" items: { type: "string" description: "Not present if the client did not subscribe to the appropriate plan." } } first_name: { type: "array" items: { type: "string" } } hometown: { type: "array" items: { type: "string" } } id: { type: "array" items: { type: "integer" } } last_name: { type: "array" items: { type: "string" } } name: { type: "array" items: { type: "string" } } nationality: { type: "array" items: { type: "string" } } role: { type: "array" items: { type: "string" } } slug: { type: "array" items: { type: "string" } } } additionalProperties: false } search: { type: "object" properties: { birthday: { type: "string" description: "Not present if the client did not subscribe to the appropriate plan." } first_name: { type: "string" } hometown: { type: "string" } last_name: { type: "string" } name: { type: "string" } nationality: { type: "string" } role: { type: "string" } slug: { type: "string" } } additionalProperties: false } sort: { type: "array" items: { enum: ["birth_year", "-birth_year", "birthday", "-birthday", "first_name", "-first_name", "hometown", "-hometown", "id", "-id", "last_name", "-last_name", "name", "-name", "nationality", "-nationality", "role", "-role", "slug", "-slug", "videogame_id", "-videogame_id", "team_id", "-team_id"] type: "object" } } tournament_id_or_slug: { type: "string" } } required: ["tournament_id_or_slug"] additionalProperties: false } output: { type: "object" additionalProperties: true } }