Still no success. I try to detail every move i make about that:
Im using this account here.
- I get an Access Token, i use it for all the calls i make.
- I create the meeting via /v2/users/me/meetings (i also tried the User-Id instead of “me” for same unsuccesful results).
- This is the JSON Body of the request:
{
"agenda" : "test",
"default_password" : false,
"duration" : 240,
"password" : "abcdef",
"pre_schedule" : true,
"start_time" : "2022-12-09T10:00:00",
"timezone" : "Europe/Berlin",
"topic" : "Test MPO #9",
"type" : 2,
"approval_type" : 0,
"schedule_for" : "edited"
}
I used approval_type : 0 this time, i didnt use that parameter before. I also added “schedule_for” and tried the UserId and the Email in the example.
- I get the following response from zoom:
{
"uuid": "edited",
"id": edited,
"host_id": "editd",
"host_email": "edited",
"topic": "Test MPO #9",
"type": 2,
"status": "waiting",
"start_time": "2022-12-09T09:00:00Z",
"duration": 240,
"timezone": "Europe/Berlin",
"agenda": "test",
"created_at": "2022-12-05T09:45:46Z",
"start_url": "/s/95642608898?zak={edited}",
"password": "abcdef",
"h323_password": "512410",
"pstn_password": "512410",
"encrypted_password": "{edited}",
"settings": {
"host_video": false,
"participant_video": false,
"cn_meeting": false,
"in_meeting": false,
"join_before_host": false,
"jbh_time": 0,
"mute_upon_entry": false,
"watermark": false,
"use_pmi": false,
"approval_type": 2,
"audio": "both",
"auto_recording": "none",
"enforce_login": false,
"enforce_login_domains": "",
"alternative_hosts": "",
"alternative_host_update_polls": false,
"close_registration": false,
"show_share_button": false,
"allow_multiple_devices": false,
"registrants_confirmation_email": true,
"waiting_room": false,
"request_permission_to_unmute_participants": false,
"global_dial_in_countries": [
"US"
],
"global_dial_in_numbers": [
{
"country_name": "US",
"number": "+1 3863475053",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 5074734847",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 5642172000",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"city": "New York",
"number": "+1 6465588656",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 6469313860",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 6694449171",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"city": "San Jose",
"number": "+1 6699009128",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 6892781000",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 7193594580",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 2532050468",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"city": "Tacoma",
"number": "+1 2532158782",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"city": "Washington DC",
"number": "+1 3017158592",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 3052241968",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 3092053325",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"city": "Chicago",
"number": "+1 3126266799",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"city": "Houston",
"number": "+1 3462487799",
"type": "toll",
"country": "US"
},
{
"country_name": "US",
"number": "+1 3602095623",
"type": "toll",
"country": "US"
}
],
"registrants_email_notification": true,
"meeting_authentication": false,
"additional_data_center_regions": [],
"encryption_type": "enhanced_encryption",
"approved_or_denied_countries_or_regions": {
"enable": false
},
"breakout_room": {
"enable": false
},
"alternative_hosts_email_notification": true,
"device_testing": false,
"focus_mode": false,
"enable_dedicated_group_chat": false,
"private_meeting": false,
"email_notification": true,
"host_save_video_order": false
},
"pre_schedule": true
}
- I try finding that (successfully created) meeting via:
- /v2/users/me/meetings
- /v2/users/{userID}/meetings
- And on the website Sign In - Zoom
The response is 200 OK:
{
"page_size": 30,
"total_records": 0,
"next_page_token": "",
"meetings": []
}
And i dont find it there.
Interestingly, i can create and find meetings with a different, but BASIC account. But i need to get it running with that newer PRO account.