v2

latestOpenAPI 3.1.02026-08-01132728.8 KB
calls

Get Calls

Retrieve list of calls for your organization.

  • Only public calls are returned (all private calls are excluded)
  • Results are sorted by start time in descending order (newest first)
get/v1/calls/

Query parameters

participant_emailstring nullable

A participant's email to filter by (case insensitive). Only calls with this participant will be shown.

A participant's email to filter by (case insensitive). Only calls with this participant will be shown.

start_time_fromstring date-time nullable

Filter calls starting from this time (UTC ISO 8601)

Filter calls starting from this time (UTC ISO 8601)

start_time_tostring date-time nullable

Filter calls starting up to this time (UTC ISO 8601)

Filter calls starting up to this time (UTC ISO 8601)

title_filterstring nullable

Query to filter calls by call title.

Query to filter calls by call title.

tag_idsstring[] nullable

Filter calls by tag IDs. Only calls with at least one of the specified tags will be returned.

Filter calls by tag IDs. Only calls with at least one of the specified tags will be returned.

[
  "5eb7cf5a86d9755df3a6c593"
]
cursorstring nullable

Cursor for pagination

Cursor for pagination

limitinteger

Number of items per page

Number of items per page

direction'next' | 'prev'

Pagination direction

Pagination direction

Response

Successful Response

Example response

{
  "data": [
    {
      "id": "5eb7cf5a86d9755df3a6c593",
      "tags": [
        {
          "id": "5eb7cf5a86d9755df3a6c593"
        }
      ]
    }
  ]
}