List Chats
Returns a paginated list of chats with optional filters. Org-level API keys return all chats; user-level keys return only chats accessible to the user.
Query parameters
Filter by external ID (exact match)
Filter by chat type (chat or email)
Filter by title (case-insensitive partial match)
Filter by participant name (case-insensitive partial match)
Filter by scorecard UUID(s) — returns chats evaluated with any of the given scorecards
Filter by user UUID(s)
Filter by team UUID(s)
Start of date range filter (ISO 8601 format)
End of date range filter (ISO 8601 format)
If true, omit transcript data from response to reduce payload size
Page number for pagination (starts from 1)
Number of items per page (min 1, max 50)
Response
Chats successfully returned
Example response
{
"data": [
{
"id": "chat-uuid-123",
"externalId": "slack-channel-xyz",
"applicationName": "slack",
"title": "Sales Q1 Planning",
"type": "chat",
"userId": "user-uuid-456",
"teamId": "team-uuid-789",
"dateStart": "2024-03-18T09:00:00Z",
"createdAt": "2024-03-18T09:00:00Z",
"participants": [],
"transcript": []
}
],
"meta": {
"totalRecords": 1
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.