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

# Reactivate a Suppressed Recipient

> Removes a recipient from your suppression list so it can receive mail again. The change applies to the next send.

A recipient suppressed because of a spam complaint cannot be reactivated here — that recipient asked their mailbox provider to block you, so removing it is handled by support.

**Sample Code**



## OpenAPI

````yaml /openapi-emailapi.json delete /v1/transactional-email/suppressions
openapi: 3.1.0
info:
  title: Mailercloud Email API
  version: 1.0.0
  description: Transactional and personalized email sending — the Mailercloud API Platform.
servers:
  - url: https://email-api.mailercloud.com
security:
  - apiKey: []
tags:
  - name: Email
paths:
  /v1/transactional-email/suppressions:
    delete:
      tags:
        - Email
      summary: Reactivate a Suppressed Recipient
      description: >-
        Removes a recipient from your suppression list so it can receive mail
        again. The change applies to the next send.


        A recipient suppressed because of a spam complaint cannot be reactivated
        here — that recipient asked their mailbox provider to block you, so
        removing it is handled by support.


        **Sample Code**
      operationId: reactivate-suppression
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - email
              properties:
                email:
                  type: string
                  format: email
                  description: The address to reactivate.
                  example: one@example.com
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    type: string
                    format: email
                  reactivated:
                    type: boolean
              example:
                email: one@example.com
                reactivated: true
        '400':
          description: >-
            The address is not on the suppression list, or is a spam complaint
            that must be handled by support.
        '401':
          description: Authorization failed.
      servers:
        - url: https://cloudapi.mailercloud.com
          description: Suppression endpoints are served on the main API host.
      x-codeSamples:
        - lang: cURL
          source: >-
            curl -X DELETE
            https://cloudapi.mailercloud.com/v1/transactional-email/suppressions
            \
              -H "Authorization: YOUR_API_KEY" \
              -H "Content-Type: application/json" \
              -d '{"email": "one@example.com"}'
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Your Mailercloud API key (plain text, no Bearer prefix). Create keys in
        Settings → API.

````