v1
latestOpenAPI 3.1.02026-07-263788129.7 KBMeetings
List Meetings
Returns a paginated list of meetings.
post/v1/meetings/list
Request body
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"
}
],
"pagination": {
"page": 1,
"page_size": 25,
"total_count": 142,
"total_pages": 6
}
}