Skip to main content
DELETE
/
publisher
/
{publisher_id}
/
post
/
{post_id}
/
live-blog-update
/
{id}
Delete Live Blog Update
curl --request DELETE \
  --url https://cms.thepublive.com/publisher/{publisher_id}/post/{post_id}/live-blog-update/{id}/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "message": "Deleted successfully!"
}
Permanently deletes a live blog update entry from a LiveBlog post.
Warning: This action cannot be undone. The update entry will be permanently removed.
This endpoint only applies to posts with type: "LiveBlog".
publisher_id
string
required
Your Publisher ID
post_id
integer
required
The post ID of the LiveBlog
id
integer
required
The ID of the live blog update entry to delete

Example request

curl --request DELETE \
  --url 'https://cms.thepublive.com/publisher/3466/post/4477638/live-blog-update/90589/' \
  --header 'Authorization: Basic <BASE64_AUTH_TOKEN>'
{
  "status": "success",
  "message": "Deleted successfully!"
}
Last modified on April 21, 2026