update_release
Modify release details in Storyblok CMS, including name, deployment branches, scheduled release time, timezone, and user notifications, using the connected AI tools.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branches_to_deploy | No | ||
| do_release | No | ||
| name | No | ||
| release_at | No | ||
| release_id | Yes | ||
| timezone | No | ||
| users_to_notify_ids | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"branches_to_deploy": {
"items": {
"type": "number"
},
"type": "array"
},
"do_release": {
"type": "boolean"
},
"name": {
"type": "string"
},
"release_at": {
"type": "string"
},
"release_id": {
"type": "string"
},
"timezone": {
"type": "string"
},
"users_to_notify_ids": {
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"release_id"
],
"type": "object"
}