curl --request GET \
--url https://{subdomain}.nudj.cx/api/v2/admin/game-configs \
--header 'x-api-token: <api-key>'{
"totalCount": 123,
"edges": [
{
"id": "<string>",
"organisationId": "<string>",
"details": {
"title": "<string>",
"description": "<string>",
"light": {
"primaryImageUrl": "<string>",
"secondaryImageUrl": "<string>"
},
"dark": {
"primaryImageUrl": "<string>",
"secondaryImageUrl": "<string>"
}
},
"gameType": "memory",
"gameConfig": {},
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}Retrieve a paginated list of game configurations.
curl --request GET \
--url https://{subdomain}.nudj.cx/api/v2/admin/game-configs \
--header 'x-api-token: <api-key>'{
"totalCount": 123,
"edges": [
{
"id": "<string>",
"organisationId": "<string>",
"details": {
"title": "<string>",
"description": "<string>",
"light": {
"primaryImageUrl": "<string>",
"secondaryImageUrl": "<string>"
},
"dark": {
"primaryImageUrl": "<string>",
"secondaryImageUrl": "<string>"
}
},
"gameType": "memory",
"gameConfig": {},
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}The language to return the game configs in. If not provided, the default organisation language is used.
1 <= x <= 100x >= 0memory, catch Successful response
Show child attributes
The id of the game configuration
The organisation that the game configuration belongs to
The details of this game configuration such as title and description
Show child attributes
The title of the entity
The description of the entity
The type of game
memory, catch The date when this game configuration was created
The date when this game configuration was last updated
Was this page helpful?