Get Everhour task details
everhour_get_taskFetch an Everhour task by ID to get detailed time data including total tracked time, estimate, and per-user breakdown. Works with Asana tasks using the 'as:' prefix.
Instructions
Fetch a single Everhour task by ID, including total tracked time, estimate, and per-user time breakdown.
Args:
task_id (string): Everhour task ID. For Asana tasks: 'as:'
response_format ('markdown' | 'json'): Output format
Returns the full task object with name, projects, status, estimate (seconds), time.total (seconds), URL, etc.
Examples:
"Show task as:1208034567890123" → task_id='as:1208034567890123'
Error Handling:
404 → task not found / not synced into Everhour. Use everhour_find_task_by_asana_id to verify Asana mapping.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_id | Yes | Everhour task ID. For Asana-synced tasks the ID is 'as:<asanaGid>' (e.g. 'as:1208034567890123'). | |
| response_format | No | Output format: 'markdown' for human-readable text or 'json' for machine-readable structured data | markdown |