> ## Documentation Index
> Fetch the complete documentation index at: https://messenger-docs.cogfy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a conversation by ID



## OpenAPI

````yaml GET /conversations/{conversationId}
openapi: 3.0.0
info:
  title: Cogfy Messenger Public API
  version: 1.0.0
  description: API for interacting with the Cogfy Messenger platform
servers:
  - url: https://messenger-public-api.cogfy.com
    description: Production server
  - url: http://localhost:53981
    description: Local server
security:
  - ApiKeyAuth: []
tags: []
paths:
  /conversations/{conversationId}:
    get:
      tags:
        - Conversations
      summary: Get a conversation by ID
      parameters:
        - in: path
          name: conversationId
          required: true
          schema:
            type: string
      responses:
        '200':
          description: A contact
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    format: uuid
                  workspaceId:
                    type: string
                    format: uuid
                  phoneNumberId:
                    type: string
                    format: uuid
                  recipientId:
                    type: string
                    format: uuid
                  assigneeId:
                    type: string
                    format: uuid
                  lastMessageId:
                    type: string
                    format: uuid
                  createDate:
                    type: string
                    format: date-time
                  serviceWindowExpireDate:
                    type: string
                    format: date-time
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: api-key

````