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

# Enable personalities

> Add one or more personality profiles to a project's enabled set



## OpenAPI

````yaml post /user/v1/projects/{id}/enable_personalities/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /user/v1/projects/{id}/enable_personalities/:
    post:
      tags:
        - user
      summary: Enable personalities for a project
      description: >-
        Adds one or more personalities to the project's enabled set. Pass a list
        of personality IDs, or `"all"` to enable every personality available for
        the project (optionally filtered by `language`).
      operationId: projects-enable-personalities-create
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: A unique integer value identifying this project.
          required: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnablePersonalitiesRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/EnablePersonalitiesRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/EnablePersonalitiesRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                additionalProperties: {}
                description: Unspecified response body
          description: ''
      security:
        - api_key: []
components:
  schemas:
    EnablePersonalitiesRequest:
      type: object
      properties:
        personalities:
          description: List of personality IDs, e.g. `[1, 2, 3]`, or the string `"all"`
        language:
          type: string
          description: ISO 639-1 language code to filter personalities, e.g. `"en"`, `"es"`
      required:
        - personalities
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````