This webhook is triggered when a person opts out.

_eventType
string
required

The type of event. For this webhook, it is always person.opted_out.

email
string
required

The email address of the person who has opted out.

optedOut
boolean
required

Indicates the opt-out status. A value of true means the person has opted out; false means they have opted in.

updatedAt
string
required

The timestamp when the opt-out status was updated, in ISO 8601 format.

Example Payload:

{
  "_eventType": "person.opted_out",
  "email": "dev@rallyuxr.com",
  "optedOut": true,
  "updatedAt": "2024-09-01T00:00:00.000Z"
}