> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rallyuxr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Person Opted Out

This webhook is triggered when a person opts out.

<ParamField path="_eventType" type="string" required>
  The type of event. For this webhook, it is always `person.opted_out`.
</ParamField>

<ParamField path="email" type="string" required>
  The email address of the person who has opted out.
</ParamField>

<ParamField path="optedOut" type="boolean" required>
  Indicates the opt-out status. A value of `true` means the person has opted
  out; `false` means they have opted in.
</ParamField>

<ParamField path="updatedAt" type="string" format="date-time" required>
  The timestamp when the opt-out status was updated, in ISO 8601 format.
</ParamField>

**Example Payload:**

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