Approve or deny a verification request. Admin only. On approval, writes verification records from the verifier account.
Input
Encoding
application/jsonreason
string
Optional
No description available.
maxGraphemes: 3000 graphemesrequestId
string
Required
No description available.
status
string
Required
No description available.
Output
Encoding
application/jsonrequestId
string
Required
No description available.
verificationUri
stringat-uri
Optional
URI of the dev.cartridge.graph.verification record, present on approval.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"requestId",
"status"
],
"properties": {
"reason": {
"type": "string",
"maxGraphemes": 3000
},
"status": {
"type": "string",
"knownValues": [
"approved",
"denied"
]
},
"requestId": {
"type": "string"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"requestId"
],
"properties": {
"requestId": {
"type": "string"
},
"verificationUri": {
"type": "string",
"format": "at-uri",
"description": "URI of the dev.cartridge.graph.verification record, present on approval."
}
}
},
"encoding": "application/json"
},
"description": "Approve or deny a verification request. Admin only. On approval, writes verification records from the verifier account."
}