Subscribers API
View subscribers who have signed up for email notifications from your status page.
GET
/v1/organizations/{orgID}/subscribersList all email subscribers for an organization.
| Parameter | Type | Required | Description |
|---|---|---|---|
| orgID | string | Yes | Organization ID (URL parameter) |
Response (200 OK)
[
{
"id": "a1b2c3d4e5f6...",
"organization_id": "org_id_here",
"email": "subscriber@example.com",
"confirmed": true,
"created_at": "2026-02-20T10:30:00Z"
}
]Subscriber Object
id— unique subscriber identifierorganization_id— the organization they are subscribed toemail— subscriber's email addressconfirmed— whether the email has been confirmedcreated_at— when they subscribed
Info
Subscribers sign up from your public status page. They receive email notifications whenever an incident is created, updated, or resolved.
How Notifications Are Sent
When an incident event occurs, the core service creates notification records for each subscriber.
The alerter service polls for pending notifications every 10 seconds and sends emails via SMTP.
Each notification tracks its delivery status as pending, sent, or failed.