retrieve_multiple_releases
Retrieve multiple releases from a specified Storyblok space by providing the space ID and optional branch ID, enabling efficient management of content versions.
Instructions
Retrieves multiple releases from a specified Storyblok space.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch_id | No | ||
space_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Branch Id"
},
"space_id": {
"title": "Space Id",
"type": "integer"
}
},
"required": [
"space_id"
],
"title": "retrieve_multiple_releasesArguments",
"type": "object"
}