Skip to main content

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 all tasks with optional filtering.
External DocumentationTo learn more, visit the SuperOps documentation.

Parameters

ParameterDescription
ConditionA JSON object representing the condition to filter the results. for more information please refer to SuperOps documentation.

For example:
{
“attribute”: “technician.email”,
“operator”: “includes”,
“value”: [“user1@acme.com”, “user2@acme.com”]
}
PageThe page number to retrieve.
Page SizeThe maximum number of records to return per page.
Return All PagesAutomatically fetch all resources, page by page.
SortA JSON list representing the sorting criteria to apply to the results.

For example:
[
{
“attribute”: “name”,
“order”: “ASC”,
“emptyAtLast”: true
}
]

Example Output

{
	"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
Workflow LibraryPreview this Workflow on desktop