Vigilfield Docs
API referenceAlerts

`GET /alerts` — the alerts you may see.

GET/alerts

Newest first by the time each alert opened. Only alerts you may see. A page may hold fewer than limit alerts, even none, while next_cursor is set: follow it until it is null. There is no total.

Query Parameters

status?string

Comma-separated: one or more of open, acknowledged, resolved

severity?string

One of informational, low, medium, high, critical

origin?string

rule or system, or one origin: rule: or system:

cursor?string

The previous page's next_cursor

limit?integer

A whole number; 50 when absent, at most 100

Formatint32
Range0 <= value

Response Body

application/json

curl -X GET "https://example.com/alerts"
{  "data": [    {      "delivery_failed": [        "string"      ],      "description": "string",      "first_seen": "string",      "hit_count": 0,      "id": "string",      "key": "string",      "last_seen": "string",      "latest_row": null,      "origin": "string",      "severity": "informational",      "source": {        "class": "rule",        "result_table_id": "string",        "rule_id": "string",        "run_id": "string"      },      "status": "open",      "title": "string"    }  ],  "next_cursor": "string"}