Update entry
documentedUpdate an entry.
PATCH /spaces/{space_id}/entries/{entry_id}Entriesno implementation yet0 runsNo 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}}"}]'