update_release
Modify an existing release in a Storyblok space by updating its name, scheduled release time, branches to deploy, user notifications, or release status.
Instructions
Updates an existing release in a specified Storyblok space.
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)
{
"properties": {
"branches_to_deploy": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Branches To Deploy"
},
"do_release": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Do Release"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"release_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Release At"
},
"release_id": {
"title": "Release Id",
"type": "integer"
},
"timezone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Timezone"
},
"users_to_notify_ids": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Users To Notify Ids"
}
},
"required": [
"release_id"
],
"title": "update_releaseArguments",
"type": "object"
}