List user warnings
Parameters
Output
Encoding
application/jsontotal
integer
Required
Total warnings
warnings
array
Required
Warning records
Errors
AuthenticationRequired
AdminRequired
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "AuthenticationRequired"
},
{
"name": "AdminRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"warnings",
"total"
],
"properties": {
"total": {
"type": "integer",
"description": "Total warnings"
},
"warnings": {
"type": "array",
"items": {
"ref": "#warning",
"type": "ref"
},
"description": "Warning records"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "Filter by user DID"
},
"limit": {
"type": "integer",
"default": 50,
"maximum": 100,
"minimum": 1,
"description": "Maximum number of warnings"
}
}
},
"description": "List user warnings"
}