Approve a pending claim request. Admin only.
Parameters
Output
Encoding
application/jsonsuccess
boolean
Required
Whether the approval was successful
Errors
AuthenticationRequired
Authentication is required to approve claims Forbidden
Only administrators can approve claims ClaimNotFound
The specified claim does not exist Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"errors": [
{
"name": "AuthenticationRequired",
"description": "Authentication is required to approve claims"
},
{
"name": "Forbidden",
"description": "Only administrators can approve claims"
},
{
"name": "ClaimNotFound",
"description": "The specified claim does not exist"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"description": "Whether the approval was successful"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"claimId"
],
"properties": {
"claimId": {
"type": "integer",
"minimum": 1,
"description": "ID of the claim request to approve"
}
}
},
"description": "Approve a pending claim request. Admin only."
}