retrieve_my_discussions
Access and filter discussions within a Storyblok space. Retrieve conversations by status, page, and items per page to manage interactions effectively.
Instructions
Retrieves discussions you're involved in within a Storyblok space.
- space_id: Numeric ID of the space.
- page: Page number (default 1).
- per_page: Items per page (default 25, max 100).
- by_status: Filter discussions by status ('unsolved' or 'solved').
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_status | No | ||
page | No | ||
per_page | No |
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"
}
},
"title": "retrieve_my_discussionsArguments",
"type": "object"
}