StatusDashboard
Overview

Get overview

Retrieve an operational snapshot for the tenant Overview dashboard.

View Markdown

GET /app/overview

Returns aggregate counts for the authenticated tenant's Overview page — email, SMS, WhatsApp, and integration notification usage, active published events, component health, and dashboard count. Available to admin, event, and subscriber roles.


Request

See API Basics for required headers.

This endpoint takes no request body or query parameters.


Sample request

curl https://api.statusdashboard.com/app/overview \
  -H "Authorization: Bearer bcf847abf5c6:def456"

Sample response

Status: 200 OK

{
  "emailMessages": {
    "month": "2026-06",
    "count": 42,
    "limit": 1000
  },
  "smsMessages": {
    "month": "2026-06",
    "count": 8,
    "limit": 50
  },
  "whatsappMessages": {
    "month": "2026-06",
    "count": 4,
    "limit": 50
  },
  "emailSubscribers": {
    "count": 12,
    "limit": 50
  },
  "smsSubscribers": {
    "count": 3,
    "limit": 5
  },
  "whatsappSubscribers": {
    "count": 2,
    "limit": 5
  },
  "integrations": {
    "messages": {
      "month": "2026-06",
      "count": 120,
      "limit": 1000
    },
    "endpoints": {
      "webhook": { "count": 2, "limit": 100 },
      "teams": { "count": 1, "limit": 100 },
      "gchat": { "count": 0, "limit": 100 }
    }
  },
  "events": {
    "activeIncidents": 1,
    "activeMaintenance": 0,
    "activeInformational": 2
  },
  "components": {
    "total": 15,
    "nonOperational": 3
  },
  "dashboards": {
    "count": 2
  }
}

Response fields

FieldTypeDescription
emailMessagesobjectMonthly event notification email usage
emailMessages.monthstringUTC calendar month key (YYYY-MM)
emailMessages.countnumberEmails sent this month
emailMessages.limitnumberPlan quota from enabledFeatures.emailMessages
smsMessagesobjectMonthly event notification SMS usage
smsMessages.monthstringUTC calendar month key (YYYY-MM)
smsMessages.countnumberSMS messages sent this month
smsMessages.limitnumberPlan quota from enabledFeatures.smsMessages
whatsappMessagesobjectMonthly event notification WhatsApp usage
whatsappMessages.monthstringUTC calendar month key (YYYY-MM)
whatsappMessages.countnumberWhatsApp template messages sent this month
whatsappMessages.limitnumberPlan quota from enabledFeatures.whatsappMessages
emailSubscribersobjectUnique email subscriber usage vs plan limit
emailSubscribers.countnumberUnique email subscribers in the org
emailSubscribers.limitnumberPlan quota from enabledFeatures.emailSubscribers (0 when email is not enabled)
smsSubscribersobjectUnique SMS subscriber usage vs plan limit
smsSubscribers.countnumberUnique SMS subscribers in the org
smsSubscribers.limitnumberPlan quota from enabledFeatures.smsSubscribers (0 when SMS is not enabled)
whatsappSubscribersobjectUnique WhatsApp subscriber usage vs plan limit
whatsappSubscribers.countnumberUnique WhatsApp subscribers in the org
whatsappSubscribers.limitnumberPlan quota from enabledFeatures.whatsappSubscribers (0 when WhatsApp is not enabled)
integrationsobjectOutbound integration endpoints and combined delivery usage
integrations.messagesobjectMonthly outbound HTTP deliveries (webhook, Teams, Google Chat, and Slack combined)
integrations.messages.monthstringUTC calendar month key (YYYY-MM)
integrations.messages.countnumberDeliveries reserved this month
integrations.messages.limitnumberOrganization limit integrationMessages (0 when integrations are not entitled)
integrations.endpoints.webhookobjectUnique webhook endpoint count vs organization limit
integrations.endpoints.teamsobjectUnique Teams endpoint count vs organization limit
integrations.endpoints.gchatobjectUnique Google Chat endpoint count vs organization limit
integrations.endpoints.slackobjectUnique Slack channel count vs organization limit
integrations.endpoints.*.countnumberUnique endpoints registered for that channel
integrations.endpoints.*.limitnumberOrganization limit for the channel (webhookEndpoints, teamsEndpoints, gchatEndpoints, slackChannels); 0 when integrations are not entitled
eventsobjectCounts of published, active (unresolved) events
events.activeIncidentsnumberPublished incidents not in a final workflow phase
events.activeMaintenancenumberPublished maintenance events in progress
events.activeInformationalnumberPublished informational events currently active
componentsobjectOrg-wide component health summary
components.totalnumberTotal components
components.nonOperationalnumberComponents whose currentStatus is not Operational
dashboardsobjectStatus dashboard summary
dashboards.countnumberTotal status dashboards in the org

Field notes

emailMessages — Counts event notification emails only. Subscription verify/manage emails are exempt. When the monthly limit is reached, new notifications are not delivered and are not retried.

smsMessages — Counts event notification SMS messages only. Subscription verify/manage SMS are exempt. When the monthly limit is reached, new notifications are not delivered and are not retried.

whatsappMessages — Counts event notification WhatsApp template messages only. Subscription verify/manage templates are exempt. When the monthly limit is reached, new notifications are not delivered and are not retried.

integrations.messages — Counts outbound HTTP deliveries for webhook, Teams, Google Chat, and Slack as one organization limit. Endpoint caps are separate organization limits per channel.

events — Only published events in an active (unresolved) state are counted. Draft events are excluded.


Error responses

StatusWhen
500Internal server error

On this page

We use cookies

We use essential cookies to keep the site working, and optional analytics cookies to understand how it's used. Read our Privacy Policy.