Skip to content

Update a Release

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/releases/:release_id

This endpoint allows you to update a release using the numeric ID.

  • :space_id required number

    Numeric ID of a space

  • :release_id required number

    Numeric ID of the release

  • release The Release Object
  • do_release boolean

    Set true to deploy the release

curl "https://mapi.storyblok.com/v1/spaces/606/releases/123" \
-X PUT \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"do_release\":true,\"release\":{\"branches_to_deploy\":[123,456],\"name\":\"Summer Special\",\"release_at\":\"2025-01-01 01:01\"}}"