Update Plone Content
plone_update_contentUpdate an existing Plone content item's metadata (title, description) or replace its Volto blocks structure. Use for modifying content properties or layout.
Instructions
Modifies an existing content item in Plone. Can update metadata (like title) and/or replace the entire block structure. Use plone_create_blocks_layout to prepare complex block updates or use the plone_add_single_block and plone_update_single_block tools for smaller changes. DO NOT edit the block structure directly. Example: plone_update_content({path: '/my-page', title: 'Updated Title'})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Path to the content to update | |
| title | No | New title | |
| blocks | No | Volto blocks structure for the content | |
| description | No | New description | |
| blocks_layout | No | Volto blocks layout configuration | |
| additionalFields | No | Additional fields to update. For preview images, include preview_image_link: { '@id': 'image-url' } in this object (if you get a 400 error, make sure the image URL is accessible). |