Skip to main content
GET
/
v1
/
monitoring
/
alerts
curl "https://api.vouchmark.com/v1/monitoring/alerts?status=unread" \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": {
    "alerts": [
      {
        "alertId": "al_aBcD...",
        "vendorId": "cmp_aBcD...",
        "companyName": "TEKCIFY TECHNOLOGIES LTD",
        "eventId": "evt_aBcDeFgH...",
        "severity": "HIGH",
        "title": "TIN status changed",
        "isRead": false,
        "createdAt": "2026-05-11T18:42:00Z"
      }
    ],
    "total": 1,
    "hasMore": false
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.vouchmark.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns the alert inbox for the authenticated user — the same feed shown in the dashboard’s monitoring sidebar. Alerts are derived from monitoring events; one event can fan out to multiple recipients via team membership.

Query

status
string
default:"unread"
unread, read, or all.
page
integer
default:"1"
limit
integer
default:"25"
curl "https://api.vouchmark.com/v1/monitoring/alerts?status=unread" \
  -H "Authorization: Bearer $TOKEN"
{
  "success": true,
  "data": {
    "alerts": [
      {
        "alertId": "al_aBcD...",
        "vendorId": "cmp_aBcD...",
        "companyName": "TEKCIFY TECHNOLOGIES LTD",
        "eventId": "evt_aBcDeFgH...",
        "severity": "HIGH",
        "title": "TIN status changed",
        "isRead": false,
        "createdAt": "2026-05-11T18:42:00Z"
      }
    ],
    "total": 1,
    "hasMore": false
  }
}

Mark as read

curl -X PATCH https://api.vouchmark.com/v1/monitoring/alerts/al_aBcD.../read \
  -H "Authorization: Bearer $TOKEN"
Returns the updated alert with isRead: true and a readAt timestamp.