meetingCreate endpoint

I’m in the zoom developer playground for v2 api (https://developer.zoom.us/playground/#/Meetings/meetingCreate)

I am having a problem with creating a meeting through the playground, using the defaults that are there.

I keep receiving Error: Bad Request.

{ "code": 300, "message": "Invalid enforce\_login\_domains, please separate multiple domains by semicolon" }

I am also receiving a Bad Request error, in my application when trying to use this endpoint (all other endpoints i’m using are working).

Hi Steven, 

There might be a bug in the default body object that we have provided. Can you provide your own body to see if that works? Below is an example.

{
“topic”:“My new meeting”,
“type”:“1”,
“start_time”:“2018-05-02’T’04:00:00”,
“duration”:“60”,
“timezone”:“America/Los_Angeles”,
“password”:“password”,
“agenda”:“This meeting is important.”,
“recurrence”:{
“type”:“1”,
“repeat_interval”:“1”,
“weekly_days”:“4”,
“monthly_day”:“2”,
“monthly_week”:“1”,
“monthly_week_day”:“4”,
“end_times”:“1”,
“end_date_time”:“2018-05-02’T’06:00:00”
},
“settings”:{
“host_video”:“false”,
“participant_video”:“true”,
“cn_meeting”:“false”,
“in_meeting”:“false”,
“join_before_host”:“false”,
“mute_upon_entry”:“false”,
“watermark”:“false”,
“use_pmi”:“false”,
“approval_type”:“0”,
“registration_type”:“1”,
“audio”:“both”,
“auto_recording”:“cloud”,
“enforce_login”:“false”
}
}

That was the issue. Thanks