🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
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"
}
}Retrieve the access control group with the specified 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"
}
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request to find organization groups by exact name.
Case insensitive name of the group to find, if it exists
"Engineering Team"
OK
Response containing organization group found by exact name.
Updated organization group details
Show child attributes
Was this page helpful?