move_article_to_trash
Move Joomla articles to trash for temporary deletion while maintaining recovery options. Use this tool to remove articles without permanent deletion.
Instructions
Delete an article by moving to the trashed state on the Joomla website, allowing recovery.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ||
| expected_title | No |
Input Schema (JSON Schema)
{
"properties": {
"article_id": {
"title": "Article Id",
"type": "integer"
},
"expected_title": {
"default": null,
"title": "Expected Title",
"type": "string"
}
},
"required": [
"article_id"
],
"type": "object"
}