LogoLogo
Go to WebsiteLoginGet a Demo
  • Introduction
  • Getting Started
  • Authentication
  • Users
    • GET /users
    • GET /users/{id}
  • User Groups
    • GET /UsersGroups/
    • GET /UsersGroups/{usersGroupId}
    • GET /UsersGroups/{usersGroupId}/DefaultWorkApps
    • GET /UsersGroups/{usersGroupId}/HiddenWorkApps
    • GET /UsersGroups/{usersGroupId}/Users
    • POST /UsersGroups/{usersGroupId}/Users
    • DELETE /UsersGroups/{usersGroupId}/Users/{userId}
  • Applications
    • GET /WorkApps
    • GET /WorkApps/{workAppId}
    • GET /WorkApps/{workAppId}/Accesses
    • GET /WorkApps/{workAppId}/PermissionLevels
    • POST /WorkApps/Accesses
    • PUT /WorkApps/{workAppId}/Policies/{requestType}
    • PUT /WorkApps/{workAppId}/PermissionLevels/{permissionLevelId}/Policies/{requestType}
  • Tasks
    • GET /Tasks/{taskId}
    • POST /Tasks/{taskId}/Approve
    • POST /Tasks/{taskId}/Decline
  • Policies
    • GET /Policies/CompatiblePolicies/{requestType}
  • Webhooks
    • Webhook’s signature verification
  • Changelog
Powered by GitBook

Links

  • Privacy policy
  • Imprint
  • Support

© All right reserved, Cakewalk Technology GmbH 2025

On this page

Was this helpful?

User Groups

PreviousGET /users/{id}NextGET /UsersGroups/

Last updated 1 day ago

Was this helpful?

The User Groups endpoints allow you to retrieve and inspect logical groupings of users, typically synced from identity providers or directory systems. These groups often reflect teams, departments, or organizational roles, and they provide useful context for understanding and managing inherited access to applications.

These endpoints are commonly used to:

  • Investigate which users belong to which groups

  • Understand the default vs hidden app access granted via group membership

  • Support group-based governance, reporting, or offboarding flows


📘 User Groups Endpoints

Endpoint

Method

Description

GET

Returns a list of all user groups, including metadata like name, external ID, and sync source.

GET

Retrieves metadata for a specific user group, including name and integration source.

GET

Lists the work apps that are default-assigned to users via group membership.

GET

Lists work apps that are associated with the group but hidden from end-user views.

GET

Lists the users that are members of the specified group.

POST

Adds user(s) to a specified user group.

DELETE

Removes a single user from a specified user group.

/UsersGroups
/UsersGroups/{usersGroupId}
/UsersGroups/{usersGroupId}/DefaultWorkApps
/UsersGroups/{usersGroupId}/HiddenWorkApps
/UsersGroups/{usersGroupId}/Users
/UsersGroups/{usersGroupId}/Users
/UsersGroups/{usersGroupId}/Users/{userId}