List all Alerts

Returns a list of configured alerts.

Path Params
uuid
required
^[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$

ID of your ControlUp organization. You can find your organization ID on the API Key Management page in the DEX platform.

Query Params
int32
≥ 1
Defaults to 1

The page of results to return.
The first page is page number 1.

int32
≥ 1
Defaults to 10

The number of results returned per page.

string
Defaults to id

Sorts results according to the specified field.

string
enum
Defaults to asc

The sort order (ascending / descending) of the field specified by the _sortBy parameter.

Allowed:
string

A search filter that is applied to all fields.
Only results that contain the specified string are returned.

string

JSON filter for narrowing results. Send this value as a URL-encoded JSON string.

Example:

%7B%22and%22%3A%20%5B%7B%22filter%22%3A%20%7B%22key%22%3A%20%22type%22%2C%20%22op%22%3A%20%22equals%22%2C%20%22value%22%3A%20%22anomaly%22%7D%7D%2C%7B%22filter%22%3A%20%7B%22key%22%3A%20%22severity%22%2C%20%22op%22%3A%20%22equals%22%2C%20%22value%22%3A%20%22low%22%7D%7D%5D%7D

Decoded value:

{
  "and": [
    {
      "filter": {
        "key": "type",
        "op": "equals",
        "value": "anomaly"
      }
    },
    {
      "filter": {
        "key": "severity",
        "op": "equals",
        "value": "low"
      }
    }
  ]
}
Responses

Language
Credentials
Bearer
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json