Description
Unable to create meeting with Registration enabled by using below API. We can see Invite Link instead of Registration Link. When edit the meeting created through API, we can see “Registration” checkbox is unchecked. If I check it, I can see Registration Link. Not sure, what is missing in below API to enable Registration Link directly.
I am creating through PHP Programme. Taken this integration programme from here: Integration PHP API Zoom OAuth
$response = $client->request(‘POST’, ‘/v2/users/me/meetings’, [
“headers” => [
“Authorization” => “Bearer $jwt”
],
‘json’ => [
“topic” => “Test”,
“agenda” => “Test”,
“type” => 2,
“start_time” => “2020-11-10T15:00:00Z”, //$startTime,
“duration” => “30”, // 30 mins
“password” => “JWT”,
“approval_type” => 2
],
]);
Error
No Error. But it is creating Invite Link instead of registration link.
Which App Type (OAuth / Chatbot / JWT / Webhook)?
JWT
Which Endpoint/s?
/v2/users/me/meetings
How To Reproduce (If applicable)
Steps to reproduce the behavior:
- Run the code snipped through browser which is deployed in server
- Meeting create successfully. I am expecting Registration Link instead of Invite Link.
Screenshots (If applicable)
NA
Additional context
NA
