• Resolved levrden

    (@levrden)


    Hi !

    My user base is something like 3400 users
    When i go into the “zoom users” section, i can see only 300 users, and the one i am looking for is not there

    So i have clicked many times on “next page” to force looking for other users, and i have found the account. But the problem is that when creating a meeting, i only the few users for hosting, so i cannot add the user i’m looking for, even if i found him

    Is there a way to manually add user ? with its user id for example ?

    Thanks !

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor digamberpradhan

    (@digamberpradhan)

    Hi @levrden ,

    Firstly we are aware of this limitation and looking to resolve it.
    For a temporary solution – you can add a user via the filter

    add_filter('vczapi_users_list','cm_append_zoom_user');
    function cm_append_zoom_user($users){
    	$users[] = (object) [
    		"id"         => "your_host_id_here",
    		"first_name" => "Code",
    		"last_name"  => "Manas",
    		"email"      => "your_email_id"
    
    	];
    	return $users;
    }
    Plugin Author Deepen

    (@j_3rk)

    @levrden

    While above is also a solution.

    With new version, it will allow you to choose a host manually by entering either HOST ID or Email address of the user – When creating a new meeting from wp-admin > Zoom Meeting > Add new, you should see a new option “User not in the list? Click here to manually enter Host.” – Clicking this should allow that.

    Let me know here if there is an issue with this.

    Thread Starter levrden

    (@levrden)

    WON-DER-FUL

    As @digamberpradhan ‘s solution didn’t work, or maybe i didn’t understood, i just updated the plungin and now here it is !
    Thanks for the very quick answer !

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Add user on huge user base’ is closed to new replies.