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

# Remove suppression

> Removes an address from the suppression list. Future sends to this
address will no longer be blocked. Use with caution — suppressed
addresses were blocked for a reason.




## OpenAPI

````yaml /openapi.yaml delete /api/v1/suppressions/{address}
openapi: 3.0.3
info:
  title: Torpedo API
  version: '1.0'
  description: |
    Torpedo is a transactional email API built for developers.
    Send emails from your own verified domain with a single HTTP call.
  contact:
    email: support@torpedo.co.mz
  termsOfService: https://torpedo.co.mz/terms
servers:
  - url: https://api.torpedo.co.mz
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/v1/suppressions/{address}:
    delete:
      tags:
        - Suppressions
      summary: Remove suppression
      description: |
        Removes an address from the suppression list. Future sends to this
        address will no longer be blocked. Use with caution — suppressed
        addresses were blocked for a reason.
      operationId: removeSuppression
      parameters:
        - name: address
          in: path
          required: true
          schema:
            type: string
          description: URL-encoded email address
          example: user%40example.com
        - name: channel
          in: query
          schema:
            type: string
            enum:
              - email
              - sms
      responses:
        '200':
          description: Suppression removed
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      address:
                        type: string
                      deleted:
                        type: boolean
                        example: true
        '404':
          description: Address not in suppression list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Invalid address format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
                example: Domain not verified
              field:
                type: string
                example: from
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Prefix `tor_` followed by a base64url-encoded random key.
        Obtain one from `POST /api/v1/workspaces` or `POST /api/v1/auth/keys`.

````