create_story_scheduling
Schedule content publication in Storyblok CMS by defining story IDs and publish times, ensuring timely and organized content delivery across specified languages.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | ||
publish_at | Yes | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"language": {
"type": "string"
},
"publish_at": {
"type": "string"
},
"story_id": {
"type": "number"
}
},
"required": [
"story_id",
"publish_at"
],
"type": "object"
}