Transcripts
Querying list of transcripts
Overview
The transcripts query is designed to fetch a list of transcripts against input arguments.
Arguments
keyword
instead.Title of the transcript
This argument is mutually exclusive with keyword
field
The maximum allowable length for this field is 256
characters.
Allows searching for keywords in meeting title and/or words spoken during the meeting
This argument is mutually exclusive with title
field
The maximum allowable length for this field is 255
characters.
Specify the scope for keyword search.
If scope is provided, keyword
becomes a required field
Defaults to TITLE
if no value is provided
The available options for this field are:
title
: Search within the title.sentences
: Search within the sentences.all
: Search within title and sentences.
Return all transcripts created after fromDate
. The fromDate
parameter accepts a date-time
string in the ISO 8601 format, specifically in the form YYYY-MM-DDTHH:mm.sssZ
. For example, a
valid timestamp would be 2024-07-08T22:13:46.660Z
.
Return all transcripts created before toDate
. The toDate
parameter accepts a date-time string
in the ISO 8601 format, specifically in the form YYYY-MM-DDTHH:mm.sssZ
. For example, a valid
timestamp would be 2024-07-08T22:13:46.660Z
.
fromDate
and toDate
instead.Return all transcripts created within the date specified. Query input value must be in milliseconds.
For example, you can use the JavaScript new Date().getTime()
to get the datetime in milliseconds
which should look like this 1621292557453
. The timezone for this field is UTC +00:00
For more details regarding time since EPOCH
Number of transcripts to return. Maxiumum 50 in one query
Number of transcripts to skip.
Filter all meetings accordingly to meetings that have this email as the host.
Filter all meetings accordingly to meetings that have this email as the organizer.
Filter all meetings accordingly to all meetings that contains this email as an attendee.
Filter all meetings that have the API key owner as the organizer.
Schema
Fields available to the Transcript query
Usage Example
Error Codes
List of possible error codes that may be returned by the transcripts
query. Full list of error codes can be found here.
object_not_found (team)
object_not_found (team)
This may indicate that you are not a part of any team. Please contact support if you encounter this error
object_not_found (user)
object_not_found (user)
The user ID you are trying to query does not exist or you do not have access to it.