GET
/conversationsList conversations
Returns a paginated list of support conversations. Requires a team-role API key.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
status | query | "open" | "pending" | "closed" | Filter by conversation status |
priority | query | "none" | "low" | "medium" | "high" | "urgent" | Filter by triage priority |
assignedAgentPrincipalId | query | string | Filter by assigned agent principal ID |
cursor | query | string | Pagination cursor from previous response |
limit | query | integer | Items per page (max 100)(default: 20) |
Response
List of conversations
Returns an array of objects:
| Field | Type | Description |
|---|---|---|
idrequired | string | TypeID - a type-prefixed UUID |
statusrequired | "open" | "pending" | "closed" | Current conversation status |
channelrequired | "live_chat" | "email" | "web_form" | Channel the conversation arrived on |
priorityrequired | "none" | "low" | "medium" | "high" | "urgent" | Agent-set triage priority |
subjectrequired | string | null | Conversation subject line, null for live-chat threads |
visitorPrincipalIdrequired | string | Principal ID of the visiting user |
visitorEmailrequired | string | null | Captured contact email for the visitor, null if not provided |
assignedAgentPrincipalIdrequired | string | null | Principal ID of the assigned agent, null if unassigned |
lastMessageAtrequired | string | ISO 8601 timestamp |
resolvedAtrequired | string | null | When the conversation was resolved, null while still active |
createdAtrequired | string | ISO 8601 timestamp |
meta
| Field | Type | Description |
|---|---|---|
paginationrequired | object |
Errors
401UnauthorizedExample request
curl \
"https://feedback.quackback.io/api/v1/conversations" \
-H "Authorization: Bearer qb_your_api_key_here"