List conversations
List the conversations belonging to the partner the API key belongs to. Supports pagination (limit, offset), full-text search, filters (a URL-encoded JSON array of { attribute, operator, value } conditions over the supported conversation fields), sort, and include to expand related resources. Requires the conversation:read scope.
Authorizations
Send the API key in the x-api-key header.
Query Parameters
1 <= x <= 100x >= 0A URL-encoded JSON array of filter conditions, all AND-ed together. Each condition is { "attribute", "operator", "value", "valueType"? }. Allowed attributes: id, type, status, urgency, assigneeId, conversationAssigneeGroupId, requesterId, createdAt. Allowed operators: =, !=, in, not_in, ilike, not_ilike, <, <=, >, >=, is_null, is_not_null. value is always a string; set valueType (one of boolean, number, number[], string, string[]) to coerce it — e.g. "boolean" for a true/false attribute or "string[]" for the in operator.
Comma-separated list of fields to sort by, applied in order; prefix a field with - for descending. Allowed fields: createdAt, lastMessageReceivedAt, subject, status, urgency.