create_article
Create a blog article with title, summary, HTML content, image URLs, and category IDs to populate blog pages. The backend generates the id and slug automatically.
Instructions
Create a blog article so blog/post pages (post-list, grid-blog, post-overlay) have content. Built via the dashboard command pipeline: title + optional summary, HTML content, image URLs, and category linkage. Pass category_ids from create_blog_category / list articles' categories so the post shows up under those categories (it is also auto-filed under the default category). Image URLs must be hosted (search_images / upload_images). The backend generates the id and slug.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Article title | |
| images | No | Hosted image URLs; the first is the cover image | |
| content | No | HTML content of the post | |
| summary | No | Short summary / excerpt | |
| category_ids | No | Blog category IDs to file the post under (from create_blog_category) |