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

# Delete User

> Delete user by email



## OpenAPI

````yaml DELETE /user
openapi: 3.0.3
info:
  title: API Atlas BFF
  version: 1.0.0
  contact: {}
servers:
  - url: https://atlas-back.fly.dev
security: []
tags:
  - name: User
  - name: Staff
  - name: Client
  - name: Notification
  - name: Subscription
  - name: Subscriber
  - name: Product
  - name: Acquisition
  - name: Tag
  - name: Tasks
paths:
  /user:
    delete:
      tags:
        - User
      summary: Delete user by email
      description: Delete user by email
      operationId: deleteUserByEmail
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                email:
                  type: string
                  example: straube@straube.com
            example:
              email: straube@straube.com
      responses:
        '200':
          description: ''

````