create-story-comment
Add comments to Shortcut stories programmatically by specifying the story ID and comment text, enabling streamlined collaboration and feedback integration.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}