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

# Delete Account

> Deactivate the current user's account.
Sets is_active=False so the user can no longer login.
Account data is preserved for audit purposes.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json delete /auth/account
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /auth/account:
    delete:
      tags:
        - authentication
      summary: Delete Account
      description: |-
        Deactivate the current user's account.
        Sets is_active=False so the user can no longer login.
        Account data is preserved for audit purposes.
      operationId: delete_account_auth_account_delete
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````