Approve a pending elevation request. Only accessible by administrators.
Input
Encoding
application/jsonrequestId
string
Required
ID of the elevation request to approve
verificationNotes
string
Optional
Optional admin verification notes
Output
Encoding
application/jsonSchema#elevationResult
Errors
AuthenticationRequired
Unauthorized
NotFound
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"
],
"properties": {
"requestId": {
"type": "string",
"description": "ID of the elevation request to approve"
},
"verificationNotes": {
"type": "string",
"description": "Optional admin verification notes"
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "Unauthorized"
},
{
"name": "NotFound"
}
],
"output": {
"schema": {
"ref": "#elevationResult",
"type": "ref"
},
"encoding": "application/json"
},
"description": "Approve a pending elevation request. Only accessible by administrators."
}