update_story_scheduling
Schedule or reschedule story publication in Storyblok CMS by specifying the story ID, publish date, and language for precise content management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
language | No | ||
publish_at | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"language": {
"type": "string"
},
"publish_at": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}