latestOpenAPI 3.0.32026-08-22149327338.9 KB

d4db007b26b2

call-recordings

Search for call recordings by a given filter

Filterable fields and their allowed operators:

FieldAllowed operators
account_idequals, in, not_in, is_set, is_unset
sourceequals, in, not_in
titleequals, string_contains
start_timetime_is_after, time_is_before, time_range

Timestamp values use RFC3339 format.

Rate limit: 20 requests per minute

post/call-recordings/search

Request body

cursorstring

The cursor to use for pagination.

limitinteger

The number of call recordings to fetch. Defaults to 100. Must be greater than 0 and less than or equal to 1000.

Example request

{
  "filter": {
    "subfilters": [
      {
        "field": "state",
        "operator": "equals",
        "value": "new"
      }
    ]
  }
}

Response

request_idstring

The request ID for tracking.

Example response

{
  "data": [
    {
      "custom_fields": {
        "sentiment": {
          "value": "positive"
        }
      }
    }
  ]
}