tl;dv
Access meeting recordings, transcripts, and notes, and import meetings, with the tl;dv API.
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:
| Action | Purpose | Parameters |
|---|---|---|
| post_v1alpha1_meetings_import | Import 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_transcript | Get 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 complete | meetingId (string) |
| get_v1alpha1_meetings_by_meeting_id_notes | Get the notes of a meeting by its id. The notes are returned in a human readable format | meetingId (string) |
| get_v1alpha1_meetings | Get a list of meetings | No parameters |
| get_v1alpha1_meetings_by_meeting_id | Get a meeting by its id. The meeting is returned in a human readable format | meetingId (string) |
| get_v1alpha1_meetings_by_meeting_id_download | Returns 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_health | Health check | No parameters |
| custom | Call 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) |