update_entry
Update specific fields of a Contentful entry without overwriting others. Provide only the fields and locales to change, each value with a locale key. Merges with existing data.
Instructions
Update an existing entry. The handler will merge your field updates with the existing entry fields, so you only need to provide the fields and locales you want to change. IMPORTANT: All field values MUST include a locale key (e.g., 'en-US') for each value, like: { title: { 'en-US': 'My Updated Title' } }. Every field in Contentful requires a locale even for single-language content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entryId | Yes | ||
| fields | Yes | The fields to update with localized values. Example: { title: { 'en-US': 'My Updated Title' } } | |
| spaceId | Yes | The ID of the Contentful space. This must be the space's ID, not its name, ask for this ID if it's unclear. | |
| environmentId | Yes | The ID of the environment within the space, by default this will be called Master | master |