create_story
Generate and publish structured stories in Storyblok CMS, enabling users to define name, slug, content, and metadata for streamlined content creation and management.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| alternates | No | ||
| content | Yes | ||
| default_root | No | ||
| disble_fe_editor | No | ||
| expire_at | No | ||
| favourite_for_user_ids | No | ||
| group_id | No | ||
| is_folder | No | ||
| is_scheduled | No | ||
| is_startpage | No | ||
| meta_data | No | ||
| name | Yes | ||
| parent_id | No | ||
| path | No | ||
| pinned | No | ||
| position | No | ||
| publish_at | No | ||
| published | No | ||
| scheduled_dates | No | ||
| slug | Yes | ||
| sort_by_date | No | ||
| tag_list | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"alternates": {
"items": {},
"type": "array"
},
"content": {
"additionalProperties": {},
"type": "object"
},
"default_root": {
"type": "string"
},
"disble_fe_editor": {
"type": "boolean"
},
"expire_at": {
"type": "string"
},
"favourite_for_user_ids": {
"items": {
"type": "number"
},
"type": "array"
},
"group_id": {
"type": "string"
},
"is_folder": {
"type": "boolean"
},
"is_scheduled": {
"type": "boolean"
},
"is_startpage": {
"type": "boolean"
},
"meta_data": {},
"name": {
"type": "string"
},
"parent_id": {
"type": "number"
},
"path": {
"type": "string"
},
"pinned": {
"type": "boolean"
},
"position": {
"type": "number"
},
"publish_at": {
"type": "string"
},
"published": {
"type": "boolean"
},
"scheduled_dates": {
"type": "string"
},
"slug": {
"type": "string"
},
"sort_by_date": {
"type": "string"
},
"tag_list": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"slug",
"content"
],
"type": "object"
}