No description available.
Input
Encoding
application/jsonid
string
Required
No description available.
maxLength: 64 bytesOutput
Encoding
application/jsondeleted
boolean
Required
No description available.
Errors
AuthRequired
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": [
"id"
],
"properties": {
"id": {
"type": "string",
"maxLength": 64
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthRequired"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"deleted"
],
"properties": {
"deleted": {
"type": "boolean",
"const": true
}
}
},
"encoding": "application/json"
}
}