Integration reference

Zoom Trigger and Action reference

Start Workflows from Zoom meeting, participant, and recording events, then schedule meetings and manage registrants.

10 Triggers8 ActionsManifests: Trigger v1 · Action v1

Authentication

Connect each customer's Zoom account through OAuth. FastHook encrypts the access and refresh tokens and renews access automatically.

  • Trigger account type: oauth2; reconnect by oauth.
  • Action connection type: oauth2; available modes: Connected Zoom account.

Create or reuse the account from a Trigger or Action dialog, or manage it under Settings → Connected accounts. See Authentication and permissions for scopes and access diagnostics, or Connected accounts for reuse, reconnect, revocation, and credential rotation.

Scopes and permissions

Base Trigger authorization requests: user:read:user, meeting:read:list_meetings, meeting:read:meeting, meeting:write:meeting, meeting:write:registrant, meeting:read:list_registrants, meeting:read:participant, cloud_recording:read:recording.

Operation-specific requirements appear in the tables below. Custom event selections can add scopes dynamically, so the current Trigger or Action dialog remains authoritative for the exact consent request.

Use Zoom as a Trigger

The current provider manifest contains 10 available Trigger definitions. Representative definitions include:

  • Meeting Created
  • Meeting Started
  • Participant Joined
  • Recording Completed
View all 10 available Trigger definitions
TriggerManifest keyDeliveryAdditional scopes
Meeting Createdzoom.meeting_created.instantinstantNone declared
Meeting Updatedzoom.meeting_updated.instantinstantNone declared
Meeting Deletedzoom.meeting_deleted.instantinstantNone declared
Meeting Startedzoom.meeting_started.instantinstantNone declared
Meeting Endedzoom.meeting_ended.instantinstantNone declared
Meeting Participant Joinedzoom.meeting_participant_joined.instantinstantNone declared
Meeting Participant Leftzoom.meeting_participant_left.instantinstantNone declared
Recording Completedzoom.recording_completed.instantinstantNone declared
Any Zoom Eventszoom.any_event.instantinstantNone declared
Custom Zoom Eventszoom.custom_webhook_events.instantinstantNone declared

Choose the narrowest event definition that fits the Workflow. Configure provider-specific resource and event filters in the Source dialog before adding broader Workflow Filters.

Use Zoom Actions

The current Action manifest contains 8 operations. Representative Actions include:

  • Create Meeting
  • List Meetings
  • Update Meeting
  • Add Meeting Registrant
View all 8 available Action definitions
ActionManifest keyAccess and authManifest rate limit
Create Meetingzoom.create_meetingNone declared
FastHook-managed account
1/second
List Meetingszoom.list_meetingsNone declared
FastHook-managed account
1/second
Get Meetingzoom.get_meetingNone declared
FastHook-managed account
1/second
Update Meetingzoom.update_meetingNone declared
FastHook-managed account
1/second
Delete Meetingzoom.delete_meetingNone declared
FastHook-managed account
1/second
Add Meeting Registrantzoom.add_meeting_registrantNone declared
FastHook-managed account
1/second
List Meeting Registrantszoom.list_meeting_registrantsNone declared
FastHook-managed account
1/second
Custom API Requestzoom.custom_api_requestNone declared
FastHook-managed account
1/second

The Action editor reads its required permissions, fields, remote resource pickers, output schema, and rate limit from the provider manifest. Available fields can change with the selected operation and authentication mode.

Build a Workflow

  1. Create a Source using a Zoom Trigger definition.
  2. Create a Workflow with that Source as its Trigger.
  3. Add the required Zoom Action and select the connected account.
  4. Map Trigger or earlier-Step data into the Action fields with the field picker.
  5. Add a Filter, Paths, Delay, or Transformation when the route needs it.
  6. Activate the Workflow, produce a controlled event, and verify the run in Audit and in Zoom.

Troubleshooting Zoom

The account is missing or cannot be selected
Confirm the active FastHook team, provider, account status, and authentication mode. A disabled or revoked account cannot execute an Action.
A resource picker is empty
Verify that the connected provider identity can access the resource itself. OAuth consent does not add workspace, repository, channel, drive, project, base, or record permissions.
The editor asks for additional scopes
Reconnect the same account from the affected Trigger or Action so FastHook can request its current manifest scopes. Then reopen the editor and select the resource again.
An active Workflow returns 401, 403, or a permission error
Compare the selected operation’s access requirements below with the account recorded in Audit. Check provider-side membership and object access before repeating the Action.
The provider returns 429 or a temporary 5xx
Inspect the Step attempt and retryability in Audit. FastHook can retry temporary failures, but provider quotas and idempotency rules still apply.

Provider-specific checks

  • Choose the connected Zoom user for each Source. FastHook manages the matching Zoom event subscription and removes it when the Source is no longer active.
  • FastHook verifies Zoom's timestamped HMAC signature and a subscription-specific secret header before accepting a webhook, then deduplicates deliveries by Zoom request ID.
  • Meeting and registration features depend on the connected user's Zoom plan and account settings.
  • Custom API Request is restricted to the Zoom API host and cannot override the Authorization header.
  • Action schemas are extracted from Zoom's official API Hub OpenAPI document. Webhook schemas preserve additional event-specific fields from Zoom.

Next