Get pending claims for admin review. Admin only.
Parameters
Output
Encoding
application/jsonclaims
array
Required
No description available.
cursor
string
Optional
Pagination cursor for next page
hasMore
boolean
Required
Whether more results are available
Errors
AuthenticationRequired
Forbidden
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": "Forbidden"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"claims",
"hasMore"
],
"properties": {
"claims": {
"type": "array",
"items": {
"ref": "#claimRequest",
"type": "ref"
}
},
"cursor": {
"type": "string",
"description": "Pagination cursor for next page"
},
"hasMore": {
"type": "boolean",
"description": "Whether more results are available"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of claims to return"
},
"cursor": {
"type": "string",
"description": "Pagination cursor"
},
"maxScore": {
"type": "integer",
"maximum": 100,
"minimum": 0,
"description": "Maximum match score filter (0-100)"
},
"minScore": {
"type": "integer",
"maximum": 100,
"minimum": 0,
"description": "Minimum match score filter (0-100)"
}
}
},
"description": "Get pending claims for admin review. Admin only."
}