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 alerts 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": {
		"getAlertList": {
			"alerts": [
				{
					"id": "5150178940650622977",
					"message": "Low Disk Space",
					"createdTime": "2021-12-18T15:35",
					"status": "Resolved",
					"severity": "Critical",
					"description": "Actual free disk space at 2021-12-18T10:05 UTC is [c: : 17.0%] Alert condition:  Disk free space is less than 30.0% for 10 minutes",
					"asset": {
						"name": "Michael's Desktop",
						"assetId": "4293925678745489408",
						"owner": {
							"name": "Micheal Scott",
							"email": "micheal.scott@dundermifflin.com"
						},
						"client": {
							"accountId": "6027178065955405824",
							"name": "winkops"
						},
						"site": {
							"id": "6028532731314192384",
							"name": "Michigan"
						}
					},
					"policy": {
						"name": "Low Disk Space",
						"policyType": "Hardware Performance Monitoring"
					},
					"resolvedTime": null
				}
			],
			"listInfo": {
				"page": 1,
				"pageSize": 1,
				"sort": null,
				"condition": null,
				"hasMore": true,
				"totalCount": 5
			}
		}
	}
}

Workflow Library Example

List Alerts with Superops and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop