Test Your Webhook Integration

Simulate different webhook events by sending test emails.

Send to specific emails in Integration Mode to safely simulate different events without affecting your domain reputation. These addresses support labeling to help you differentiate between test. Simply add a label after the + to track and differentiate test scenarios (e.g., [email protected])

Test delivered event

To test the Delivered event, you can send an email to:

[email protected]

If you want to test with labeling, you can use the following addresses:

[email protected]

[email protected]

[email protected]

After sending the email, you’ll receive a webhook response like this:

{
  "Type": "Delivered",
  "CreatedAt": "2025-10-30T13:29:50+00:00",
  "MessageId": "346e6a88-2b7c-4353-be30-ea76ddeb2171",
  "Data": {
    "To": "[email protected]",
    "From": "[email protected]",
    "Id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "CustomerReference": "Integration Mode"
  }
}

Test opened event

To test the Opened event, you can send an email to:

[email protected]

If you want to test with labeling, you can use the following addresses:

[email protected]

[email protected]

[email protected]

After sending the email, you’ll receive a webhook response like this:

{
  "Type": "Opened",
  "CreatedAt": "2025-10-30T13:30:23+00:00",
  "MessageId": "ad6b794f-beb1-4654-b8da-a199f8c962db",
  "Data": {
    "To": "[email protected]",
    "From": "[email protected]",
    "Id": "c4f9a8e2-1d5b-4c3a-9f7e-6b2d8a1c4e9f",
    "CustomerReference": "Integration Mode"
  }
}

Test clicked event

To test the Clicked event, you can send an email to:

[email protected]

If you want to test with labeling, you can use the following addresses:

[email protected]

[email protected]

[email protected]

After sending the email, you’ll receive a webhook response like this:

{
  "Type": "Clicked",
  "CreatedAt": "2025-10-30T13:30:30+00:00",
  "MessageId": "81ca440b-298f-4cea-a326-8863f8ac81a4",
  "Data": {
    "To": "[email protected]",
    "From": "[email protected]",
    "Id": "5e3d7f2a-9c1b-4a8e-b6d4-3f7c2a9e1b5d",
    "CustomerReference": "Integration Mode"
  }
}

Test bounced event

To test the Bounced event, you can send an email to:

[email protected]

If you want to test with labeling, you can use the following addresses:

[email protected]

[email protected]

[email protected]

After sending the email, you’ll receive a webhook response like this:

{
  "Type": "Bounced",
  "CreatedAt": "2025-10-30T13:30:15+00:00",
  "MessageId": "433253a6-4b94-4a49-81a3-4f3b308f0bb2",
  "Data": {
    "To": "[email protected]",
    "From": "[email protected]",
    "Id": "8a2c6e1f-4b9d-4327-a5e8-9c1f3b7d2a4e",
    "CustomerReference": "Integration Mode",
    "Bounce": {
      "Type": "Bounced",
      "SubType": "IntegrationMode",
      "Message": "Integration Mode webhook bounce simulation"
    }
  }
}

Test unsubscribed event

To test the Unsubscribed event, you can send an email to:

[email protected]

If you want to test with labeling, you can use the following addresses:

[email protected]

[email protected]

[email protected]

After sending the email, you’ll receive a webhook response like this:

{
  "Type": "Unsubscribed",
  "CreatedAt": "2025-10-30T13:30:39+00:00",
  "MessageId": "9b8222ad-7753-4f68-8b3d-950fd3a61e87",
  "Data": {
    "To": "[email protected]",
    "From": "[email protected]",
    "Id": "1f5a9c3e-7b2d-4684-9a1c-5e8f2b4d7a3c",
    "CustomerReference": "Integration Mode",
    "Unsubscribe": {
      "UnsubscribeType": "IntegrationMode",
      "UnsubscribeReason": "Integration Mode webhook unsubscribe simulation"
    }
  }
}

Test complained event

To test the Complained event, you can send an email to:

[email protected]

If you want to test with labeling, you can use the following addresses:

[email protected]

[email protected]

[email protected]

After sending the email, you’ll receive a webhook response like this:

{
  "Type": "Complained",
  "CreatedAt": "2025-10-30T13:30:50+00:00",
  "MessageId": "1ae1c544-2f35-429c-a475-0ddeaaec4226",
  "Data": {
    "To": "[email protected]",
    "From": "[email protected]",
    "Id": "6d4b8f1a-3c5e-4792-b1d9-7a2e4c6f8b1d",
    "CustomerReference": "Integration Mode"
  }
}