Skip to main content
DELETE
/
publisher
/
{publisher_id}
/
post
/
{id}
Delete Post
curl --request DELETE \
  --url https://cms.thepublive.com/publisher/{publisher_id}/post/{id}/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "message": "Deleted successfully!"
}
Permanently deletes a post.
Warning: This action cannot be undone. The post and all its associated data will be permanently removed.
publisher_id
string
required
Your Publisher ID
id
integer
required
Post ID
{
  "status": "success",
  "message": "Deleted successfully!"
}