get_branch_stories
Retrieve stories from a specific branch in Storyblok CMS by specifying the branch ID, pagination, and sorting options for efficient content management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
page | No | ||
per_page | No | ||
sort_by | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"sort_by": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}