# Re-subscribe email Remove an email from your unsubscribe list, allowing them to receive emails again. Re-subscribe Scope: - Global: Omit domain_id query param to remove from global unsubscribe list - Domain-specific: Include domain_id query param to remove domain-specific unsubscribe Important: Only do this when: - The recipient has explicitly requested to be re-subscribed - You have documented proof of their consent - You comply with applicable consent regulations (GDPR, CAN-SPAM, etc.) Use cases: - Processing re-subscription requests from users - Honoring preference center updates - Correcting accidental unsubscribes Endpoint: DELETE /api/customer/unsubscribes/{email} Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `email` (string, required) Email address to re-subscribe (URL encoded) ## Query parameters: - `domain_id` (string) Optional - Specify domain ID to remove domain-specific unsubscribe. Omit to remove global unsubscribe. ## Response 200 fields (application/json): - `message` (string) Example: "Email re-subscribed successfully" - `email` (string) ## Response 401 fields (application/json): - `error` (string) Error code or message ## Response 404 fields (application/json): - `error` (string) Example: "Not found" - `message` (string)