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

# Delete My Account

> Permanently delete the caller's own account.

Removes the ``auth.users`` row; database cascades remove the dependent
``public`` rows. Irreversible.



## OpenAPI

````yaml https://api.ionworks.com/openapi.json delete /users/me
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /users/me:
    delete:
      tags:
        - users
      summary: Delete My Account
      description: |-
        Permanently delete the caller's own account.

        Removes the ``auth.users`` row; database cascades remove the dependent
        ``public`` rows. Irreversible.
      operationId: delete_my_account_users_me_delete
      responses:
        '204':
          description: Successful Response

````