create_branch_deployment
Deploys specified releases to a branch within Storyblok CMS, enabling streamlined content updates and management through AI-driven workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_id | Yes | ||
release_uuids | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"branch_id": {
"type": "number"
},
"release_uuids": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"branch_id"
],
"type": "object"
}