🚧 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/lockdownPlan/findLocationLockdownStates \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"stateFilter": [
"STANDARD_SECURITY"
]
}
'{
"states": [
{
"activeLockdownPlans": [
{
"lockdownPlanUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scope": "ORG_LOCKDOWN",
"scopeUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"createdAtMillis": 123,
"followingTestPlan": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"state": "STANDARD_SECURITY",
"stateChangedAtMillis": 123,
"updatedAtMillis": 123
}
]
}Finds the state of all lockdowns for the org
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/findLocationLockdownStates \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"stateFilter": [
"STANDARD_SECURITY"
]
}
'{
"states": [
{
"activeLockdownPlans": [
{
"lockdownPlanUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scope": "ORG_LOCKDOWN",
"scopeUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"createdAtMillis": 123,
"followingTestPlan": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"state": "STANDARD_SECURITY",
"stateChangedAtMillis": 123,
"updatedAtMillis": 123
}
]
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request to find location lockdown states with optional filtering.
Optional filter to limit results to specific lockdown states.
STANDARD_SECURITY, LOCKED_DOWN OK
Response containing a list of location lockdown states.
List of location lockdown states found for the organization.
Show child attributes
Was this page helpful?