Returns the join URL of a given groups conference.
GET
/api/groups/{groupId}/conferenceAuthorizations
Parameters
Path Parameters
groupId*
Typestring
RequiredQuery 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())