Transcripts
Querying list of transcripts
Overview
The transcripts query is designed to fetch a list of transcripts against input arguments.
Arguments
Title of the transcript
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 hosting.
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.
User id. Filter all meetings accordingly to meetings that have this user ID as the hosting or participant.
Schema
Fields available to the Transcript query
Usage Example
Additional Resources
Was this page helpful?