Mailriser is in open beta. Learn more.

Mailriser Documentation

Documentation/Webhooks/Webhook Events
Webhook Events
Learn about the different webhook events that can be triggered.

Webhooks will send different data depending on what the event was.

Let's go through each event and see what data is sent.

New Subscriber Event

This event is sent when a new subscriber subscribes to one of your lists.

Keep in mind that this event is sent when a subscriber is created, not when a subscriber confirms their subscription.

The payload looks like this:

{
    "event": "subscriber_created",
    "signature": "",
    "data": {
        "uuid": "00000000-0000-0000-0000-000000000000",
        "email": "",
        "listUuid": "00000000-0000-0000-0000-000000000000"
    }
}

New Unsubscriber Event

This event is sent when a subscriber unsubscribes from one of your lists.

The payload looks like this:

{
    "event": "subscriber_unsubscribed",
    "signature": "",
    "data": {
        "uuid": "00000000-0000-0000-0000-000000000000",
        "email": "",
        "listUuid": "00000000-0000-0000-0000-000000000000"
    }
}

New Subscriber Confirmation Event

This event is sent when a subscriber confirms their subscription after a double opt-in email.

The payload looks like this:

{
    "event": "subscriber_confirmed",
    "signature": "",
    "data": {
        "uuid": "00000000-0000-0000-0000-000000000000",
        "email": "",
        "listUuid": "00000000-0000-0000-0000-000000000000"
    }
}