API Endpoint(s) and/or Zoom API Event(s)
Use in-meeting controls (participant.invite.callout)
Description
In a meeting, I am triggering a call-out to add a participant into the meeting by calling them on the phone. This works (the phone call is triggered, and the participant can join). However, I’d like to specify the caller ID (calling number) for the callout.
When I use the Zoom UI to do the callout, I can select the Caller ID to be used. How can I select this number when triggering the callout via the API?
Error?
No error.
How To Reproduce
-
Initiate a meeting via any means
-
Perform a callout via the API as below
PATCH /v2/live_meetings/{{meetingId}}/events { "method": "participant.invite.callout", "params": { "invitee_name": "First Last", "phone_number": "12345678899", "invite_options": { "require_greeting": false, "require_pressing_one": false } } }