🚧 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/findAccessControlGroupsByNamePrefix \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"groupNamePrefix": "Eng"
}
'{
"groups": [
{
"createdAtMillis": 123,
"description": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"type": "RHOMBUS_ACCESS_CONTROL",
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
]
}Retrieve all access control groups with a name starting with the specified prefix
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/findAccessControlGroupsByNamePrefix \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"groupNamePrefix": "Eng"
}
'{
"groups": [
{
"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 name prefix.
Name prefix to search for groups
"Eng"
OK
Response containing organization groups found by name prefix.
List of organization groups found by name prefix
Show child attributes
Was this page helpful?