create_discussion
Add collaborative discussion threads to Storyblok content blocks to facilitate team feedback and content review processes.
Instructions
Creates a new discussion for a story via the Storyblok Management API.
Required:
story_id: ID of the story
title: Title of the discussion field
fieldname: Technical name of the discussion field
block_uid: ID of the discussion block
component: Component/block name this discussion belongs to
lang: Language code (e.g., "default", "en")
message_json: Array of message objects [{"type": "text", "text": "...", "attrs": {...}}, ...]
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| story_id | Yes | ID of the story | |
| title | Yes | Title of the discussion field | |
| fieldname | Yes | Technical name of the discussion field | |
| block_uid | Yes | ID of the discussion block | |
| component | Yes | Component/block name this discussion belongs to | |
| lang | Yes | Language code (e.g., "default", "en") | |
| message_json | Yes | Array of message objects [{"type": "text", "text": "...", "attrs": {...}}, ...] |