Get paginated game items from a list.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
items
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": [
"items"
],
"properties": {
"items": {
"type": "array",
"items": {
"ref": "#listItemView",
"type": "ref"
}
},
"cursor": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"listUri"
],
"properties": {
"limit": {
"type": "integer",
"default": 30,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"listUri": {
"type": "string",
"format": "at-uri",
"description": "The AT-URI of the list."
}
}
},
"description": "Get paginated game items from a list."
}