Returns the join URL of a given groups conference.
GET
/api/groups/{groupId}/conferenceAuthorizations
api_key
Type: API Key (header: X-CSRF-Token)
Parameters
Path Parameters
groupId*
Typestring
RequiredQuery Parameters
redirect
Should the response perform a 301 redirect to the actual conference?
Typestring
Responses
Authorization
api_key
Variables
Key
Value
groupId*
redirect
cURL
curl -X GET \
'http://localhost/api/groups/{groupId}/conference'
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())