Specify Caller ID when triggering call-out via API

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

  1. Initiate a meeting via any means

  2. 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
        }
      }
    }
    

Hi @bes
Thanks for reaching out to us!
It looks like the caller_id is not supported via API.
But allow me to look further into this and will get back to you soon.