Skip to main content

tl;dv

Access meeting recordings, transcripts, and notes, and import meetings, with the tl;dv API.

tl;dv Logo

Authentication

This connector uses Token-based authentication.

info

Set up your connection in the Abstra Console before using it in your workflows.

How to use

Using the Smart Chat

Execute the action "CHOOSE_ONE_ACTION_BELOW" from my connector "YOUR_CONNECTOR_NAME" using the params "PARAMS_HERE".

Using the Web Editor

from abstra.connectors import run_connection_action

result = run_connection_action(
connection_name="your_connection_name",
action_name="your_action_name",
params={
"param1": "value1",
"param2": "value2"
})

Available Actions

This connector provides 8 actions:

ActionPurposeParameters
post_v1alpha1_meetings_importImport a meeting, recording, or other media from a URL. The URL must be publicly accessible, and the media must be in a supported format.data (undefined) required
get_v1alpha1_meetings_by_meeting_id_transcriptGet the transcript of a meeting by its id. The transcript is returned in a human readable format. The transcript is returned only if it is completemeetingId (string)
get_v1alpha1_meetings_by_meeting_id_notesGet the notes of a meeting by its id. The notes are returned in a human readable formatmeetingId (string)
get_v1alpha1_meetingsGet a list of meetingsNo parameters
get_v1alpha1_meetings_by_meeting_idGet a meeting by its id. The meeting is returned in a human readable formatmeetingId (string)
get_v1alpha1_meetings_by_meeting_id_downloadReturns an HTTP redirect to a signed, expiring download URL for the meeting recording. Redirect behavior: - Most HTTP clients follow the redirect automatically and start downloading the file. - If you disable redirect following, read the Location header to obtain the signed URL. Signed URL TTL: The signed URL expires 6 hours after issuance.meetingId (string)
get_v1alpha1_healthHealth checkNo parameters
customCall any endpoint of the connected service while reusing the connection auth. Pass the full URL as _url. Other reserved keys: _method, _query, _body, _headers. Remaining params flow naturally — empty → GET, non-empty → POST JSON body._url (string) required
_method (string)
_query (object)
_body (undefined)
_headers (object)