update_branch
Modify branch details in Storyblok CMS, including ID, name, source ID, URL, and position, to efficiently manage and organize content structures.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
name | No | ||
position | No | ||
source_id | No | ||
url | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"position": {
"type": "number"
},
"source_id": {
"type": [
"number",
"null"
]
},
"url": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}