Definition

POST - webhooks/event/Panelist/Bounced

Occurs when an email to a Panelist bounced.

Required roles: Contacts (read)

Response information


Email

The bounced email address


Type string
BounceType

The reason why the email address bounced. This data is delivered to you as it is delivered to us by the email provider.


Type string
WebhookId

The id of the webhook which triggered this request


Type integer
EventName

The EventName which triggered this request


Type string
Links

HATEOAS related to this object. It wil contain relevant url's such as previous and next page for paged results, create/update/delete action. These url's can be used in your application for the next steps in your application logic.


Type Hateoas
Sample:
{
  "Email": "sample string 1",
  "BounceType": "sample string 2",
  "WebhookId": 3,
  "EventName": "sample string 4"
}
Sample:
<BounceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="i1" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/">
  <EventName>sample string 4</EventName>
  <WebhookId>3</WebhookId>
  <BounceType>sample string 2</BounceType>
  <Email>sample string 1</Email>
</BounceResult>