Skip to content

Returns the join URL of a given groups conference.

GET
/api/groups/{groupId}/conference

Authorizations

Parameters

Path Parameters

groupId*
Typestring
Required

Query Parameters

redirect

Should the response perform a 301 redirect to the actual conference?

Typeboolean

Responses

Success without a redirect

Samples

cURL
curl -X GET http://localhost/api/groups/{groupId}/conference
JavaScript
fetch("http://localhost/api/groups/{groupId}/conference")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/groups/{groupId}/conference");
Python
import requests
response = requests.get("http://localhost/api/groups/{groupId}/conference")
print(response.json())