Lodol Docs

Zoom

API actions for the Zoom integration.

Zoom

Schedule and manage Zoom meetings.


Add registrant to a Zoom meeting

Register a participant for a Zoom meeting.

Parameters

ParameterTypeRequiredDescription
meeting_idstringNoThe Zoom meeting ID to register for.
emailstringNoRegistrant email address.
first_namestringNoRegistrant first name.
last_namestringNoOptional registrant last name.

Response

{
  "registrant": {}
}

Create a Zoom meeting

Schedule a new Zoom meeting for a host.

Parameters

ParameterTypeRequiredDescription
user_idstringNoThe Zoom user who will host the meeting. Use their Zoom login email, or 'me' for the account owner.
topicstringNoThe meeting topic or title.
meeting_typestringNoWhether the meeting starts now or at a scheduled date and time. Defaults to scheduled.
start_timestringNoOptional start time for a scheduled meeting, in ISO 8601 format (UTC), for example 2024-08-25T14:00:00Z.
duration_minutesnumberNoOptional meeting length, in minutes.
timezonestringNoOptional timezone for the start time (e.g., America/Los_Angeles).
agendastringNoOptional agenda or description for the meeting.

Response

{
  "meeting": {}
}

Get Zoom meeting details

Look up the details for a Zoom meeting.

Parameters

ParameterTypeRequiredDescription
meeting_idstringNoThe ID of the Zoom meeting to look up.

Response

{
  "meeting": {}
}

List upcoming Zoom meetings

List the upcoming meetings for a Zoom user.

Parameters

ParameterTypeRequiredDescription
user_idstringNoThe Zoom user ID or email whose meetings to list.
page_sizenumberNoOptional maximum number of meetings to return (up to 300).

Response

{
  "meetings": {}
}

On this page