update_blog_post
Modify and update existing blog posts in the DevHub CMS system by specifying the post ID, title, and content. Ensures accurate and timely content management.
Instructions
Update a single blog post
Args:
post_id: Blog post ID
title: Blog post title
content: HTML content of blog post. Should not include a <h1> tag, only h2+
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
post_id | Yes | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"default": null,
"title": "Content",
"type": "string"
},
"post_id": {
"title": "Post Id",
"type": "integer"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"required": [
"post_id"
],
"title": "update_blog_postArguments",
"type": "object"
}