update-task-text
Modify task titles in Sunsama by providing the task ID and new text to update task descriptions and keep project information current.
Instructions
Update the text/title of a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limitResponsePayload | No | Whether to limit the response payload size | |
| recommendedStreamId | No | Recommended stream ID (optional) | |
| taskId | Yes | The ID of the task to update | |
| text | Yes | The new text/title for the task |
Input Schema (JSON Schema)
{
"properties": {
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"recommendedStreamId": {
"description": "Recommended stream ID (optional)",
"type": [
"string",
"null"
]
},
"taskId": {
"description": "The ID of the task to update",
"minLength": 1,
"type": "string"
},
"text": {
"description": "The new text/title for the task",
"minLength": 1,
"type": "string"
}
},
"required": [
"taskId",
"text"
],
"type": "object"
}