GET
/
matchmaker
/
tickets
List all active (queued) tickets for a matchmaker
curl --request GET \
  --url https://backend.computeflow.cloud/matchmaker/tickets \
  --header 'api-key: <api-key>'
[
  {
    "ticket_id": "a1b2c3d4-e5f6-7890-1234-567890abcdef",
    "player_id": "player_123",
    "matchmaker_id": "c0c17d62-890e-4788-83e0-f16be8db4901",
    "status": "In Queue",
    "created_at": 1678886400000,
    "elo": 1250,
    "gameBuild": "Build_1.2.3",
    "regions": [
      "NA-East",
      "EU-West"
    ],
    "match": {}
  }
]

Authorizations

api-key
string
header
required

Headers

api-key
string
required

API key for authentication

client-auth-token
string

Optional client authentication token for player validation

Query Parameters

matchmaker_name
string
required

Name of the matchmaker

matchmaker_id
string
required

Response

200
application/json

A list of active tickets

The response is of type object[].