create_new_post
Publish a new blog post on Beehiiv by providing a publication ID, title, subtitle, and HTML content. Simplifies content creation through structured inputs.
Instructions
Create a new post using provided HTML content.
Args:
publication_id: ID of the publication
title: Title of the new post
subtitle: Subtitle of the new post
html_content: HTML content for the post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
html_content | Yes | ||
publication_id | Yes | ||
subtitle | Yes | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"html_content": {
"title": "Html Content",
"type": "string"
},
"publication_id": {
"title": "Publication Id",
"type": "string"
},
"subtitle": {
"title": "Subtitle",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"publication_id",
"title",
"subtitle",
"html_content"
],
"title": "create_new_postArguments",
"type": "object"
}