List the games a player is part of — ones they started and ones they were invited to — newest first.
Parameters
Output
application/jsoncursor
string
Optional
Cursor for the next page, absent if no more results.
games
array
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"games"
],
"properties": {
"games": {
"type": "array",
"items": {
"ref": "#gameSummary",
"type": "ref"
}
},
"cursor": {
"type": "string",
"maxLength": 512,
"description": "Cursor for the next page, absent if no more results."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of games to return."
},
"cursor": {
"type": "string",
"maxLength": 512,
"description": "Pagination cursor."
},
"player": {
"type": "string",
"format": "did",
"description": "Whose games to list. Defaults to the authenticated caller."
}
}
},
"description": "List the games a player is part of — ones they started and ones they were invited to — newest first."
}