copy_stories_between_branches
Transfer specific stories from one branch to another in Storyblok CMS. Simplify content management by duplicating stories across branches with defined source and target IDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| source_branch_id | Yes | ||
| story_ids | Yes | ||
| target_branch_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"source_branch_id": {
"type": "string"
},
"story_ids": {
"items": {
"type": "number"
},
"type": "array"
},
"target_branch_id": {
"type": "string"
}
},
"required": [
"source_branch_id",
"target_branch_id",
"story_ids"
],
"type": "object"
}