Not getting full response from API for Meeting Info

 I reffered document https://zoom.us/developer/overview/rest-meeting-api mention about the “Get Meeting Info” with endpoints

https://api.zoom.us/v1/meeting/get

 example response provided

{"uuid": "DLsLXuWsRjO5S9iYqhQZsA==","id": 123456789,"host\_id": "3V2w9PO81R\_2KZfDKoMermQ2","topic": "Zoom Meeting","password": "","h323\_password": "","status": 0,"option\_jbh": false,"option\_start\_type": "video","option\_host\_video": true,"option\_participants\_video": true,"option\_cn\_meeting": false,"option\_enforce\_login": false,"option\_enforce\_login\_domains": "","option\_in\_meeting": false,"option\_audio": "both","option\_alternative\_hosts": "","option\_use\_pmi": false,"type": 8,"start\_time": "","duration": 0,"timezone": "Asia/Hong\_Kong","start\_url": "https://www.zoom.us/s/123456789?zpk=xxxx","join\_url": "https://www.zoom.us/j/123456789","created\_at": "2016-12-20T02:51:42Z","occurrences": [{"occurrence\_id": "1483210260000","start\_time": "2017-01-01T02:51:00Z","duration": 60}]}  

When I’m testing it with my API and even in playground,
i’m not getting the “Occurrences” part in the response.

test request

https://api.zoom.us/v1/meeting/get?api\_key=#{api\_key}&api\_secret=#{api\_secret}&id=#{meet\_id}&host\_id=#{host\_id}


response: 

{
 "uuid": "XXXXXXXXXXXXX",
 "id": XXXXXXXXX,
 "host\_id": "XXXXXXXXXXXXXX",
 "topic": "presale call with John Parkerji",
 "password": "",
 "h323\_password": "",
 "status": 0,
 "option\_jbh": false,
 "option\_start\_type": "video",
 "option\_host\_video": true,
 "option\_participants\_video": true,
 "option\_cn\_meeting": false,
 "option\_enforce\_login": false,
 "option\_enforce\_login\_domains": "",
 "option\_in\_meeting": false,
 "option\_audio": "both",
 "option\_alternative\_hosts": "",
 "option\_use\_pmi": false,
 "type": 2,
 "start\_time": "2017-06-30T11:02:33Z",
 "duration": 60,
 "timezone": "America/Los\_Angeles",
 "start\_url": "start\_url",
 "join\_url": "join\_url",
 "created\_at": "2017-06-30T11:02:32Z"
}

Are you creating a recurring meeting? Can you provide what your are sending to create the meeting?

I am using API Version 2 (https://api.zoom.us/v2/users/{userId}/meetings) to create a meeting also met this issue that cannot get response for “occurrences”. My POST query like below: 

{

topic:“Hello Metting”,

type:2,

settings : {

host_video:false,

participant_video :false,

approval_type :2

},

recurrence: {

type:1,

repeat_interval:2,

weekly_days:3,

monthly_day:3,

monthly_week:2,

monthly_week_day:1,

end_times:1,

end_date_time:“2018-06-08T02:12:04Z”

}

}

 

 

Are you certain you can create the meeting? The JSON provided isn’t formatted properly. You are missing double quotes around all of the string keys. 

Any update on this? I think that latest question which was left unanswered is slightly irrelevant. I think it would be pretty obvious if the JSON was formatted incorrectly as you wouldn’t get back a successful response.

I can also confirm that when I perform a GET request to /meetings/{meetingId} I do not get any “occurrences” array in the response.

I am also having the same issue, and most of the fields are blank.
{“uuid”:“xtsSHkcgTHqJ5QqkyswEPg==”,“id”:94316368606,“topic”:“Strategies for Developing Effective Presentation - 0251902053”,“host”:“Remote Access USA 10",“email”:"remoteaccess10@amanet.org”,“user_type”:“Licensed”,**“start_time”:"",“end_time”:"",“duration”:"",“participants”:0,"**has_pstn":false,“has_voip”:false,“has_3rd_party_audio”:false,“has_video”:false,“has_screen_share”:false,“has_recording”:false,“has_sip”:false,“dept”:""}

Hi @dbailey,

Can you please provide the full request URL you’re using to get this response body? I’m happy to take a closer look.

Thanks,
Will

I have since resolved this. Thank you.

Ah, awesome. I’m happy to hear it! :slight_smile: