Hi,
We are trying to consume Zoom REST APIs to create and record meetings. We are referring - https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate
The request body is
{
“topic”: “Test Meeting of Recurssive meeting in Browser”,
“type”: “8”,
“start_time”: “2019-07-30 21:00:00”,
“timezone”: “America/Los_Angeles”,
“agenda”: “Agenda of the meeting”,
“recurrence”: {
“type”: “2”,
“repeat_interval”: “1”,
“weekly_days”: “1,2”,
“end_times”: “12”,
“end_date_time”: “2019-08-30 21:00:00”
},
“settings”: {
“host_video”: “false”,
“participant_video”: “false”,
“cn_meeting”: “false”,
“in_meeting”: “false”,
“join_before_host”: “true”,
“mute_upon_entry”: “false”,
“watermark”: “true”,
“use_pmi”: “false”,
“approval_type”: “0”,
“registration_type”: “1”,
“audio”: “both”,
“auto_recording”: “cloud”,
“enforce_login”: “true”,
“enforce_login_domains”: “”,
“alternative_hosts”: “”
}
}
and the response is
{
“agenda”: “Agenda of the meeting”,
“created_at”: “2019-06-17T11:12:23Z”,
“host_id”: “MfZlTyOrSI22Wa__riEfvw”,
“id”: 975578973,
“join_url”: “https://zoom.us/j/975578973”,
“occurrences”: [
{
“duration”: 60,
“occurrence_id”: “1560769920000”,
“start_time”: “2019-06-17T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1561288320000”,
“start_time”: “2019-06-23T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1561374720000”,
“start_time”: “2019-06-24T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1561893120000”,
“start_time”: “2019-06-30T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1561979520000”,
“start_time”: “2019-07-01T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1562497920000”,
“start_time”: “2019-07-07T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1562584320000”,
“start_time”: “2019-07-08T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1563102720000”,
“start_time”: “2019-07-14T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1563189120000”,
“start_time”: “2019-07-15T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1563707520000”,
“start_time”: “2019-07-21T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1563793920000”,
“start_time”: “2019-07-22T11:12:00Z”,
“status”: “available”
},
{
“duration”: 60,
“occurrence_id”: “1564312320000”,
“start_time”: “2019-07-28T11:12:00Z”,
“status”: “available”
}
],
“recurrence”: {
“end_times”: 12,
“repeat_interval”: 1,
“type”: 2,
“weekly_days”: “1,2”
},
“settings”: {
“alternative_hosts”: “”,
“approval_type”: 2,
“audio”: “both”,
“auto_recording”: “none”,
“close_registration”: true,
“cn_meeting”: false,
“contact_email”: "zoom.integration.kr@gmail.com",
“contact_name”: “Zoom Kumar”,
“enforce_login”: false,
“enforce_login_domains”: “”,
“global_dial_in_countries”: [
“US”
],
“host_video”: false,
“in_meeting”: false,
“join_before_host”: true,
“mute_upon_entry”: false,
“participant_video”: false,
“registrants_confirmation_email”: true,
“use_pmi”: false,
“waiting_room”: false,
“watermark”: true
},
“start_url”: “https://zoom.us/s/975578973?zak=eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJjbGllbnQiLCJ1aWQiOiJNZlpsVHlPclNJMjJXYV9fcmlFZnZ3IiwiaXNzIjoid2ViIiwic3R5IjoxMDAsIndjZCI6ImF3MSIsImNsdCI6MCwic3RrIjoiU2Zpd0tRU0ctUkRwSDQtVXJVSUJ0anR0MkJNdVc0NlFhS3ZkQW93T05uQS5CZ1VzU2s4M0wxbFZiVWs0VHk5cmVVZEhWbkpWUXpCV1pIQkxNVTVGVkdwbmNWTkVNbmh6Y21wak9GRlNhejFBTmpVNU1tUTBPVEF3TWpObU9UUTBOekV5T1dJNE5EUXhaVGc0T0RRMk1qRTRNakV5WmpnNE5XRm1Oak5rTXpRNU9XSTFZV0ZtTVRreE1tUmlObVkxWlFBTU0wTkNRWFZ2YVZsVE0zTTlBQU5oZHpFIiwiZXhwIjoxNTYwNzc3MTQzLCJpYXQiOjE1NjA3Njk5NDMsImFpZCI6IndtM0FMdXlJVGYyMkNrT2kwR2xnV3ciLCJjaWQiOiIifQ.IY50N-gN0ssUFemexrguBfZHOut8Pfd4ih_e8l6XOWQ”,
“status”: “waiting”,
“timezone”: “America/Los_Angeles”,
“topic”: “Test Meeting of Recurssive meeting in Browser”,
“type”: 8,
“uuid”: “8VbuBK4+RZqb45OgsPs71g==”
}
We would like to understand why in the response body the start_time is not as the same as the start_time mentioned in the request body. The start_time is actually the creation time of the request.
May be we are missing something. We want to pass the start date time of the meeting. How to do that ?
Thanks,
Amit