get-task-by-id
Retrieve a specific task from Sunsama using its unique ID to access detailed task information and manage individual task data.
Instructions
Get a specific task by its ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The ID of the task to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The ID of the task to retrieve",
"minLength": 1,
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}