get_task_by_id
Retrieve detailed information about a specific task in OmniFocus using either its ID or name, enabling precise task management and tracking.
Instructions
Get information about a specific task by ID or name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | No | The ID of the task to retrieve | |
taskName | No | The name of the task to retrieve (alternative to taskId) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskId": {
"description": "The ID of the task to retrieve",
"type": "string"
},
"taskName": {
"description": "The name of the task to retrieve (alternative to taskId)",
"type": "string"
}
},
"type": "object"
}