Skip to content

Retrieve Multiple Discussions

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/stories/:story_id/discussions

Returns an array of discussion objects present inside a particular story. This endpoint is paged and can be filtered by using page=1 , status and per_page=1 for retrieving discussions per page.

  • :space_id required number

    Numeric ID of a space

  • :story_id required number

    ID of the story

  • per_page number

    Default: 25. Max: 100. Learn more under Pagination.

  • page number

    Default: 1. Learn more under Pagination.

  • by_status string

    Filters discussions based on their status. You can use values like unsolved, or solved to retrieve discussions with specific statuses.

Request Example

curl "https://mapi.storyblok.com/v1/spaces/606/stories/1234/discussions?per_page=1&page=1&by_status=unsolved" \
-H "Authorization: YOUR_OAUTH_TOKEN"