get_posts
Retrieve posts from a Canny feedback board with filtering options for status, search terms, and sorting to manage customer feedback effectively.
Instructions
Get posts from a specific Canny board with optional filtering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boardId | Yes | ID of the board to fetch posts from | |
limit | No | Number of posts to retrieve | |
search | No | Search term to filter posts | |
skip | No | Number of posts to skip for pagination | |
sort | No | Sort order for posts | |
status | No | Filter by post status |
Input Schema (JSON Schema)
{
"properties": {
"boardId": {
"description": "ID of the board to fetch posts from",
"type": "string"
},
"limit": {
"default": 10,
"description": "Number of posts to retrieve",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"search": {
"description": "Search term to filter posts",
"type": "string"
},
"skip": {
"default": 0,
"description": "Number of posts to skip for pagination",
"minimum": 0,
"type": "number"
},
"sort": {
"description": "Sort order for posts",
"enum": [
"newest",
"oldest",
"relevance",
"trending"
],
"type": "string"
},
"status": {
"description": "Filter by post status",
"enum": [
"open",
"under review",
"planned",
"in progress",
"complete",
"closed"
],
"type": "string"
}
},
"required": [
"boardId"
],
"type": "object"
}