Skip to main content
POST
/
api
/
accesscontrol
/
findAccessControlGroupByExactName
Find access control group by exact name
curl --request POST \
  --url https://api2.rhombussystems.com/api/accesscontrol/findAccessControlGroupByExactName \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "groupName": "Engineering Team"
}
'
{
  "group": {
    "createdAtMillis": 123,
    "description": "<string>",
    "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "name": "<string>",
    "orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
    "type": "RHOMBUS_ACCESS_CONTROL",
    "updatedAtMillis": 123,
    "uuid": "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 find organization groups by exact name.

groupName
string | null

Case insensitive name of the group to find, if it exists

Example:

"Engineering Team"

Response

200 - application/json

OK

Response containing organization group found by exact name.

group
object

Updated organization group details