**Trying to create a new meeting **
Endpoint: api.zoom.us/v2/users/me/meetings
Description
I have a token, in the header, I am using Postman to test the API
request body:
{
"topic": "topic",
"type": 2
}
Response:
code: 200
result:
{
"page_size": 30,
"total_records": 0,
"next_page_token": "",
"meetings": []
}
Expected result:
Code: 201
and response body with a lot of useful information such as meeting URL and so on
Make sure you’re sending a POST
request (create a meeting) instead of a GET
request (retrieve meetings).
ihrynkiv
(Ivan)
March 10, 2023, 7:13am
3
Check the API Call Logs to see how your request was understood. When our application creates a meeting, it produces a log entry with Status 201 and Endpoint https://api.zoom.us/v2/users/***/meetings
, with the details looking similar to the following:
{
"endpoint": "https://api.zoom.us/v2/users/***/meetings",
"response_headers": [
"Set-Cookie: zm_aid=""; Domain=.zoom.us; Expires=Thu, 01-Jan-1970 00:00:10 GMT; Path=/; Secure; HttpOnly"
],
"date_time": "2023-03-14 09:39:54",
"method": "POST",
"request_body": "{"topic":"SampleMeeting","type":1}",
"response": "{"uuid":"***","id":00000000000,"host_id":"***","host_email":"***","topic":"Sample Meeting","type":1,"status":"waiting","timezone":"America/New_York","created_at":"2023-03-14T13:39:54Z","start_url":"***","join_url":"***","settings":{"host_video":true,"participant_video":false,"cn_meeting":false,"in_meeting":false,"join_before_host":false,"jbh_time":0,"mute_upon_entry":false,"watermark":false,"use_pmi":false,"approval_type":2,"audio":"both","auto_recording":"none","enforce_login":fa ...",
"request_headers": [
"accept-encoding: gzip",
"authorization: ******",
"connection: close",
"content-type: application/json; charset=utf-8"
],
"request_params": [
],
"http_status": "201"
}