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

# GetVoiceSMSConversationAPI mirrors erdo_voice_sms_conversation_get, returning


> the conversation and its texts oldest first. The session id — the only stable handle a text conversation has — travels in the path; the message paging rides the query string, because unlike a call a conversation has no end.




## OpenAPI

````yaml /api/openapi.json get /v1/voice/sms-conversations/{sessionID}
openapi: 3.0.0
info:
  title: Erdo API
  description: >-
    Erdo's REST API: query and write datasets, run agents, manage threads,
    integrations, pages, evals, workstreams, experiments, and bounded outreach.
    Authenticate with a Bearer API key (erdo_api_...) or scoped token
    (erdo_token_...).
  version: '2026-09-09'
servers:
  - url: https://api.erdo.ai
    description: Production
security:
  - bearerAuth: []
paths:
  /v1/voice/sms-conversations/{sessionID}:
    get:
      summary: >
        GetVoiceSMSConversationAPI mirrors erdo_voice_sms_conversation_get,
        returning
      description: >
        the conversation and its texts oldest first. The session id — the only
        stable handle a text conversation has — travels in the path; the message
        paging rides the query string, because unlike a call a conversation has
        no end.
      operationId: GET:mcp.GetVoiceSMSConversationAPI
      parameters:
        - allowEmptyValue: true
          explode: false
          in: path
          name: sessionID
          required: true
          schema:
            type: string
          style: simple
        - allowEmptyValue: true
          explode: true
          in: query
          name: limit
          required: false
          schema:
            format: int64
            type: integer
          style: form
        - allowEmptyValue: true
          explode: true
          in: query
          name: cursor
          required: false
          schema:
            type: string
          style: form
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  conversation:
                    $ref: '#/components/schemas/messaging.SMSConversationSummary'
                  messages:
                    items:
                      $ref: '#/components/schemas/messaging.SMSConversationMessage'
                    type: array
                  next_cursor:
                    type: string
                type: object
          description: Success response
        default:
          $ref: '#/components/responses/APIError'
components:
  schemas:
    messaging.SMSConversationSummary:
      description: >
        and whether the person has opted out. Never the message bodies — those
        come from GetSMSConversation.
      properties:
        address:
          title: |
            Address is the person's number, in E.164.
          type: string
        agent_ref:
          description: >
            number is not one of an org's agent numbers (the shared platform
            sender, the outreach sender, or a number registered before the
            registry existed).
          title: >
            AgentRef is the managed voice agent the number belongs to, empty
            when the
          type: string
        channel:
          type: string
        created_at:
          format: date-time
          type: string
        idle_closed_at:
          format: date-time
          type: string
        last_inbound_at:
          format: date-time
          type: string
        last_outbound_at:
          format: date-time
          type: string
        message_count:
          format: int64
          type: integer
        phone_number:
          title: |
            PhoneNumber is Erdo's own number, in E.164.
          type: string
        sender_kind:
          type: string
        session_id:
          format: uuid
          type: string
        summary:
          type: string
        suppressed:
          description: >
            — their own STOP, an operator's block, or a carrier bounce — so
            nothing may text them. It is read off the suppression ledger the
            egress gate enforces, never a copy on the conversation, so it cannot
            disagree with that gate. Only their own STOP is lifted by START,
            UNSTOP or YES.
          title: >
            Suppressed is true while a suppression stands against the person's
            number
          type: boolean
        topics:
          items:
            type: string
          type: array
      title: >
        SMSConversationSummary is one conversation's metadata: who, when, how
        much,
      type: object
    messaging.SMSConversationMessage:
      properties:
        body:
          type: string
        created_at:
          format: date-time
          type: string
        direction:
          title: |
            inbound | outbound
          type: string
        message_id:
          type: string
        num_media:
          description: |
            Twilio and is not served here.
          format: int64
          title: >
            NumMedia counts the images or files attached. The media itself lives
            at
          type: integer
        status:
          type: string
      title: |
        SMSConversationMessage is one text, in reading order.
      type: object
  responses:
    APIError:
      content:
        application/json:
          schema:
            externalDocs:
              url: https://pkg.go.dev/encore.dev/beta/errs#Error
            properties:
              code:
                description: Error code
                example: not_found
                externalDocs:
                  url: https://pkg.go.dev/encore.dev/beta/errs#ErrCode
                type: string
              details:
                description: Error details
                type: object
              message:
                description: Error message
                type: string
            title: APIError
            type: object
      description: Error response
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: An Erdo API key (erdo_api_...) or scoped token (erdo_token_...).

````