Räume und Abteilungen erstellen
Summary
- Create a room or a department anywhere in the room structure
- Required API calls:
roomService/create
Request
Request to https://apis.alfaview.com/json/v1/roomService/create
{
"accessInfo": {
"requestId": "### REQUEST ID ###",
"accessToken": "### ACCESS TOKEN ###"
},
"room": {
"displayName": "Conference Room 1",
"mode": "ROOM_MODE_SPECTATOR",
"type": "ROOM_TYPE_ROOM",
"quotas": {
"name": "### QUOTA NAME ###"
},
"permissions": {
"### USER ID ###": "### MODERATOR ROLE ###",
"### USER ID ###": "### PARTICIPANT ROLE ###",
"### USER ID ###": "### PARTICIPANT ROLE ###",
...
},
"defaultPermissions": "### PARTICIPANT ROLE ###",
...
}
}
Response
{
...
"roomId": "b00430bd-a7ba-59db-aad9-2034464e92b9",
...
}
Notes
typeshould beROOM_TYPE_ROOMwhen creating a room orROOM_TYPE_DEPARTMENTwhen creating a departmentmodeshould beROOM_MODE_SPECTATORin order to allow for spectators, orROOM_MODE_NORMALto disallow spectators (applies to room creation only)parentIdcan be set to place the room or department under a parent room or department in the room structure, optionalquotashould reflect the customer quota in numbers, or the name of the quota set retrieved from the quota servicepermissionscan contain a set of user ids and their associated role in this room, optionaldefaultPermissionscan be set to allow all registered users of the account to enter this room in a default permission set
Zuletzt aktualisiert am 3. Juli 2025, 12:06 Uhr