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

# Subscriptions

> Manage subscription statuses, opt-ins, and double opt-in verification flows.

# Subscriptions

Track and manage subscriber consent and opt-in states in Mailofly.

## Subscription Statuses

* **Subscribed**: The contact is active and eligible to receive marketing broadcasts and campaign emails.
* **Unsubscribed**: The contact opted out via unsubscribe link or preference center. Marketing emails to this address are automatically blocked.
* **Pending Verification**: (Optional Double Opt-In) The contact has signed up but has not yet confirmed their email address.

## Managing Subscriptions via API

```bash theme={null}
# Opt out a contact
curl -X PATCH "https://api.mailofly.com/api/contacts/con_01J8G52XYZ" \
  -H "Authorization: Bearer mf_live_..." \
  -d '{ "unsubscribed": true }'
```


## Related topics

- [Delete Webhook](/api/webhooks/delete-webhook.md)
- [List Webhooks](/api/webhooks/list-webhooks.md)
- [Retrieve Contact](/api/contacts/get-contact.md)
- [Retrieve Webhook](/api/webhooks/get-webhook.md)
- [Create Webhook](/api/webhooks/create-webhook.md)
