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

# Remove from suppression list

> Remove an email address from the suppression list. This allows the email to receive emails again.



## OpenAPI

````yaml DELETE /suppressions/{id}
openapi: 3.1.0
info:
  title: SendKit API
  description: The SendKit API allows you to send transactional emails programmatically.
  version: 1.0.0
servers:
  - url: https://api.sendkit.dev
security:
  - bearerAuth: []
paths:
  /suppressions/{id}:
    delete:
      tags:
        - Suppressions
      summary: Remove from suppression list
      description: >-
        Remove an email address from the suppression list. This allows the email
        to receive emails again.
      operationId: deleteSuppression
      parameters:
        - name: id
          in: path
          required: true
          description: The suppression entry ID.
          schema:
            type: string
            format: uuid
      responses:
        '204':
          description: Suppression entry removed successfully
        '401':
          description: Unauthorized — missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Suppression entry not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        name:
          type: string
          description: Error type identifier.
          example: validation_error
        message:
          type: string
          description: Human-readable error message.
          example: The from address domain is not verified.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from your SendKit dashboard. Pass it as a Bearer token in the
        Authorization header.

````