GET
/
api
/
analytics
/
team
/
snapshot
/
unanswered-conversations
Get unanswered conversations count
curl --request GET \
  --url https://api.vambe.me/api/analytics/team/snapshot/unanswered-conversations
{
  "totalUnansweredConversations": 42
}

Query Parameters

agentIds
string[]

Optional array of agent IDs to filter by specific agents

Example:
["agent-id-1", "agent-id-2"]
pipelineId
string

Optional pipeline ID to filter by specific pipeline

Example:

"pipeline-id-1"

stageIds
string[]

Optional array of stage IDs to filter by specific stages

Example:
["stage-id-1", "stage-id-2"]
hideArchived
boolean

Optional boolean to filter by archived conversations

Example:

true

hideUnassigned
boolean
required

Response

200 - application/json

Successfully retrieved unanswered conversations count

totalUnansweredConversations
number

Total count of unanswered conversations

Example:

42