add_story_to_release
Assign a specific story to a designated release in Storyblok CMS, enabling efficient content management and version control through structured workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
release_id | Yes | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"release_id": {
"type": "string"
},
"story_id": {
"type": "string"
}
},
"required": [
"release_id",
"story_id"
],
"type": "object"
}