I am testing creating a meeting with “auto_recording” setting, and no matter what, on the response I get:
auto_recording: "none"
Example POST to: https://api.zoom.us/v2/users/{MY_USER_ID}/meetings
With this data:
{
"topic": "Auto Recording Test 2",
"type": 1,
"settings": {
"auto_recording": "cloud"
}
}
And receive this response (Id’s and start_url redacted)
{
"uuid": "XXXXXXXXX",
"id": XXXXXXXXXXXX,
"host_id": "XXXXXXXXX",
"topic": "Auto Recording Test 2",
"type": 1,
"status": "waiting",
"timezone": "America/New_York",
"created_at": "2019-03-08T15:50:52Z",
"start_url": "https://zoom.us/s/XXXXXXX/?blahblahblah",
"join_url": "https://zoom.us/j/XXXXXXX",
"settings": {
"host_video": false,
"participant_video": false,
"cn_meeting": false,
"in_meeting": false,
"join_before_host": false,
"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": "",
"close_registration": false,
"registrants_confirmation_email": true,
"waiting_room": false,
"global_dial_in_countries": [
"US"
]
}
}