Skip to main content
POST
/
api
/
accesscontrol
/
removeUsersFromAccessControlGroup
Remove users from access control group
curl --request POST \
  --url https://api2.rhombussystems.com/api/accesscontrol/removeUsersFromAccessControlGroup \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "groupUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "userUuids": [
    "AAAAAAAAAAAAAAAAAAAAAA"
  ]
}
'
{}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request to remove users from an organization group.

groupUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

userUuids
(string<RUUID> | null)[] | null

List of user UUIDs to remove from the group

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

Response

200 - application/json

OK

Response indicating successful removal of users from an organization group.