> ## 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.

# Show Task

Retrieve the status of a specific task.

<Note>
  External Documentation

  To learn more, visit the [Check Point Management documentation](https://sc1.checkpoint.com/documents/latest/APIs/#web/show-task~v2.0.1%20).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter     | Description                                                                                    |
  | ------------- | ---------------------------------------------------------------------------------------------- |
  | Details Level | The level of details to include in the response.                                               |
  | Task IDs      | A comma-separated list of task IDs to retrieve. Can be obtained using the `Show Tasks` action. |
</div>

## Example Output

```json theme={"dark"}
{
	"tasks": [
		{
			"name": "Install Policy",
			"uid": "01234567-89ab-cdef-0123-456789abcdef",
			"type": "task",
			"task-id": "01234567-89ab-cdef-0123-456789abcdef",
			"task-name": "Install Policy",
			"status": "in progress",
			"progress-percentage": 45,
			"progress-description": "Installing policy on gateway...",
			"start-time": {
				"iso-8601": "2023-06-27T12:00:00Z",
				"posix": 1687867200000
			},
			"last-update-time": {
				"iso-8601": "2023-06-27T12:05:00Z",
				"posix": 1687867500000
			},
			"suppressed": false,
			"comments": "Policy installation initiated by admin",
			"color": "black",
			"domain": {
				"name": "SMC User",
				"uid": "41e821a0-3720-11e3-aa6e-0800200c9fde",
				"domain-type": "domain"
			},
			"meta-info": {
				"creation-time": {
					"iso-8601": "2023-06-27T12:00:00Z",
					"posix": 1687867200000
				},
				"creator": "admin",
				"last-modifier": "admin",
				"last-modify-time": {
					"iso-8601": "2023-06-27T12:05:00Z",
					"posix": 1687867500000
				},
				"lock": "unlocked",
				"validation-state": "ok"
			},
			"read-only": true,
			"tags": [],
			"available-actions": {
				"edit": "false",
				"delete": "false",
				"clone": "false"
			}
		}
	]
}
```

## Workflow Library Example

[Show Task with Check Point Management and Send Results Via Email](https://library.blinkops.com/workflows/show-task-with-check-point-management-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/show-task-with-check-point-management-and-send-results-via-email/canvas" />
</div>
