Pulsar Docs

List Alerts

GET
/v1/alerts

This endpoint requires authentication — use the Login page at the top of the API Reference, or paste a token in the Authorization section below.

The company's whole merged alert list, sorted by name. No pagination or filters.

Authorization

bearerAuth user, superuser, admin, superadmin, readonly
Authorization<token>

In: header

Scope: user, superuser, admin, superadmin, readonly

Response Body

application/json

curl -X GET "https://example.com/v1/alerts"
{  "totals": {    "personas": 0.1,    "machines": 0.1  },  "alerts": [    {      "source": "legacy",      "id": "string",      "name": "string",      "isActive": true,      "priority": 0,      "machineIds": [        0.1      ],      "personaIds": [        "string"      ],      "trigger": {        "kind": "stop_time",        "comparator": "over",        "durationMinutes": 0.1,        "displayUnit": "min",        "labels": [          {            "kind": "general_cause",            "id": "string",            "name": "string"          }        ]      }    }  ]}