create_branch
Generate branches in Storyblok CMS for content management, enabling structured workflows by specifying name, source ID, URL, and position for organized content operations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
position | No | ||
source_id | No | ||
url | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"position": {
"type": "number"
},
"source_id": {
"type": [
"number",
"null"
]
},
"url": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}