Skip to main content
GET
List VOC conversations (reporting format)
This endpoint returns VOC conversations as reporting rows (no transcript content), suitable for exporting large time ranges.

Date range filtering

You can specify a time range using either:
  • range=last_day|last_week|last_month, or
  • from / to (ISO 8601 or epoch millis)
If you do not supply a range, the default is range=last_day.

Pagination (cursor)

Results are paginated using an opaque cursor:
  • Use limit to control page size (default 1000, max 5000)
  • Use cursor to fetch the next page (from cursor.next)
  • When you supply cursor, do not also supply range, from, or to

Example: first page

Example: next page

Example: fetch all pages (Node.js)

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tenantId
string
required

Tenant identifier.

Query Parameters

limit
integer<int32>

Max results per page. Default 1000, max 5000.

Required range: 1 <= x <= 5000
cursor
string

Opaque cursor returned in cursor.next. When provided, do not also supply range, from, or to.

range
enum<string>

Convenience range selector. If omitted and from is omitted, defaults to last_day.

Available options:
last_day,
last_week,
last_month
from

Range start. Accepts an ISO 8601 timestamp or epoch milliseconds. Epoch milliseconds.

to

Range end. Accepts an ISO 8601 timestamp or epoch milliseconds. Defaults to now. Epoch milliseconds.

Response

OK

total
integer<int64>
required
cursor
object
required
data
object[]
required