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

# Delete Account

> Soft-delete: for now we just clear PII. Full deletion would cascade
through tasks, bids, transactions — needs careful handling in production.



## OpenAPI

````yaml /openapi.json delete /api/v1/settings/account
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/settings/account:
    delete:
      tags:
        - Settings
        - settings
      summary: Delete Account
      description: >-
        Soft-delete: for now we just clear PII. Full deletion would cascade

        through tasks, bids, transactions — needs careful handling in
        production.
      operationId: delete_account_api_v1_settings_account_delete
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````