create-story-comment
Add comments to Shortcut stories to provide updates, share feedback, or document progress within your project management workflow.
Instructions
Create a comment on a story
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public ID of the story | |
| text | Yes | The text of the comment |
Input Schema (JSON Schema)
{
"properties": {
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
},
"text": {
"description": "The text of the comment",
"minLength": 1,
"type": "string"
}
},
"required": [
"storyPublicId",
"text"
],
"type": "object"
}