retrieve_multiple_branches
Retrieve multiple branches from a Storyblok space using the Management API, with options to filter by branch IDs or search for specific branch names.
Instructions
Retrieves multiple branches (pipelines) in a Storyblok space via the Management API.
- by_ids: Optional comma-separated list of branch IDs to filter.
- search: Optional filter term for branch names.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_ids | No | ||
search | No |
Input Schema (JSON Schema)
{
"properties": {
"by_ids": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Ids"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
}
},
"title": "retrieve_multiple_branchesArguments",
"type": "object"
}