get_task
Fetch a specific task from ClickUp using its task ID. Supports custom task IDs when team ID is provided.
Instructions
Get a specific task by ID.
Parameters:
request: GetTaskRequest with task_id, custom_task_ids, and team_id Returns: Task details from ClickUp API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Task ID | |
| name | Yes | Task name | |
| description | No | Task description | |
| status | No | Task status | |
| priority | No | Task priority | |
| assignees | No | Task assignees | |
| tags | No | Task tags | |
| due_date | No | Due date as Unix timestamp | |
| created_at | No | Creation timestamp | |
| updated_at | No | Last update timestamp | |
| url | No | Task URL | |
| list_id | No | Parent list ID | |
| space_id | No | Parent space ID | |
| folder_id | No | Parent folder ID |