Delete a draft document.
Input
Encoding
application/jsontid
string
Required
TID of the draft to delete.
Output
Encoding
application/jsonsuccess
boolean
Required
No description available.
Errors
DraftNotFound
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": [
"tid"
],
"properties": {
"tid": {
"type": "string",
"description": "TID of the draft to delete."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "DraftNotFound"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean"
}
}
},
"encoding": "application/json"
},
"description": "Delete a draft document."
}