---
title: "Get message"
method: GET
path: "/v2/messages/{id}"
tags: ["Messages"]
---

# Get message

`GET /v2/messages/{id}`

Retrieve a single message by ID. Only returns messages belonging to the authenticated owner.

## Path parameters

- `id` string, uuid, required

## Query parameters

- `content_type` 'TEXT' | 'IMAGE' | 'AUDIO' | 'VIDEO' | 'DOCUMENT'

## Headers

- `api-token` string, required

## Response `200`

A message object

- object
  - `status` integer — Response status
  - `data` Message
    - `id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `chat_id` string, uuid, nullable
    - `user_id` string, uuid, nullable
    - `content` string
    - `type` 'USER' | 'CUSTOMER' | 'EVENT' | 'NOTE'
    - `sent` boolean
    - `seen` boolean
    - `delivered` boolean
    - `content_type` string
    - `content_url` string, nullable
    - `external_id` string, nullable
    - `content_object` object, nullable
    - `content_action` object, nullable
    - `status` 'QUEUED' | 'SENT' | 'DELIVERED' | 'READ' — Derived from sent/delivered/seen flags
    - `source` string, nullable — Origin of the message (e.g. API, CAMPAIGN, WEB)

## Other responses

- `400` — Invalid UUID format
- `401` — Authentication error - invalid or missing api-token
- `404` — Message 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)
