Replace space
documentedReplace a space resource.
PUT /spaces/{space_id}Spacesno 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}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/vnd.contentful.management.v1+json" \
-H "Accept: application/json" \
-H "X-Contentful-Version: {{$version}}" \
-d '{"name": "{{$space_name}}"}' \
# Source: Contentful Content Management API (PUT /spaces/{space_id} to update a space); base URL https://api.contentful.com; required headers include Content-Type and X-Contentful-Version. See CMA docs: https://www.contentful.com/developers/docs/references/content-management-api/