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

# Get message

`GET /v6/messages/{id}`

Get message for the given id

## Path parameters

- `id` string, required

## Response `200`

Success

- ResponseMessageGetDto
  - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
  - `data` MessageGetDto — The data generated by the action performed.
    - `id` string, required — Id of the message, required when updating an existing message
    - `conversationId` string, required — Id of the conversation associated with this message
    - `author` AuthorInfo, required — List of authors who used this reaction
      - `userId` string, required — Id of the author
      - `email` string, nullable, required — Email of the author
    - `text` string, required — Content of the message
    - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED', required — Status of the message
    - `createdDateTime` string, date-time, required — Timestamp of when the message was created
    - `lastUpdatedDateTime` string, date-time, required — Timestamp of when the message was last updated
    - `reactions` ReactionSummaryDto[], required — Reactions on this message
      - `emojiCode` 'thumbs_up' | 'thumbs_down' | 'eyes' | 'red_heart' | 'hundred_points', required — Emoji code for this reaction
      - `authorInfo` AuthorInfo[], required — List of authors who used this reaction
        - `userId` string, required — Id of the author
        - `email` string, nullable, required — Email of the author
    - `attachments` MessageAttachmentExpanded[], required
      - `id` string, required — Id of the attachment
      - `url` string — URL at which the attachment is located
      - `fileName` string — File name of attachment
      - `fileSize` string — File size of attachment
      - `createdDateTime` string, date-time — Date that attachment was uploaded
      - `iconUrl` string — Icon URL based on file extension
  - `error` ErrorItem[]
    - `type` 'UNKNOWN_ERROR' | 'INVALID_TOKEN' | 'EXPIRED_TOKEN' | 'FORBIDDEN' | 'BAD_REQUEST' | 'JSON_ERROR' | 'DUPLICATE' | 'REQUIRED' | 'INVALID_VALUE' | 'NOT_MODIFIABLE' | 'INVALID_FORMAT' | 'NOT_FOUND' — The type of the error. Safe for programmatic use.
    - `message` string — A human-readable message providing more details about the error. Safe for displaying to a user.
    - `param` string — If the error is parameter-specific, the parameter related to the error. This can be used to display a message near the correct form field.

## Other responses

- `400` — Bad request
- `401` — Not authenticated
- `403` — Not authorized
- `404` — Endpoint not found
- `500` — Internal server error

---

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