update_post
Modify existing feedback posts in Canny by updating titles, descriptions, categories, status, or custom fields to keep customer feedback current and organized.
Instructions
Update an existing Canny post
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryId | No | New category ID for the post (optional) | |
customFields | No | Updated custom field values (optional) | |
details | No | New description for the post (optional) | |
postId | Yes | ID of the post to update | |
status | No | New status for the post (optional) | |
title | No | New title for the post (optional) |
Input Schema (JSON Schema)
{
"properties": {
"categoryId": {
"description": "New category ID for the post (optional)",
"type": "string"
},
"customFields": {
"additionalProperties": true,
"description": "Updated custom field values (optional)",
"type": "object"
},
"details": {
"description": "New description for the post (optional)",
"type": "string"
},
"postId": {
"description": "ID of the post to update",
"type": "string"
},
"status": {
"description": "New status for the post (optional)",
"enum": [
"open",
"under review",
"planned",
"in progress",
"complete",
"closed"
],
"type": "string"
},
"title": {
"description": "New title for the post (optional)",
"type": "string"
}
},
"required": [
"postId"
],
"type": "object"
}