article_update
Update an existing article with new title, body, excerpt, or metadata such as description, path, image, tags, and custom data. Autosaves content fields; updates metadata directly.
Instructions
Update an existing article. Title/body/excerpt go to autosaved_* per Voog convention (the public fields are read-only — call article_publish to push autosaved → published). description/path/image_id/tag_names/data are non-autosaved fields and update directly. At least one field must be supplied.
data field is sent via PATCH (merge semantics) — only the keys you pass are touched. To delete a key, use article_delete_data. Calls without data route via PUT as before.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site | Yes | ||
| article_id | Yes | ||
| title | No | ||
| body | No | ||
| excerpt | No | ||
| description | No | ||
| path | No | ||
| image_id | No | ||
| tag_names | No | ||
| data | No |