Initialization
Before you can use the Groups API, you need to initialize the Controller API. Please refer to the Initialization guide for more information. After initializing the Controller API, you can usecontrollerApi.getGroups() to access the Groups API.
Create Group
Creating groups is very simple. You can create a group with thecreateGroup method.
- Kotlin
- Java
Get Groups
We provide multiple ways to get groups. You can get a specific group by name, all groups, or groups by type.- Kotlin
- Java
Update & Delete Groups
Updating and deleting groups is also very simple. You can update a group with theupdateGroup method and delete a group with the deleteGroup method.
- Kotlin
- Java