delete-task
Remove tasks permanently from your Sunsama workspace using task IDs to maintain organized workflows and eliminate completed or unnecessary items.
Instructions
Delete a task permanently
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limitResponsePayload | No | Whether to limit response size | |
taskId | Yes | The ID of the task to delete | |
wasTaskMerged | No | Whether the task was merged before deletion |
Input Schema (JSON Schema)
{
"properties": {
"limitResponsePayload": {
"description": "Whether to limit response size",
"type": "boolean"
},
"taskId": {
"description": "The ID of the task to delete",
"minLength": 1,
"type": "string"
},
"wasTaskMerged": {
"description": "Whether the task was merged before deletion",
"type": "boolean"
}
},
"required": [
"taskId"
],
"type": "object"
}