---
title: "Create Agent Profile"
method: POST
path: "/v1/interview-agents"
tags: ["interview-agents"]
---

# Create Agent Profile

`POST /v1/interview-agents`

## Request body

- AgentProfileCreate
  - `workspace_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `folder` string, nullable

## Response `201`

Successful Response

- AgentProfileOut
  - `id` string, uuid, required
  - `workspace_id` string, uuid, required
  - `name` string, required
  - `description` string, nullable
  - `avatar_type` string, required
  - `avatar_emoji` string, nullable
  - `avatar_storage_key` string, nullable
  - `avatar_url` string, nullable
  - `voice_provider` string, nullable
  - `voice_id` string, nullable
  - `voice_language` string, nullable
  - `base_prompt` string, required
  - `instructions` string, required
  - `communication_guidelines` string, required
  - `culture_guidelines` string, required
  - `positive_examples` object[], required
  - `negative_examples` object[], required
  - `default_language` string, nullable
  - `status` string, required
  - `folder` string, nullable
  - `created_by` string, nullable
  - `created_by_email` string, nullable
  - `created_by_name` string, nullable
  - `documents` AgentProfileDocumentOut[]
    - `id` string, uuid, required
    - `document_id` string, uuid, required
    - `source_kind` string, required
    - `title` string, nullable
    - `extracted_summary` string, nullable
    - `status` string, required
    - `created_at` string, date-time, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/ontora/apis/ontora-api.md) · [All operations](https://skmtc.dev/ontora/apis/ontora-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ontora/ontora-api/revisions/7f57037fd94b/schema)
