retrieve_multiple_comments
Fetch all comments from a specific discussion using Storyblok's Management API. Provide the discussion_id to retrieve associated comments efficiently.
Instructions
Retrieves all comments from a specific discussion via the Storyblok Management API.
- discussion_id: Numeric ID of the discussion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
discussion_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"discussion_id": {
"title": "Discussion Id",
"type": "integer"
}
},
"required": [
"discussion_id"
],
"title": "retrieve_multiple_commentsArguments",
"type": "object"
}