Global_dial_in_numbers no longer returned when creating or fetching a meeting

Description
Sending GET /v2/meetings/{meetingID} no longer returns the global_dial_in_numbers settings, regardless of the audio settings of the meeting.

Error
The web request succeeds, but does not contain the global_dial_in_numbers settings in the meeting JSON

Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth

Which Endpoint/s?
GET /v2/meetings/{meetingID}
POST /v2/me/meetings

How To Reproduce (If applicable)

POST the following json to create a meeting:

{"password":"","timezone":"America\/Chicago","topic":"asdfasdasf","start_time":"2020-03-20T13:15:00","settings":{"host_video":true,"use_pmi":false,"auto_recording":"local","mute_upon_entry":false,"join_before_host":true,"participant_video":true,"audio":"both"},"duration":60}

the response is:

{
	"password": "",
	"timezone": "America\/Chicago",
	"topic": "asdfasdasf",
	"start_time": "2020-03-20T13:15:00",
	"settings": {
		"host_video": true,
		"use_pmi": false,
		"auto_recording": "local",
		"mute_upon_entry": false,
		"join_before_host": true,
		"participant_video": true,
		"audio": "both"
	},
	"duration": 60
}

Screenshots (If applicable)
If applicable, add screenshots to help explain your problem.

Additional context
Just started noticing this in the past few days.

Hi @Adam_Wulf,

Did you observe this for a specific meeting or all the meetings that you scheduled?

I just tried to replicate your error by calling the create and get meeting APIs but was unable to do so.

Thanks,
Ojus

1 Like

I’m seeing this for all meetings i add or edit. Here’s a sample request to create a new meeting:

POST /v2/users/me/meetings HTTP/1.1
Host: api.zoom.us
Content-Type: application/json
Cookie: **snip**
User-Agent: Fantastical/1081 CFNetwork/1121.1.2 Darwin/19.3.0 (x86_64)
Connection: keep-alive
Accept: */*
Accept-Language: en-us
Content-Length: 284
Accept-Encoding: gzip, deflate, br
Authorization: **snip**

{
	"password": "",
	"timezone": "America\/Chicago",
	"topic": "sample zoom meeting",
	"start_time": "2020-03-22T15:00:00",
	"settings": {
		"host_video": true,
		"use_pmi": false,
		"auto_recording": "local",
		"mute_upon_entry": false,
		"join_before_host": true,
		"participant_video": true,
		"audio": "both"
	},
	"duration": 60
}

and here’s the response that I get. I would expect to see global_dial_in_numbers in the settings json

HTTP/1.1 201 
Date: Fri, 20 Mar 2020 20:26:06 GMT
Content-Type: application/json;charset=UTF-8
Content-Length: 1412
Connection: keep-alive
Server: ZOOM
x-zm-trackingid: WEB_f21fe0cd3ccf23123f946f57a81b68fe
X-Content-Type-Options: nosniff
Cache-Control: no-cache, no-store, must-revalidate, no-transform
Pragma: no-cache
Expires: Thu, 01 Jan 1970 00:00:00 GMT
Set-Cookie: **snip**
Strict-Transport-Security: max-age=31536000
X-XSS-Protection: 1; mode=block
Referrer-Policy: strict-origin-when-cross-origin

{
	"uuid": **snip**,
	"id": **snip**,
	"host_id": "kRrWGIL5Sca9XL7rtU1vtw",
	"topic": "sample zoom meeting",
	"type": 2,
	"status": "waiting",
	"start_time": "2020-03-22T20:00:00Z",
	"duration": 60,
	"timezone": "America/Chicago",
	"created_at": "2020-03-20T20:26:05Z",
	"start_url": "**snip**",
	"join_url": "**snip**",
	"settings": {
		"host_video": true,
		"participant_video": true,
		"cn_meeting": false,
		"in_meeting": false,
		"join_before_host": true,
		"mute_upon_entry": false,
		"watermark": false,
		"use_pmi": false,
		"approval_type": 2,
		"audio": "both",
		"auto_recording": "local",
		"enforce_login": false,
		"enforce_login_domains": "",
		"alternative_hosts": "",
		"close_registration": false,
		"registrants_confirmation_email": true,
		"waiting_room": false,
		"registrants_email_notification": true,
		"meeting_authentication": false
	}
}

Hey @Adam_Wulf,

I believe this is because we took away Global Dial In temporarily for free accounts due to the increased volume of Zoom usage.

Thanks,
Tommy

Thanks @tommy that makes sense. And thanks for being part of the glue holding this economy together through this crazy virus - keep up the great work :slight_smile:

Adam

2 Likes

Thanks for the kind words @Adam_Wulf! :slight_smile:

-Tommy