Sign in

Update entry

documented

Update an entry.

PATCH /spaces/{space_id}/entries/{entry_id}Entriesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.contentful.com/spaces/{{$space_id}}/entries/{{$entry_id}}" \
  -X PATCH \
  -H "Authorization: Bearer {{CONTENTFUL_MANAGEMENT_TOKEN}}" \
  -H "Content-Type: application/json-patch+json" \
  -H "Accept: application/json" \
  -H "X-Contentful-Version: {{$version}}" \
  -d '[{"op":"replace","path":"/fields/title/en-US","value":"{{$title}}"},{"op":"replace","path":"/fields/description/en-US","value":"{{$description}}"}]'
Update entry · Contentful · OpenIntegrations