Skip to main content
PATCH
/
publisher
/
{publisher_id}
/
post
/
{post_id}
/
live-blog-update
/
{id}
Update Live Blog Update
curl --request PATCH \
  --url https://cms.thepublive.com/publisher/{publisher_id}/post/{post_id}/live-blog-update/{id}/ \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "content": "<string>"
}
'
{
  "status": 200,
  "message": "Updated Successfully",
  "data": {
    "id": 4,
    "published_post": 9878,
    "author": {
      "name": "PL",
      "slug": "PL",
      "description": "",
      "facebook": "",
      "linkedin": "",
      "instagram": "",
      "twitter": "",
      "avatar": "test_1/media/member_avatars/2025/06/04/2025-06-04t062423556z-2sb0dogg9lqdjohcy4zk-20b3e10e.webp"
    },
    "content": {
      "title": "Update test API 3",
      "content": "<p>Update testAPI</p>"
    },
    "created_at": "2026-04-13T18:00:51.784995+05:30",
    "updated_at": "2026-04-13T18:02:08.031108+05:30",
    "is_pinned": false,
    "Cache-Tags": [
      "PublishedPostComments.4",
      "RE-MD.135"
    ]
  }
}
Updates an existing live blog update entry. Only send the fields you want to change.
This endpoint only applies to posts with type: "LiveBlog". For other post types, use the Update Post endpoint.
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 update
title
string
Headline for this update entry
content
string
HTML body content for this update entry

Example request

curl --request PATCH \
  --url https://cms.thepublive.com/publisher/1/post/11075/live-blog-update/4/ \
  --header 'Authorization: Basic <BASE64_AUTH_TOKEN>' \
  --header 'Content-Type: application/json' \
  --data '{
    "title": "Update test API 3",
    "content": "<p>Update testAPI</p>"
}'
{
  "status": 200,
  "message": "Updated Successfully",
  "data": {
    "id": 4,
    "published_post": 9878,
    "author": {
      "name": "PL",
      "slug": "PL",
      "description": "",
      "facebook": "",
      "linkedin": "",
      "instagram": "",
      "twitter": "",
      "avatar": "test_1/media/member_avatars/2025/06/04/2025-06-04t062423556z-2sb0dogg9lqdjohcy4zk-20b3e10e.webp"
    },
    "content": {
      "title": "Update test API 3",
      "content": "<p>Update testAPI</p>"
    },
    "created_at": "2026-04-13T18:00:51.784995+05:30",
    "updated_at": "2026-04-13T18:02:08.031108+05:30",
    "is_pinned": false,
    "Cache-Tags": [
      "PublishedPostComments.4",
      "RE-MD.135"
    ]
  }
}