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

# Delete a Persona

> Delete a specific persona by ID.



## OpenAPI

````yaml DELETE /personas/{id}
openapi: 3.0.1
info:
  title: OpenGiant API
  description: API for refining AI responses and managing personas.
  version: 1.0.0
servers:
  - url: https://api.opengiant.com/v1
security:
  - bearerAuth: []
paths:
  /personas/{id}:
    delete:
      description: Delete a specific persona by ID.
      parameters:
        - name: id
          in: path
          description: ID of the persona to delete.
          required: true
          schema:
            type: string
      responses:
        '204':
          description: Persona deleted successfully.
          content: {}
        '400':
          description: Unexpected error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
        - message
      properties:
        error:
          type: integer
          format: int32
          description: Error code.
        message:
          type: string
          description: Error message.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````