Create a room
Creates a new room with secure defaults for external API usage.
Defaults:
- Delegated user is set as owner
- Room slug auto-generated for uniqueness
- Telephony PIN auto-generated when enabled
- Creation tracked with application client_id for auditing
Request body
Example request
{
"access_level": "trusted",
"configuration": {
"can_publish_sources": [
"camera",
"microphone"
],
"everyone_can_mute": true
}
}Response
Room created successfully
Example response
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"slug": "aze-eere-zer",
"access_level": "trusted",
"url": "https://visio-sandbox.beta.numerique.gouv.fr/aze-eere-zer",
"telephony": {
"enabled": true,
"pin_code": "123456",
"phone_number": "+1-555-0100",
"default_country": "US"
},
"configuration": {
"can_publish_sources": [
"camera",
"microphone"
],
"everyone_can_mute": true
}
}Changes
Changed in 3 of the 8 revisions of this API.236
- ●
added the new
publicenum value to theresponse property for the response statusresponse-property-enum-value-added
- ●
added the new
restrictedenum value to theresponse property for the response statusresponse-property-enum-value-added
- ●
added the new
trustedenum value to theresponse property for the response statusresponse-property-enum-value-added
- ○
added the new optional request property
new-optional-request-property
- ○
added the new optional request property
new-optional-request-property
- ○
added the optional property
to the response with the statusresponse-optional-property-added
- ○
the response optional property
became not read-only for the statusresponse-optional-property-became-not-read-only
- ●
- ▲
api removed without deprecation
api-removed-without-deprecation
- ○
endpoint added
endpoint-added
- ▲
- ▲
api path removed without deprecation
api-path-removed-without-deprecation
- ○
endpoint added
endpoint-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲