List verification requests. Admin only.
Parameters
Output
Encoding
application/jsoncursor
string
Optional
No description available.
requests
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": [
"requests"
],
"properties": {
"cursor": {
"type": "string"
},
"requests": {
"type": "array",
"items": {
"ref": "dev.cartridge.getVerificationRequest#verificationRequestView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 25,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"status": {
"type": "string",
"knownValues": [
"pending",
"approved",
"denied"
]
}
}
},
"description": "List verification requests. Admin only."
}