retrieve_multiple_story_schedules
Retrieve multiple story scheduling entries from a Storyblok space using the Management API, with optional filtering by status such as 'published_before_schedule' or 'scheduled'.
Instructions
Retrieves multiple story scheduling entries in a Storyblok space via the Management API.
- by_status: Optional status filter ("published_before_schedule" or "scheduled").
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_status | No | ||
space_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"by_status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Status"
},
"space_id": {
"title": "Space Id",
"type": "integer"
}
},
"required": [
"space_id"
],
"title": "retrieve_multiple_story_schedulesArguments",
"type": "object"
}