VB6 / Zoom API / Get a meeting
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
Dim queryParams As New ChilkatJsonObject
success = queryParams.UpdateString("occurrence_id","quis officia in reprehenderit")
success = queryParams.UpdateString("show_previous_occurrences","true")
' Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = "<access_token>"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequestParams("GET","https://api.zoom.us/v2/meetings/:meetingId",queryParams)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0
Debug.Print "Response Body:"
Debug.Print jResp.Emit()
Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
Debug.Print "Response Header:"
Debug.Print resp.Header
Debug.Print "Failed."
Exit Sub
End If
' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)
' {
' "agenda": "API overview",
' "created_at": "2019-09-09T15:54:24Z",
' "duration": 60,
' "host_id": "ABcdofjdogh11111",
' "id": 1234555466,
' "join_url": "https://zoom.us/j/1234555466",
' "settings": {
' "alternative_hosts": "example@example.com",
' "approval_type": 2,
' "audio": "both",
' "auto_recording": "local",
' "close_registration": false,
' "cn_meeting": false,
' "enforce_login": false,
' "enforce_login_domains": "example.com",
' "global_dial_in_countries": [
' "US"
' ],
' "global_dial_in_numbers": [
' {
' "city": "New York",
' "country": "US",
' "country_name": "US",
' "number": "+1 000011100",
' "type": "toll"
' },
' {
' "city": "San Jose",
' "country": "US",
' "country_name": "US",
' "number": "+1 6699006833",
' "type": "toll"
' },
' {
' "city": "San Jose",
' "country": "US",
' "country_name": "US",
' "number": "+1 221122112211",
' "type": "toll"
' }
' ],
' "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": false,
' "registrants_email_notification": true
' },
' "start_time": "2019-08-30T22:00:00Z",
' "start_url": "https://zoom.us/1234555466/cdknfdffgggdfg4MDUxNjY0LCJpYXQiOjE1NjgwNDQ0NjQsImFpZCI6IjRBOWR2QkRqVHphd2J0amxoejNQZ1EiLCJjaWQiOiIifQ.Pz_msGuQwtylTtYQ",
' "status": "waiting",
' "timezone": "America/New_York",
' "topic": "My API Test",
' "type": 2,
' "uuid": "iAABBBcccdddd7A=="
' }
' Sample code for parsing the JSON response...
' Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Dim strVal As String
Dim city As String
Dim country As String
Dim country_name As String
Dim v_number As String
Dim v_type_str As String
Dim agenda As String
agenda = jResp.StringOf("agenda")
Dim created_at As String
created_at = jResp.StringOf("created_at")
Dim duration As Long
duration = jResp.IntOf("duration")
Dim host_id As String
host_id = jResp.StringOf("host_id")
Dim id As Long
id = jResp.IntOf("id")
Dim join_url As String
join_url = jResp.StringOf("join_url")
Dim Alternative_hosts As String
Alternative_hosts = jResp.StringOf("settings.alternative_hosts")
Dim Approval_type As Long
Approval_type = jResp.IntOf("settings.approval_type")
Dim Audio As String
Audio = jResp.StringOf("settings.audio")
Dim Auto_recording As String
Auto_recording = jResp.StringOf("settings.auto_recording")
Dim Close_registration As Long
Close_registration = jResp.BoolOf("settings.close_registration")
Dim Cn_meeting As Long
Cn_meeting = jResp.BoolOf("settings.cn_meeting")
Dim Enforce_login As Long
Enforce_login = jResp.BoolOf("settings.enforce_login")
Dim Enforce_login_domains As String
Enforce_login_domains = jResp.StringOf("settings.enforce_login_domains")
Dim Host_video As Long
Host_video = jResp.BoolOf("settings.host_video")
Dim In_meeting As Long
In_meeting = jResp.BoolOf("settings.in_meeting")
Dim Join_before_host As Long
Join_before_host = jResp.BoolOf("settings.join_before_host")
Dim Mute_upon_entry As Long
Mute_upon_entry = jResp.BoolOf("settings.mute_upon_entry")
Dim Participant_video As Long
Participant_video = jResp.BoolOf("settings.participant_video")
Dim Registrants_confirmation_email As Long
Registrants_confirmation_email = jResp.BoolOf("settings.registrants_confirmation_email")
Dim Use_pmi As Long
Use_pmi = jResp.BoolOf("settings.use_pmi")
Dim Waiting_room As Long
Waiting_room = jResp.BoolOf("settings.waiting_room")
Dim Watermark As Long
Watermark = jResp.BoolOf("settings.watermark")
Dim Registrants_email_notification As Long
Registrants_email_notification = jResp.BoolOf("settings.registrants_email_notification")
Dim start_time As String
start_time = jResp.StringOf("start_time")
Dim start_url As String
start_url = jResp.StringOf("start_url")
Dim status As String
status = jResp.StringOf("status")
Dim timezone As String
timezone = jResp.StringOf("timezone")
Dim topic As String
topic = jResp.StringOf("topic")
Dim v_type As Long
v_type = jResp.IntOf("type")
Dim uuid As String
uuid = jResp.StringOf("uuid")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("settings.global_dial_in_countries")
Do While i < count_i
jResp.I = i
strVal = jResp.StringOf("settings.global_dial_in_countries[i]")
i = i + 1
Loop
i = 0
count_i = jResp.SizeOfArray("settings.global_dial_in_numbers")
Do While i < count_i
jResp.I = i
city = jResp.StringOf("settings.global_dial_in_numbers[i].city")
country = jResp.StringOf("settings.global_dial_in_numbers[i].country")
country_name = jResp.StringOf("settings.global_dial_in_numbers[i].country_name")
v_number = jResp.StringOf("settings.global_dial_in_numbers[i].number")
v_type_str = jResp.StringOf("settings.global_dial_in_numbers[i].type")
i = i + 1
Loop
Curl Command
curl -G -d "occurrence_id=quis%20officia%20in%20reprehenderit"
-d "show_previous_occurrences=true"
-H "Authorization: Bearer <access_token>"
https://api.zoom.us/v2/meetings/:meetingId
Postman Collection Item JSON
{
"name": "Get a meeting",
"request": {
"auth": {
"type": "oauth2"
},
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit&show_previous_occurrences=true",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit",
"description": "Meeting Occurrence ID. Provide this field to view meeting details of a particular occurrence of the [recurring meeting](https://support.zoom.us/hc/en-us/articles/214973206-Scheduling-Recurring-Meetings)."
},
{
"key": "show_previous_occurrences",
"value": "true",
"description": "Set the value of this field to `true` if you would like to view meeting details of all previous occurrences of a [recurring meeting](https://support.zoom.us/hc/en-us/articles/214973206-Scheduling-Recurring-Meetings). "
}
],
"variable": [
{
"key": "meetingId",
"value": "68423085",
"description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
}
]
},
"description": "Retrieve the details of a meeting.<br><br>\n**Scopes:** `meeting:read:admin` `meeting:read`<br>\n\n **[Rate Limit Label](https://marketplace.zoom.us/docs/api-reference/rate-limits#rate-limits):** `Light` \n\n"
},
"response": [
{
"name": "**HTTP Status Code:** `200`<br>\nMeeting object returned.",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit&show_previous_occurrences=true",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
},
{
"key": "show_previous_occurrences",
"value": "true"
}
],
"variable": [
{
"key": "meetingId",
"value": "68423085",
"description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"agenda\": \"API overview\",\n \"created_at\": \"2019-09-09T15:54:24Z\",\n \"duration\": 60,\n \"host_id\": \"ABcdofjdogh11111\",\n \"id\": 1234555466,\n \"join_url\": \"https://zoom.us/j/1234555466\",\n \"settings\": {\n \"alternative_hosts\": \"example@example.com\",\n \"approval_type\": 2,\n \"audio\": \"both\",\n \"auto_recording\": \"local\",\n \"close_registration\": false,\n \"cn_meeting\": false,\n \"enforce_login\": false,\n \"enforce_login_domains\": \"example.com\",\n \"global_dial_in_countries\": [\n \"US\"\n ],\n \"global_dial_in_numbers\": [\n {\n \"city\": \"New York\",\n \"country\": \"US\",\n \"country_name\": \"US\",\n \"number\": \"+1 000011100\",\n \"type\": \"toll\"\n },\n {\n \"city\": \"San Jose\",\n \"country\": \"US\",\n \"country_name\": \"US\",\n \"number\": \"+1 6699006833\",\n \"type\": \"toll\"\n },\n {\n \"city\": \"San Jose\",\n \"country\": \"US\",\n \"country_name\": \"US\",\n \"number\": \"+1 221122112211\",\n \"type\": \"toll\"\n }\n ],\n \"host_video\": false,\n \"in_meeting\": false,\n \"join_before_host\": true,\n \"mute_upon_entry\": false,\n \"participant_video\": false,\n \"registrants_confirmation_email\": true,\n \"use_pmi\": false,\n \"waiting_room\": false,\n \"watermark\": false,\n \"registrants_email_notification\": true\n },\n \"start_time\": \"2019-08-30T22:00:00Z\",\n \"start_url\": \"https://zoom.us/1234555466/cdknfdffgggdfg4MDUxNjY0LCJpYXQiOjE1NjgwNDQ0NjQsImFpZCI6IjRBOWR2QkRqVHphd2J0amxoejNQZ1EiLCJjaWQiOiIifQ.Pz_msGuQwtylTtYQ\",\n \"status\": \"waiting\",\n \"timezone\": \"America/New_York\",\n \"topic\": \"My API Test\",\n \"type\": 2,\n \"uuid\": \"iAABBBcccdddd7A==\"\n}"
},
{
"name": "**HTTP Status Code:** `400`<br>\n**Error Code:** `1010`<br>\nUser not found on this account: {accountId}.<br>**Error Code:** `3000`<br>\nCannot access webinar info.",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit&show_previous_occurrences=true",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
},
{
"key": "show_previous_occurrences",
"value": "true"
}
],
"variable": [
{
"key": "meetingId",
"value": "68423085",
"description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
},
{
"name": "**HTTP Status Code:** `404`<br>\nMeeting not found.<br>\n**Error Code:** `1001`<br>\nUser not exist: {userId}.<br>**Error Code:** `3001`<br>\nMeeting {meetingId} is not found or has expired.",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: oauth2",
"key": "Authorization",
"value": "<token>"
}
],
"url": {
"raw": "{{baseUrl}}/meetings/:meetingId?occurrence_id=quis officia in reprehenderit&show_previous_occurrences=true",
"host": [
"{{baseUrl}}"
],
"path": [
"meetings",
":meetingId"
],
"query": [
{
"key": "occurrence_id",
"value": "quis officia in reprehenderit"
},
{
"key": "show_previous_occurrences",
"value": "true"
}
],
"variable": [
{
"key": "meetingId",
"value": "68423085",
"description": "(Required) The meeting's ID. \n\n When storing this value in your database, you must store it as a **long** format integer and **not** an integer. Meeting IDs can exceed 10 digits."
}
]
}
},
"status": "Not Found",
"code": 404,
"_postman_previewlanguage": "text",
"header": [
{
"key": "Content-Type",
"value": "text/plain"
}
],
"cookie": [
],
"body": ""
}
]
}