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

# ListVoiceSMSConversationsPostAPI is the POST body form of the list endpoint,


> for callers that prefer a JSON body over query params.




## OpenAPI

````yaml /api/openapi.json post /v1/voice/sms-conversations
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:
    post:
      summary: >
        ListVoiceSMSConversationsPostAPI is the POST body form of the list
        endpoint,
      description: |
        for callers that prefer a JSON body over query params.
      operationId: POST:mcp.ListVoiceSMSConversationsPostAPI
      requestBody:
        content:
          application/json:
            schema:
              properties:
                address:
                  type: string
                cursor:
                  type: string
                limit:
                  format: int64
                  type: integer
                phone_number:
                  type: string
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  conversations:
                    items:
                      $ref: '#/components/schemas/messaging.SMSConversationSummary'
                    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
  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_...).

````