---
title: "Send a message to a conversation"
method: POST
path: "/customer/messaging/conversations/{conversation}/messages"
tags: ["Customer Messaging"]
---

# Send a message to a conversation

`POST /customer/messaging/conversations/{conversation}/messages`

Send a new message to a specific conversation. The message will be marked
as sent by the authenticated customer.

## Path parameters

- `conversation` string, required

## Request body

- object
  - `content` string, required — The message content
  - `message_type` string — The type of message
  - `metadata` object — Additional metadata for the message

## Response `200`

`MessageResource`

- object
  - `data` MessageResource, required
    - `id` string, required
    - `conversation_id` string, required
    - `sender_type` string, required
    - `sender_id` string, required
    - `sender` object
      - `id` string, required
      - `name` string, required
      - `email` string, required
    - `content` string, required
    - `message_type` string, required
    - `metadata` unknown[], nullable, required
      - unknown
    - `is_edited` boolean, required
    - `edited_at` string, required
    - `created_at` string, required
    - `updated_at` string, required

## Other responses

- `401` — Unauthenticated
- `403` — An error
- `422` — Validation error

---

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