Skip to main content

Delete a post

Method: DELETE

URL: https://example.com/<MIXPOST_CORE_PATH>/api/<workspaceUuid>/posts/{postUuid}

Authorization: Bearer <token>

Body:

{
"trash": false
}
KeyFormatRequiredDescription
trashbooleanSet true to move the item to trash; set false to delete it permanently. Default: false.

Response:

Permanently deleted:

{
"deleted": true
}

Moved to trash:

{
"to_trash": true
}