Berechtigungsgruppen listen
Summary
- Request all permission groups for the authenticated company
- Permission groups are required for other API calls (e.g. guest link creation)
- Required API calls:
businessLogicService/permissionGroups/list
Request
Request to https://apis.alfaview.com/json/v1/businessLogicService/permissionGroups/list
{
"accessInfo": {
"requestId": "### REQUEST ID ###",
"accessToken": "### ACCESS TOKEN ###"
}
}
Response
{
"replyInfo": {
"statusMessage": "OK"
},
"permissionGroups": {
"1390a746-5fda-454a-9a10-b21af32e38ed": {
"name": "Moderator",
"order": 1,
"permissions": {
"voice": true,
"video": true,
"promote": true,
"join": true,
"screen": true,
"chat": true,
"chatBroadcast": true
}
},
"6067b76c-5450-4fab-b70d-c7ba99eddcf2": {
"name": "Participant",
"order": 2,
"permissions": {
"voice": true,
"video": true,
"join": true,
"screen": true,
"chat": true
}
},
"885e356d-02dd-4eec-960c-cd647f4b859a": {
"name": "Spectator",
"order": 3,
"permissions": {
"join": true,
"chat": true
}
},
...
}
}
Notes
The permissionGroups
array carries the permission group Ids as the key
Zuletzt aktualisiert am 3. Juli 2025, 12:03 Uhr