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

# Delete account



## OpenAPI

````yaml delete /v1/accounts/{id}
openapi: 3.0.0
info:
  title: Corebanq - Accounts API
  description: API endpoints for managing bank accounts
  version: 1.0.0
servers: []
security: []
paths:
  /v1/accounts/{id}:
    delete:
      summary: Delete account
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Account deleted successfully

````