---
title: "Add Message To Conversation"
method: POST
path: "/api/chat/conversations/{conversation_id}/messages"
tags: ["chat"]
---

# Add Message To Conversation

`POST /api/chat/conversations/{conversation_id}/messages`

Add a message to a conversation without triggering the LLM.

Used for ask_user interactions where the browser agent asks a question
and the user responds - these should be persisted in chat history.

Messages are stored in the conversation_auxiliary_messages table.

## Path parameters

- `conversation_id` string, required

## Request body

- AddMessageRequest — Request to add a message to conversation history without triggering LLM
  - `product_id` string, required
  - `conversation_id` string, required
  - `role` string, required
  - `content` string, required
  - `identity_token` string, nullable

## Response `200`

Successful Response

- unknown

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/usecrow/apis/crow-backend-multi-tenant-saas.md) · [All operations](https://skmtc.dev/usecrow/apis/crow-backend-multi-tenant-saas/llms.txt) · [OpenAPI document](https://skmtc.dev/usecrow/apis/crow-backend-multi-tenant-saas/revisions/dafdd6b267c4?raw)
