---
title: "Send text message"
method: POST
path: "/v2/messages/text"
tags: ["Messages"]
---

# Send text message

`POST /v2/messages/text`

Send a text message via WhatsApp Official. Reuses the existing message sending flow — validates channel account, contact, and messaging window, then dispatches to the WhatsApp provider. Returns immediately with QUEUED status.

## Headers

- `api-token` string, required

## Request body

- object
  - `channel_account_id` string, uuid, required — UUID of the WhatsApp Official channel account
  - `contact_id` string, uuid, required — UUID of the contact to send the message to
  - `message` string, required — Text content of the message
  - `chat_id` string, uuid — Optional UUID of an existing chat. If not provided, the system will find or create a chat automatically.

## Response `200`

Message queued for sending

- object
  - `status` integer
  - `data` object
    - `success` boolean
    - `message_id` string, uuid — UUID of the created message
    - `chat_id` string, uuid — UUID of the chat (existing or newly created)
    - `status` 'QUEUED' — Initial message status

## Other responses

- `400` — Validation error
- `401` — Authentication error - invalid or missing api-token
- `404` — Resource not found

---

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