Update Plone Content
plone_update_contentModify metadata, title, description, or block structure of existing content items in Plone. Use with predefined block layouts for complex updates.
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 | |
| description | No | New description | |
| blocks | No | Volto blocks structure for the content | |
| 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). |