---
title: "Create Conversation"
method: POST
path: "/users/me/conversations"
tags: ["conversations"]
---

# Create Conversation

`POST /users/me/conversations`

Create an empty conversation slot with frontend-provided UUID.
This allows frontend to navigate immediately before any AI processing.

## Request body

- CreateConversationRequest
  - `uuid` string, required
  - `name` string
  - `metadata` union
    - ConversationConfig
      - `agent` string
      - `multimodal_enabled` boolean
      - `provider` string
      - `enable_extended_thinking` boolean
      - `thinking_budget_tokens` integer, nullable
    - object
  - `message` string, nullable
  - `attachments` FileAttachment[]
    - `filename` string, required
    - `content_type` string, required
    - `file_key` string, nullable
    - `asset_id` string, nullable
    - `thumbnail_key` string, nullable
    - `display_name` string, nullable
    - `base64_content` string, nullable
    - `file_size` integer, nullable
    - `description` string, nullable
    - `text_content` string, nullable
    - `metadata` object, nullable

## Response `200`

Successful Response

- ConversationResponse
  - `uuid` string, required
  - `display_name` string, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `session_id` string, nullable

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `409` — Conflict
- `422` — Validation Error
- `500` — Internal server error

---

[API](https://skmtc.net/adapter/apis/adapter-api.md) · [All operations](https://skmtc.net/adapter/apis/adapter-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/adapter/adapter-api/revisions/ab13bbbbd391/schema)
