Delete a scheduled post. Only PENDING posts can be deleted.
Input
Encoding
application/jsonid
string
Required
Post ID to delete.
maxLength: 100 bytesOutput
Encoding
application/jsonsuccess
boolean
Required
Deletion success flag.
Errors
PostNotFound
PostNotPending
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": 100,
"description": "Post ID to delete."
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "PostNotFound"
},
{
"name": "PostNotPending"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"success"
],
"properties": {
"success": {
"type": "boolean",
"const": true,
"description": "Deletion success flag."
}
}
},
"encoding": "application/json"
},
"description": "Delete a scheduled post. Only PENDING posts can be deleted."
}