Blog
Update Blog
Update a blog's metadata. Permitted fields: name, seo_title, seo_description, seo_image_id, theme_id.
patch/blogs/{id}
Path parameters
idstring required
Request body
Example request
{
"blog": {
"blog": {
"name": "My Updated Blog",
"seo_title": "My Blog - Latest Articles",
"seo_description": "Read our latest articles and updates.",
"seo_image_id": null,
"theme_id": 5
}
}
}Response
OK
Example response
{
"id": 1,
"public_id": "aBcDeF",
"workspace_id": 42000,
"site_id": 10,
"name": "My Blog",
"current_path": "/blog",
"url": "https://myworkspace.myclickfunnels.com/blog",
"theme_id": 5,
"style_id": null,
"seo_image_id": null,
"seo_title": "My Blog - Latest Articles",
"seo_description": "Read our latest articles and updates.",
"created_at": "2025-01-01T00:00:00.000Z",
"updated_at": "2025-01-01T00:00:00.000Z"
}