add-task-to-story
Add tasks to Shortcut stories with descriptions and assign owners to organize project work and track responsibilities.
Instructions
Add a task to a story
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public ID of the story | |
| taskDescription | Yes | The description of the task | |
| taskOwnerIds | No | Array of user IDs to assign as owners of the task |
Input Schema (JSON Schema)
{
"properties": {
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
},
"taskDescription": {
"description": "The description of the task",
"minLength": 1,
"type": "string"
},
"taskOwnerIds": {
"description": "Array of user IDs to assign as owners of the task",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"storyPublicId",
"taskDescription"
],
"type": "object"
}