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

# Delete Email

> Deletes a specific email from the system using its unique identifier.



## OpenAPI

````yaml DELETE /public/emails/{email_id}
openapi: 3.0.3
info:
  title: RevyOps API
  version: 1.0.0
servers: []
security: []
paths:
  /public/emails/{email_id}:
    delete:
      tags:
        - public
      description: Deletes a specific email from the system using its unique identifier.
      operationId: Remove email
      parameters:
        - in: path
          name: email_id
          schema:
            type: integer
          required: true
      responses:
        '200':
          description: OK. The email was successfully deleted.
        '401':
          description: >-
            Unauthorized. The email does not belong to the authenticated
            client's API key.
        '403':
          description: Forbidden. Missing authentication credentials or invalid API key.
        '404':
          description: Not Found. No email with the specified ID exists.
        '500':
          description: Internal Server Error. An unexpected error occurred on the server.

````