---
title: "Create Conversation"
method: POST
path: "/v1/apps/{app_id}/conversations/create"
tags: ["apps"]
---

# Create Conversation

`POST /v1/apps/{app_id}/conversations/create`

Create new conversation.

## Path parameters

- `app_id` string, uuid, required

## Request body

- ConversationCreateData
  - `name` string, required
  - `settings` ConversationSettings
    - `assistant_id` string, uuid, nullable
    - `assistant_version_id` string, uuid, nullable
  - `added_on` string, date-time — The creation timestamp of the conversation
  - `modified_on` string, date-time — The modification timestamp of the conversation

## Response `200`

Successful Response

- Conversation
  - `id` string, uuid, required
  - `name` string, required
  - `added_on` string, date-time — The creation timestamp of the conversation
  - `modified_on` string, date-time — The modification timestamp of the conversation
  - `deleted_on` string, date-time, nullable, required
  - `settings` ConversationSettings, required
    - `assistant_id` string, uuid, nullable
    - `assistant_version_id` string, uuid, nullable

## Other responses

- `422` — Validation Error

---

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