For the complete documentation index, see llms.txt. This page is also available as Markdown.

Importing Public Status Page Subscribers

By default public status page subscribers need to confirm their subscription in the channel that they have subscribed too - a confirmation notification is send at creation.

When moving from other providers to ilert, you might want to migrate your existing subscribers that have already opted-in to their channels - without bothering your customers / subscribers with a resubscription.

You may use the public status page subscription bulk API for this operation:

Send a POST request to

https://api.ilert.com/api/status-pages/{status-page-id}/subscribers_bulk?import=true
[
    {
        "target": "+49171123123", // EMAIL, PHONE NUMBER, URL
        "type": "SMS" // EMAIL, SMS, WEBHOOK
        "locale": "en-GB", // en-GB | de-DE
        "services": [1, 2, 3] // optional list of service (id) restrictions (just leave out the whole key if not needed)
    },
    ...
]

Visit the web UI (Status page -> Subscribers tab) to confirm your import.

Last updated

Was this helpful?