update_story_schedule
Modify the scheduled publish date and language for a Storyblok story using its space and scheduling IDs. Ensures timely and accurate content delivery across platforms.
Instructions
Updates an existing story schedule via the Storyblok Management API.
- space_id: Numeric ID of the Storyblok space.
- story_scheduling_id: Numeric ID of the schedule to update.
- publish_at: New ISOβ8601 UTC date/time string.
- language: Optional new language code.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ||
publish_at | No | ||
space_id | Yes | ||
story_scheduling_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Language"
},
"publish_at": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Publish At"
},
"space_id": {
"title": "Space Id",
"type": "integer"
},
"story_scheduling_id": {
"title": "Story Scheduling Id",
"type": "integer"
}
},
"required": [
"space_id",
"story_scheduling_id"
],
"title": "update_story_scheduleArguments",
"type": "object"
}