---
title: "Update Agent Profile"
method: PATCH
path: "/v1/interview-agents/{agent_id}"
tags: ["interview-agents"]
---

# Update Agent Profile

`PATCH /v1/interview-agents/{agent_id}`

## Path parameters

- `agent_id` string, uuid, required

## Request body

- AgentProfilePatch
  - `name` string, nullable
  - `description` string, nullable
  - `avatar_type` string, nullable
  - `avatar_emoji` string, nullable
  - `voice_provider` string, nullable
  - `voice_id` string, nullable
  - `voice_language` string, nullable
  - `base_prompt` string, nullable
  - `instructions` string, nullable
  - `communication_guidelines` string, nullable
  - `culture_guidelines` string, nullable
  - `positive_examples` AgentExampleIn[], nullable
    - `label` string
    - `situation` string
    - `agent_response` string
    - `rationale` string
  - `negative_examples` AgentExampleIn[], nullable
    - `label` string
    - `situation` string
    - `agent_response` string
    - `rationale` string
  - `default_language` string, nullable
  - `status` string, nullable
  - `folder` string, nullable
  - `skill_ids` string[], nullable

## Response `200`

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)
