The conversations behind a metric number (drill-down)
The conversation rows a metric number is computed from — the drill drawer behind a tile. It applies the SAME filter lenses AND the same counted-conversation predicate as queryMetric, PLUS the metric’s own drill predicate (e.g. Transfers drills only transferred conversations), so the list always matches the number. Rows are shaped like ConversationListItem. Only metrics whose catalog hasDrilldown is true support this (others → 400). Pagination is KEYSET on (createdAt, id) DESC for stability under concurrent inserts: pass the returned pagination.nextCursor as cursor to fetch the next page. Accepts the same window/lens params as queryMetric, plus key to drill a categorical metric to ONE breakdown row (e.g. topics?key=Billing returns the conversations in that one category).
Use this (the metric-anchored drill) when you want the exact conversations behind a registry tile’s number. It differs from two siblings that return the same PaginatedConversationListItem shape: listConversations is the general searchable/filterable history (full-text q, sentiment); listTopicConversations is the per-agent topic-cluster drill (this endpoint’s ?key= is the registry-wide categorical equivalent).
Authorizations
Flowyte secret API key (Authorization: Bearer flowyte_sk_live_…). Scope-gated; is scoped to your organization — a key can never reach another tenant. The listed scopes in each operation's apiKey requirement are the scopes that key must hold. The tokenUrl is nominal: keys are minted in the dashboard.
Path Parameters
A metric id from the catalog. Unknown ids → 404.
Query Parameters
Opaque keyset cursor from the previous page's pagination.nextCursor.
Page size — how many items to return per page (1–100). Defaults to 20.
1 <= x <= 100Window start (RFC3339, inclusive) — same window as the metric number.
Window end (RFC3339, exclusive).
IANA timezone used to bound the window (default UTC).
Restrict to one channel.
voice, chat, sms Restrict to one agent id (AND-ed with queue).
Restrict to one queue id (AND-ed with agent).
Categorical metrics only: drill to one breakdown row by its key (e.g. a topic category). Ignored by non-categorical metrics.