update-task-stream
Change which stream or channel a task is assigned to in Sunsama. Use this tool to reorganize tasks by moving them between different project streams.
Instructions
Update the stream/channel assignment for a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limitResponsePayload | No | Whether to limit the response payload size | |
| streamId | Yes | Stream ID to assign to the task | |
| taskId | Yes | The ID of the task to update stream assignment for |
Input Schema (JSON Schema)
{
"properties": {
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"streamId": {
"description": "Stream ID to assign to the task",
"minLength": 1,
"type": "string"
},
"taskId": {
"description": "The ID of the task to update stream assignment for",
"minLength": 1,
"type": "string"
}
},
"required": [
"taskId",
"streamId"
],
"type": "object"
}