article_update
Update an existing article by modifying its title, body, excerpt, description, path, image, tags, or data. At least one field is required; data fields are merged via PATCH.
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 |