Activate lockdown for the specified location
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lockdownPlanUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"stateUpdatedAtMillis": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation"
payload = {
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lockdownPlanUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"stateUpdatedAtMillis": 123
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
lockdownPlanUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
stateUpdatedAtMillis: 123
})
};
fetch('https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"lockdownPlanUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"stateUpdatedAtMillis\": 123\n}")
.asString();{
"result": "SUCCESS",
"state": {
"activeLockdownPlans": [
{
"lockdownPlanUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scope": "ORG_LOCKDOWN",
"scopeUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"createdAtMillis": 123,
"followingTestPlan": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"state": "STANDARD_SECURITY",
"stateChangedAtMillis": 123,
"updatedAtMillis": 123
}
}Lockdown Plan Webservice
Activate lockdown for the specified location
Activate lockdown for the specified location
POST
/
api
/
accesscontrol
/
lockdownPlan
/
activateLockdownForLocation
Activate lockdown for the specified location
curl --request POST \
--url https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lockdownPlanUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"stateUpdatedAtMillis": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation"
payload = {
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lockdownPlanUuids": ["AAAAAAAAAAAAAAAAAAAAAA"],
"stateUpdatedAtMillis": 123
}
headers = {
"x-auth-scheme": "<x-auth-scheme>",
"x-auth-apikey": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-auth-scheme': '<x-auth-scheme>',
'x-auth-apikey': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
lockdownPlanUuids: ['AAAAAAAAAAAAAAAAAAAAAA'],
stateUpdatedAtMillis: 123
})
};
fetch('https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/activateLockdownForLocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"lockdownPlanUuids\": [\n \"AAAAAAAAAAAAAAAAAAAAAA\"\n ],\n \"stateUpdatedAtMillis\": 123\n}")
.asString();{
"result": "SUCCESS",
"state": {
"activeLockdownPlans": [
{
"lockdownPlanUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scope": "ORG_LOCKDOWN",
"scopeUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"createdAtMillis": 123,
"followingTestPlan": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"state": "STANDARD_SECURITY",
"stateChangedAtMillis": 123,
"updatedAtMillis": 123
}
}Authorizations
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
Headers
Authentication scheme identifier. Use api-token for standard API key authentication, partner-api-token for partner API key authentication. Must be paired with the x-auth-apikey header containing your API key.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to activate lockdown for a specific location with optional optimistic locking.
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Set of lockdown plan UUIDs to activate for the location.
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Optional timestamp for optimistic locking to ensure the user is updating the latest record.
Response
200 - application/json
OK
Last modified on September 19, 2026