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

# Get detailed unanswered conversations

> Returns detailed information about open conversations without responses for the authenticated user's organization



## OpenAPI

````yaml /openapi.json get /api/analytics/team/snapshot/unanswered-conversations-details
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/analytics/team/snapshot/unanswered-conversations-details:
    get:
      tags:
        - Team Analytics
      summary: Get detailed unanswered conversations
      description: >-
        Returns detailed information about open conversations without responses
        for the authenticated user's organization
      operationId: GetSnapshotTeamAnalyticsController_getUnansweredConversationsDetails
      parameters:
        - name: page
          required: false
          in: query
          description: 'Page number for pagination (default: 1)'
          schema:
            type: number
            example: 1
        - name: agentIds
          required: false
          in: query
          description: Optional array of agent IDs to filter by specific agents
          schema:
            example:
              - agent-id-1
              - agent-id-2
            type: array
            items:
              type: string
        - name: pipelineId
          required: false
          in: query
          description: Optional pipeline ID to filter by specific pipeline
          schema:
            example: pipeline-id-1
            type: string
        - name: stageIds
          required: false
          in: query
          description: Optional array of stage IDs to filter by specific stages
          schema:
            example:
              - stage-id-1
              - stage-id-2
            type: array
            items:
              type: string
        - name: hideArchived
          required: false
          in: query
          description: Optional boolean to filter by archived conversations
          schema:
            type: boolean
            example: true
        - name: hideUnassigned
          required: true
          in: query
          schema:
            type: boolean
        - name: x-api-key
          in: header
          description: API key
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved detailed unanswered conversations
          content:
            application/json:
              schema:
                type: object
                properties:
                  contacts:
                    type: array
                    items:
                      type: object
                      properties:
                        ai_contact_id:
                          type: string
                          description: ID of the AI contact
                          example: contact-123
                        current_stage:
                          type: string
                          description: Current stage name
                          example: Lead
                        current_pipeline:
                          type: string
                          description: Current pipeline name
                          example: Sales Pipeline
                        waiting_time:
                          type: number
                          description: Waiting time in milliseconds
                          example: 3600000
                        name:
                          type: string
                          description: Contact name
                          example: John Doe
                        assigned_agents:
                          type: array
                          items:
                            type: object
                            properties:
                              agent_id:
                                type: string
                                description: Agent ID
                                example: agent-123
                              agent_name:
                                type: string
                                description: Agent name
                                example: Jane Smith
                  hasNextPage:
                    type: boolean
                    description: Indicates if there are more pages
                    example: true
                  nextPage:
                    type: string
                    nullable: true
                    description: Next page number if available
                    example: '2'
                  total:
                    type: number
                    description: Total number of unanswered conversations
                    example: 100

````