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

# delete persona

> Delete a persona by id



## OpenAPI

````yaml https://api.anam.ai/swagger.json delete /v1/personas/{id}
openapi: 3.1.0
info:
  title: Anam AI API
  version: '1.0'
servers:
  - url: https://api.anam.ai
    description: Anam API
security:
  - BearerAuth: []
tags:
  - name: Sessions
  - name: Personas
  - name: Avatars
  - name: Voices
  - name: LLMs
  - name: Knowledge
  - name: Tools
  - name: Share Links
paths:
  /v1/personas/{id}:
    delete:
      tags:
        - Personas
      summary: delete persona
      description: Delete a persona by id
      operationId: deletePersona
      parameters:
        - in: path
          name: id
          schema:
            type: string
          required: true
          description: Persona id
      responses:
        '200':
          description: Successfully deleted persona
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Persona deleted
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - Account does not have access
        '404':
          description: Not Found - Persona not found
        '500':
          description: Server error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````