faceit_getQueuesByEntityFilters
List queues for a FACEIT game by filtering with entity type and ID to find specific queues.
Instructions
Retrieve queues by filters on FACEIT
Use to list queues for a game with arbitrary entity filters. If you already know the region use getQueuesByRegion; if you know the queue_id use getQueueById.
Endpoint: GET /games/{game_id}/queues
Parameters:
game_id (path, str, required): The id of the game
entity_type (query, str, required): The type of the entity
entity_id (query, str, required): The id of the entity
offset (query, int | None (min 0)): The starting item position
limit (query, int | None (min 1, max 20)): The number of items to return
Returns: Queues list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| game_id | Yes | ||
| entity_type | Yes | ||
| entity_id | Yes | ||
| offset | No | ||
| limit | No |