Returns detailed information about open conversations without responses for the authenticated userβs organization
| Parameter | Type | Required | Description |
|---|---|---|---|
page | number | No | Page number for pagination (default: 1) |
agentIds | string[] | No | Filter by specific team member IDs |
pipelineId | string | No | Filter by specific pipeline |
stageIds | string[] | No | Filter by specific stages |
hideArchived | boolean | No | Hide archived conversations (default: true) |
hideUnassigned | boolean | No | Hide unassigned conversations (default: true) |
| Field | Type | Description |
|---|---|---|
contacts | array | Array of contact objects with details |
hasNextPage | boolean | Whether there are more pages available |
nextPage | string | Next page number (if available) |
total | number | Total number of unanswered conversations |
| Field | Type | Description |
|---|---|---|
ai_contact_id | string (UUID) | Contactβs unique identifier |
name | string | Contactβs name |
current_stage | string | Current pipeline stage name |
current_pipeline | string | Current pipeline name |
waiting_time | number | Time waiting in milliseconds |
assigned_agents | array | Array of assigned team member objects |
| Field | Type | Description |
|---|---|---|
agent_id | string (UUID) | Team memberβs unique identifier |
agent_name | string | Team memberβs full name |
waiting_time field is in milliseconds. To convert:
hideArchived: true (default): Excludes archived conversationshideUnassigned: true (default): Excludes conversations with no assigned team membersagentIds: Shows only conversations assigned to specified team memberspipelineId: Shows only conversations in specified pipelinestageIds: Shows only conversations in specified stages| Status Code | Description |
|---|---|
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing API key |
| 500 | Internal Server Error - Something went wrong |
API key
Page number for pagination (default: 1)
1
Optional array of agent IDs to filter by specific agents
["agent-id-1", "agent-id-2"]Optional pipeline ID to filter by specific pipeline
"pipeline-id-1"
Optional array of stage IDs to filter by specific stages
["stage-id-1", "stage-id-2"]Optional boolean to filter by archived conversations
true
Successfully retrieved detailed unanswered conversations