create_post
Create a new feedback post in a Canny board with title, description, category, and custom fields to collect and organize customer feedback.
Instructions
Create a new post in a Canny board
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authorId | Yes | ID of the user creating the post | |
boardId | Yes | ID of the board to create the post in | |
categoryId | No | ID of the category for the post (optional) | |
customFields | No | Custom field values as key-value pairs (optional) | |
details | No | Detailed description of the post (optional) | |
title | Yes | Title of the post |
Input Schema (JSON Schema)
{
"properties": {
"authorId": {
"description": "ID of the user creating the post",
"type": "string"
},
"boardId": {
"description": "ID of the board to create the post in",
"type": "string"
},
"categoryId": {
"description": "ID of the category for the post (optional)",
"type": "string"
},
"customFields": {
"additionalProperties": true,
"description": "Custom field values as key-value pairs (optional)",
"type": "object"
},
"details": {
"description": "Detailed description of the post (optional)",
"type": "string"
},
"title": {
"description": "Title of the post",
"type": "string"
}
},
"required": [
"authorId",
"boardId",
"title"
],
"type": "object"
}