update_article
Modify existing Joomla articles by updating content, titles, metadata, and text formatting to keep website information current and accurate.
Instructions
Update an existing article on the Joomla website.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ||
| convert_plain_text | No | ||
| fulltext | No | ||
| introtext | No | ||
| metadesc | No | ||
| title | No |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"title": "Article Id",
"type": "integer"
},
"convert_plain_text": {
"default": true,
"title": "Convert Plain Text",
"type": "boolean"
},
"fulltext": {
"default": null,
"title": "Fulltext",
"type": "string"
},
"introtext": {
"default": null,
"title": "Introtext",
"type": "string"
},
"metadesc": {
"default": null,
"title": "Metadesc",
"type": "string"
},
"title": {
"default": null,
"title": "Title",
"type": "string"
}
},
"required": [
"article_id"
],
"type": "object"
}