Skip to main content
POST
/
api
/
accesscontrol
/
lockdownPlan
/
deactivateLockdownForLocation
Deactivate lockdown for the specified location
curl --request POST \
  --url https://api2.rhombussystems.com/api/accesscontrol/lockdownPlan/deactivateLockdownForLocation \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
  "stateUpdatedAtMillis": 123
}
'
{
  "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
  }
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.rhombus.community/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-auth-apikey
string
header
required

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

x-auth-scheme
enum<string>
default:api-token
required

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 deactivate lockdown for a specific location with optional optimistic locking.

locationUuid
string<RUUID> | null

base 64 (url-safe) uuid string

Example:

"AAAAAAAAAAAAAAAAAAAAAA"

stateUpdatedAtMillis
integer<int64> | null

Optional timestamp for optimistic locking to ensure the user is updating the latest record.

Response

200 - application/json

OK

Response containing the result of deactivating lockdown for a location.

result
enum<string>

The result of the lockdown deactivation operation.

Available options:
SUCCESS,
OPTIMISTIC_CONCURRENCY
state
object

The lockdown state for the location.

Last modified on May 7, 2026