Skip to main content
🐙
Docs

Meetings API

Create, update, and retrieve meetings via the Delegate REST API.

#List meetings

GET /api/meetings
Query paramTypeDescription
upcomingbooleanIf true, returns only future meetings
workspaceIdstringFilter by workspace
limitnumberMax results (default 20)

#Create meeting

POST /api/meetings
Request Body
{
  "title": "Sprint Planning",
  "startTime": "2026-03-20T10:00:00Z",
  "endTime": "2026-03-20T11:00:00Z",
  "platform": "google_meet",
  "attendees": ["user@example.com"],
  "agenda": "Review backlog, assign sprint tasks"
}
ℹ️Note
Supported platform values: google_meet, zoom, teams, in_person.

#Get meeting

GET /api/meetings/:id

Returns full meeting details including summary, action items, and decisions (if completed).

#Update meeting

PATCH /api/meetings/:id

Update title, time, attendees, or meeting notes. Partial update supported.