update-task
Modify task details in Shortcut stories including description, assignees, and completion status to keep project work organized and current.
Instructions
Update a task in a story
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public ID of the story | |
| taskPublicId | Yes | The public ID of the task | |
| taskDescription | No | The description of the task | |
| taskOwnerIds | No | Array of user IDs to assign as owners of the task | |
| isCompleted | No | Whether the task is completed or not |
Input Schema (JSON Schema)
{
"properties": {
"isCompleted": {
"description": "Whether the task is completed or not",
"type": "boolean"
},
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
},
"taskDescription": {
"description": "The description of the task",
"type": "string"
},
"taskOwnerIds": {
"description": "Array of user IDs to assign as owners of the task",
"items": {
"type": "string"
},
"type": "array"
},
"taskPublicId": {
"description": "The public ID of the task",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId",
"taskPublicId"
],
"type": "object"
}