retrieve_multiple_discussions
Fetch and filter multiple discussions for a specific Storyblok story by ID, with optional pagination and status filters to organize and analyze feedback efficiently.
Instructions
Retrieves multiple discussions for a specific story in a Storyblok space.
- story_id: Numeric ID of the story.
- per_page: Number of discussions per page (default: 25, max: 100).
- page: Page number to retrieve (default: 1).
- by_status: Filter discussions by status (e.g., 'unsolved', 'solved').
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_status | No | ||
page | No | ||
per_page | No | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"by_status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "By Status"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 25,
"title": "Per Page"
},
"story_id": {
"title": "Story Id",
"type": "integer"
}
},
"required": [
"story_id"
],
"title": "retrieve_multiple_discussionsArguments",
"type": "object"
}