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

# List Tasks

List all tasks with optional filtering.

<Note>
  External Documentation

  To learn more, visit the [SuperOps documentation](https://developer.superops.com/it#query-getTaskList).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter        | Description                                                                                                                                                                                                                                                                                                                                                                                                                                       |
  | ---------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Condition        | A JSON object representing the condition to filter the results. for more information please refer to [SuperOps documentation](https://developer.superops.com/it#definition-RuleConditionInput).<br /><br />**For example:**<br /><pre><code>\{<br />  "attribute": "technician.email",<br />  "operator": "includes",<br />  "value": \["[user1@acme.com](mailto:user1@acme.com)", "[user2@acme.com](mailto:user2@acme.com)"]<br />}</code></pre> |
  | Page             | The page number to retrieve.                                                                                                                                                                                                                                                                                                                                                                                                                      |
  | Page Size        | The maximum number of records to return per page.                                                                                                                                                                                                                                                                                                                                                                                                 |
  | Return All Pages | Automatically fetch all resources, page by page.                                                                                                                                                                                                                                                                                                                                                                                                  |
  | Sort             | A JSON list representing the sorting criteria to apply to the results.<br /><br />**For example:**<br /><pre><code>\[<br />  \{<br />    "attribute": "name",<br />    "order": "ASC",<br />    "emptyAtLast": true<br />  }<br />]</code></pre>                                                                                                                                                                                                  |
</div>

## Example Output

```json theme={"dark"}
{
	"data": {
		"getTaskList": {
			"tasks": [
				{
					"taskId": "6029612596599734272",
					"displayId": "1",
					"title": "New task",
					"description": "<p>Task</p>",
					"status": "Completed",
					"estimatedTime": 0,
					"scheduledStartDate": null,
					"dueDate": null,
					"overdue": false,
					"actualStartDate": "2026-05-17T01:06",
					"actualEndDate": "2026-05-17T01:06",
					"technician": {
						"userId": "5208564077838036992",
						"name": "test"
					},
					"techGroup": {
						"groupId": "6028845043904430080",
						"name": "Level 2 Support"
					},
					"workItem": {
						"workId": "6028892715369644032",
						"displayId": "7",
						"module": "TICKET"
					},
					"taskOrder": 3
				}
			],
			"listInfo": {
				"page": 1,
				"pageSize": 1,
				"sort": null,
				"condition": null,
				"hasMore": true,
				"totalCount": 7
			}
		}
	}
}
```

## Workflow Library Example

[List Tasks with Superops and Send Results Via Email](https://library.blinkops.com/workflows/list-tasks-with-superops-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/list-tasks-with-superops-and-send-results-via-email/canvas" />
</div>
