---
title: "Get conversation messages"
method: GET
path: "/v6/conversations/{id}/messages"
tags: ["Conversations"]
---

# Get conversation messages

`GET /v6/conversations/{id}/messages`

Get messages for the given conversation

## Path parameters

- `id` string, required

## Query parameters

- `cursor` string, nullable — Cursor from the previous paginated response
- `limit` integer — Page size, i.e. number of items to return per page

## Response `200`

Success

- PaginatedResponseMessageGetDto
  - `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
  - `cursor` ResponseCursor — Cursor to be used in your subsequent paginated request. Only populated if there are more pages available.
    - `after` string — After cursor - Fetches entities after this cursor. Useful for paging forwards.
    - `before` string — Before cursor - Fetches entities before this cursor. Useful for paging backwards.

## 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)
