v1
latestOpenAPI 3.1.02026-07-263788129.7 KBMeetings
Get a Meeting
Gets a single meeting by its meeting_id. The detail response includes the AI-generated summary, a presigned video URL, and the full transcript with speaker attribution.
get/v1/meetings/{meeting_id}
Path parameters
meeting_idstring uuid required
Response
Successful Response
Example response
{
"data": {
"id": "mtg_abc123",
"account_id": "acc_abc123",
"opportunity_id": "opp_abc123",
"title": "Discovery Call",
"description": "Initial discovery call with Acme",
"start_time": "2026-03-01T10:00:00Z",
"end_time": "2026-03-01T10:30:00Z",
"meeting_platform": "Zoom",
"organizer": {
"email": "jane@acme.com",
"display_name": "Jane Smith"
},
"attendees": [
{
"email": "john@acme.com",
"display_name": "John Doe",
"response_status": "accepted"
}
],
"created_at": "2026-03-01T09:00:00Z",
"updated_at": "2026-03-01T09:30:00Z"
}
}