create_release
Schedule and deploy content releases in Storyblok CMS by specifying branches, publish times, timezones, and notifying users. Simplifies content management workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branches_to_deploy | No | ||
name | Yes | ||
publish_at | No | ||
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"
},
"name": {
"type": "string"
},
"publish_at": {
"type": "string"
},
"timezone": {
"type": "string"
},
"users_to_notify_ids": {
"items": {
"type": "number"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}