Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once.
Input
application/jsonverifications
array
Required
Array of verification requests to process
maxLength: 100 itemsOutput
application/jsonfailedVerifications
array
Required
No description available.
verifications
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": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"verifications"
],
"properties": {
"verifications": {
"type": "array",
"items": {
"ref": "#verificationInput",
"type": "ref"
},
"maxLength": 100,
"description": "Array of verification requests to process"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"verifications",
"failedVerifications"
],
"properties": {
"verifications": {
"type": "array",
"items": {
"ref": "tools.ozone.verification.defs#verificationView",
"type": "ref"
}
},
"failedVerifications": {
"type": "array",
"items": {
"ref": "#grantError",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"description": "Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once."
}