create_article
Create new articles for your Joomla website by providing content, title, category, and publication settings to publish content directly to your site.
Instructions
Create a new article on the Joomla website.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_text | Yes | ||
category_id | No | ||
convert_plain_text | No | ||
published | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"article_text": {
"title": "Article Text",
"type": "string"
},
"category_id": {
"default": null,
"title": "Category Id",
"type": "integer"
},
"convert_plain_text": {
"default": true,
"title": "Convert Plain Text",
"type": "boolean"
},
"published": {
"default": true,
"title": "Published",
"type": "boolean"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"required": [
"article_text"
],
"type": "object"
}