> ## 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 persona

> Delete a persona record



## OpenAPI

````yaml delete /v1/personas/{persona_id}
openapi: 3.0.0
info:
  title: Personas API
  version: 1.0.0
  description: API for managing personal and organizational identities
servers: []
security:
  - bearerAuth: []
tags:
  - name: Personal Identity
    description: Personal identity management operations
  - name: User-Persona
    description: User-persona relationship operations
  - name: Persona Links
    description: Persona linking operations
paths:
  /v1/personas/{persona_id}:
    parameters:
      - name: persona_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    delete:
      tags:
        - Personal Identity
      summary: Delete persona
      description: Delete a persona record
      responses:
        '200':
          description: Persona deleted successfully
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````