> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Task

View information about a task. You can only view task information of tasks you can access.

<Note>
  External Documentation

  To learn more, visit the [ClickUp documentation](https://clickup.com/api/clickupreference/operation/GetTask/).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                        |
  | --------- | ------------------------------------------------------------------ |
  | Task ID   | The ID of the task. Can be retrieved from the `List Tasks` action. |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter       | Description                                                                     |
  | --------------- | ------------------------------------------------------------------------------- |
  | Custom Task IDs | If you want to reference a task by its custom task id, this value must be true. |
  | Team ID         | Only used when the `Custom Task IDs` parameter is set to true.                  |
</div>

## Example Output

```json theme={"dark"}
{
	"id": "<string>",
	"custom_id": "<string>",
	"custom_item_id": 1,
	"name": "<string>",
	"text_content": "<string>",
	"description": "<string>",
	"status": {
		"id": "<string>",
		"status": "<string>",
		"color": "<string>",
		"orderindex": 2,
		"type": "<string>"
	},
	"orderindex": "<string>",
	"date_created": "<string>",
	"date_updated": "<string>",
	"date_closed": null,
	"date_done": null,
	"archived": false,
	"creator": {
		"id": 75660565,
		"username": "<string>",
		"color": "<string>",
		"email": "<string>",
		"profilePicture": null
	},
	"assignees": [
		{
			"id": 30203573,
			"username": "<string>",
			"color": "<string>",
			"initials": "<string>",
			"email": "<string>",
			"profilePicture": null
		}
	],
	"group_assignees": [],
	"watchers": [
		{
			"id": 108561465,
			"username": "<string>",
			"color": "<string>",
			"initials": "<string>",
			"email": "<string>",
			"profilePicture": null
		}
	],
	"checklists": [],
	"tags": [],
	"parent": null,
	"top_level_parent": null,
	"priority": null,
	"due_date": null,
	"start_date": null,
	"points": null,
	"time_estimate": null,
	"time_spent": 40986902,
	"custom_fields": [
		{
			"id": "<string>",
			"name": "<string>",
			"type": "<string>",
			"type_config": {
				"options": [
					{
						"id": "<string>",
						"name": "<string>",
						"color": "<string>",
						"orderindex": 0
					},
					{
						"id": "<string>",
						"name": "<string>",
						"color": "<string>",
						"orderindex": 1
					}
				]
			},
			"date_created": "<string>",
			"hide_from_guests": false,
			"required": false
		},
		{
			"id": "<string>",
			"name": "<string>",
			"type": "<string>",
			"type_config": {},
			"date_created": "<string>",
			"hide_from_guests": false,
			"required": false
		}
	],
	"dependencies": [],
	"linked_tasks": [],
	"locations": [],
	"team_id": "<string>",
	"url": "<string>",
	"sharing": {
		"public": false,
		"public_share_expires_on": null,
		"public_fields": [
			"<string>",
			"<string>"
		],
		"token": null,
		"seo_optimized": false
	},
	"permission_level": "<string>",
	"list": {
		"id": "<string>",
		"name": "<string>",
		"access": true
	},
	"project": {
		"id": "<string>",
		"name": "<string>",
		"hidden": false,
		"access": true
	},
	"folder": {
		"id": "<string>",
		"name": "<string>",
		"hidden": false,
		"access": true
	},
	"space": {
		"id": "<string>"
	},
	"attachments": []
}
```

## Workflow Library Example

[Get Task with Clickup and Send Results Via Email](https://library.blinkops.com/workflows/get-task-with-clickup-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-task-with-clickup-and-send-results-via-email/canvas" />
</div>
