🚧 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/findAccessControlGroupsByUserMembership \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"groups": [
{
"createdAtMillis": 123,
"description": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"type": "RHOMBUS_ACCESS_CONTROL",
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
]
}Find all access control groups a user belongs to
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/findAccessControlGroupsByUserMembership \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"userUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"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 user membership.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
OK
Response containing organization groups found by user membership.
List of organization groups found by user membership
Show child attributes
Was this page helpful?