Skip to main content
Version: Kotlin Multiplatform SDK

Manage groups

Groups let you associate users with accounts, companies, teams, workspaces, or any other entity in your product.

Assign a groupโ€‹

Screeb.assignGroup(
groupType = "company",
groupName = "Screeb",
properties = mapOf(
"plan" to "enterprise",
"employees" to 42,
),
)

Remove a groupโ€‹

Screeb.unassignGroup(
groupType = "company",
groupName = "Screeb",
)