Unable to get my credentials for testing

Hi I am looking to retrieve the following values for the development 

 

var rtc_userid = “”;
var rtc_username = “”;
var rtc_token = “”;
var rtc_meeting = “”;

var rtc_appkey      = “”;
var rtc_appsecret   = “”;
var rtc_domain      = “”;

Could you let me know where I could the following? The documentation says about a “credentials tab” although when I log in I do not see any similar tab.

I see only.

Hi Prakash,

please click on “Zoom for Developers” and click into the platform you want to test, under “credentials” you should see “App Key” and “App Secret”. 

for userid, username, token, meeting, I recommend you use API called: user/getbyemail, which is available here: https://zoom.us/developer/api/playground

Best

 

Thanks Wei Guo.

I was able to get the app key and app secret from the credentials tab. 

Could you help me out with the rest (userid, username, token, meeting AND domain). The following is the response I got from the user/getbyemail api

 

{
“id”: “<id-here>”,
“email”: “prakash.raman@nightlight.me”,
“first_name”: “Prakash”,
“last_name”: “Raman”,
“pic_url”: “”,
“type”: 2,
“disable_chat”: false,
“disable_private_chat”: false,
“enable_e2e_encryption”: false,
“enable_silent_mode”: false,
“disable_group_hd”: false,
“disable_recording”: false,
“enable_large”: false,
“large_capacity”: 0,
“enable_webinar”: false,
“webinar_capacity”: 0,
“disable_feedback”: false,
“disable_jbh_reminder”: false,
“disable_cancel_meeting_notification”: false,
“enable_cmr”: true,
“enable_auto_recording”: false,
“enable_cloud_auto_recording”: false,
“enable_breakout_room”: false,
“enable_polling”: false,
“enable_annotation”: true,
“enable_auto_saving_chats”: false,
“enable_co_host”: false,
“enable_enter_exit_chime”: false,
“enable_remote_support”: false,
“enable_file_transfer”: false,
“enable_virtual_background”: false,
“enable_attention_tracking”: false,
“enable_waiting_room”: false,
“enable_closed_caption”: false,
“enable_far_end_camera_control”: false,
“enable_share_dual_camera”: false,
“enable_phone_participants_password”: false,
“enable_use_pmi”: false,
“enable_auto_delete_cmr”: false,
“auto_delete_cmr_days”: -2147483648,
“verified”: 1,
“pmi”: 4015928028,
“meeting_capacity”: 0,
“dept”: “”,
“timezone”: “America/Chicago”,
“created_at”: “2017-05-11T00:32:29Z”,
“lastLoginTime”: “2017-05-17T20:37:33Z”,
“token”: “<token-here>”,
“zpk”: “<zpk-here>”,
“status”: 0
}

Hi Prakash, 

user id is “id”, username can be anything, token is “token”, meeting number can be any valid meeting you schedule for future or you can put “pmi”, domain should be “zoom.us

Best