GET /meetings
List meetings for the authenticated user.Response (200)
Response (200)
PATCH /meetings/{platform}/{native_meeting_id}
Update meeting metadata (stored in meeting.data), commonly used for:
nameparticipantslanguagesnotes
- Google Meet
- Microsoft Teams
- Zoom
Response (200)
Response (200)
DELETE /meetings/{platform}/{native_meeting_id}
Delete transcript data and recording artifacts (best-effort) and anonymize the meeting.
Important semantics:
- Only works for finalized meetings (
completedorfailed). - Safe to retry: calling delete multiple times returns success; repeated calls are a no-op after the meeting is already anonymized.
- The meeting record remains for telemetry/usage tracking (with PII scrubbed).
- After deletion, the original
native_meeting_idis cleared, so you cannot retry by/{platform}/{native_meeting_id}later.
- Google Meet
- Microsoft Teams
- Zoom
DELETE /recordings/{recording_id}(see Recordings API)
Response (200)
Response (200)