faceit_getOrganizerChampionships
Retrieve a list of championships for a known organizer using their ID, with options to filter published ones, paginate results, and sort by creation date.
Instructions
Retrieve all championships of an organizer
Use to list championships run by a known organizer, optionally restricted to published ones.
Endpoint: GET /organizers/{organizer_id}/championships
Parameters:
organizer_id (path, str, required): The id of the organizer
published_only (query, bool | None): When set to true only published championships are retrieved
offset (query, int | None (min 0)): The starting item position
limit (query, int | None (min 1, max 100)): The number of items to return
sort (query, str | None): Sorting criteria for retrieved championships, supports +createdAt, -createdAt
Returns: Championships list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| organizer_id | Yes | ||
| published_only | No | ||
| offset | No | ||
| limit | No | ||
| sort | No |