WebhookBounceRecipientPayload
BOUNCE_RECIPIENT webhook payload. Sent to your webhook url endpoint via HTTP POST when an email caused a bounce to occur for a recipient. Save the recipient to a ban list of your server and avoid email them again.
Properties
Name | Type | Description | Notes |
messageId | String | Idempotent message ID. Store this ID locally or in a database to prevent message duplication. | |
webhookId | UUID | ID of webhook entity being triggered | |
eventName | EventNameEnum | Name of the event type webhook is being triggered for. | |
webhookName | String | Name of the webhook being triggered | [optional] |
recipient | String | Email address that caused a bounce. Make note of the address and try not to message it again to preserve your reputation. | |
Enum: EventNameEnum
Name | Value |
EMAIL_RECEIVED | "EMAIL_RECEIVED" |
NEW_EMAIL | "NEW_EMAIL" |
NEW_CONTACT | "NEW_CONTACT" |
NEW_ATTACHMENT | "NEW_ATTACHMENT" |
EMAIL_OPENED | "EMAIL_OPENED" |
EMAIL_READ | "EMAIL_READ" |
BOUNCE | "BOUNCE" |
BOUNCE_RECIPIENT | "BOUNCE_RECIPIENT" |