Create User function to send the join invitation in other language

Description
Im using the Zoom API to send invitation to be part of my users, using the function CreateUser and works good, I noticed when you change the language directly on the site, and manually add a user, the invitation also goes in the language of the site, so I want to know if I can use the API to send the invitation but in any other language

Error
No error

Which App Type (OAuth / Chatbot / JWT / Webhook)?
Im using JWT app and the endpoint
"https://api.zoom.us/v2/users (action: create)

public function create_zoom_user($correo,$nombre,$apellido){

    $curl = curl_init();

    curl_setopt_array($curl, array(

    CURLOPT_URL => "https://api.zoom.us/v2/users",

    CURLOPT_RETURNTRANSFER => true,

    CURLOPT_ENCODING => "",

    CURLOPT_MAXREDIRS => 10,

    CURLOPT_TIMEOUT => 30,

    CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,

    CURLOPT_SSL_VERIFYHOST => 0,

    CURLOPT_SSL_VERIFYPEER => false,

    CURLOPT_CUSTOMREQUEST => "POST",

    CURLOPT_POSTFIELDS => "{\"action\":\"create\",\"user_info\":{\"email\":\"$correo\",\"type\":2,\"first_name\":\"$nombre\",\"last_name\":\"$apellido\"},\"feature\":{\"large_meeting\":true,\"large_meeting_capacity\":500,\"webinar\":true,\"webinar_capacity\":500}}",

    CURLOPT_HTTPHEADER => array(

        "authorization: Bearer token",

        "content-type: application/json"

    ),

    ));

    $response = curl_exec($curl);

    $err = curl_error($curl);

    curl_close($curl);

    if ($err) {

    echo "cURL Error #:" . $err;

    } else {

     echo $response;

    }

Im using PHP

Hey @workinglive,

Thank you for reaching out to the Zoom Developer Forum. While you can change the language the invite is sent out in via the Zoom portal, there is currently no method to do this with the API. If you would like this feature to be considered for a future release, I recommend posting in the #feature-requests category.

image

However, if you have registration enabled for the meeting, you can choose the language for the Add Meeting Registrant invite using the language parameter.

This is covered in this forum post too:

https://devforum.zoom.us/t/language-settings-on-get-meeting-invitation-api/24786/2

I hope that helps!

Thanks,
Max

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.

Hey @workinglive ,

Just letting you know this feature request has been added to our backlog. (ZOOM-250683) :slight_smile:

We will keep you updated on its development. CC @MaxM

Thanks,
Tommy