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

# Get Conversation

`GET /conversations/{id}`

Retrieves a conversation with recent messages (up to 50).

## Path parameters

- `id` string, uuid, required

## Response `200`

Conversation details with messages

- ConversationResponse
  - `success` boolean
  - `request_id` string
  - `data` object — Conversation object in list/detail responses
    - `object` 'conversation'
    - `id` string, uuid
    - `platform_type` 'email' | 'linkedin'
    - `title` string
    - `last_activity_at` string, date-time
    - `is_unread` boolean
    - `is_archived` boolean
    - `unread_count` integer
    - `identity` object, nullable
      - `id` string, uuid
      - `handle` string
      - `first_name` string
      - `last_name` string
      - `photo` string, uri
      - `type` 'linkedin'
    - `participants` ConversationParticipant[] — Participants in the conversation (populated in GET /conversations/{id}; empty in list)
      - `id` string, uuid, nullable — Platform person profile ID (null if profile unavailable)
      - `display_name` string, nullable — Display name for the participant
      - `avatar_url` string, uri, nullable — Avatar/profile image URL
      - `username` string, nullable — Email address (email) or platform handle (LinkedIn)
      - `is_self` boolean — Whether this participant is the authenticated user/team member
    - `last_message` object, nullable
      - `text` string
      - `timestamp` string, date-time
    - `team_id` string, uuid
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `messages` ConversationMessage[]
      - `object` 'message'
      - `id` string, uuid
      - `text` string, nullable
      - `html` string, nullable
      - `subject` string, nullable
      - `timestamp` string, date-time
      - `is_from_self` boolean
      - `is_read` boolean
      - `status` 'delivered' | 'pending' | 'failed'
      - `job_id` string, nullable
      - `conversation_id` string, uuid
      - `platform_type` 'email' | 'linkedin'
      - `sender` object, nullable
        - `id` string, uuid
        - `email` string, email

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `404` — Not Found - Resource does not exist

---

[API](https://skmtc.dev/supersend/apis/supersend-api.md) · [All operations](https://skmtc.dev/supersend/apis/supersend-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/supersend/supersend-api/revisions/f0cbeaa12643/schema)
