create_release
Schedule and manage new releases in Storyblok spaces by setting names, deployment branches, notification recipients, and release timings with timezone support.
Instructions
Creates a new release in a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branches_to_deploy | No | ||
name | Yes | ||
release_at | No | ||
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"
},
"name": {
"title": "Name",
"type": "string"
},
"release_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Release At"
},
"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": [
"name"
],
"title": "create_releaseArguments",
"type": "object"
}