List indexed reviews with pagination
Parameters
Output
Encoding
application/jsonitems
array
Optional
Review records
total
integer
Required
Total reviews
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"total"
],
"properties": {
"items": {
"type": "array",
"items": {
"ref": "#reviewSummary",
"type": "ref"
},
"description": "Review records"
},
"total": {
"type": "integer",
"description": "Total reviews"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of results"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
}
}
},
"description": "List indexed reviews with pagination"
}