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

# Get conversation

`GET /v6/conversations/{id}`

Get a conversation for the given id

## Path parameters

- `id` string, required

## Response `200`

Success

- ResponseConversationGetDto
  - `result` 'SUCCESS' | 'FAILURE' — The result of the action performed.
  - `data` ConversationGetDto — The data generated by the action performed.
    - `id` string, required — Id of the conversation, required when updating an existing conversation
    - `attachedEntityId` string, nullable, required — Id of the entity associated with this conversation
    - `company` CompanyExpanded, required — Company associated with this conversation
      - `id` string, required — Id of the company
      - `name` string — Name of the company
    - `subject` string, required — Subject of the conversation
    - `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
    - `latestMessage` LatestMessageDto, required — The latest message associated with this conversation
      - `id` string, required — Id of the latest 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 — Contents of the latest message
    - `status` 'ACTIVE' | 'INACTIVE' | 'REMOVED', required — Status of the conversation
    - `readStatus` 'READ' | 'UNREAD', required — Read status of the conversation for the authenticated user
    - `resolutionStatus` 'OPEN' | 'CLOSED' | 'DRAFT', required — Resolution status of the conversation
    - `createdDateTime` string, date-time, required — Timestamp of when the conversation was created
    - `lastUpdatedDateTime` string, date-time, required — Timestamp of when the conversation was last updated
  - `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)
