curl --request POST \
--url https://api2.rhombussystems.com/api/component/updateAccessControlledDoor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessControlledDoorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ajarTimeSec": 123,
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedFaceDetectionCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"directionRadians": 123,
"doorStateToScheduleUuidMap": {},
"dpiComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"floorNumber": 123,
"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled": true,
"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled": true,
"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled": true,
"forceAllReadersRemoteUnlockAudioFeedbackEnabled": true,
"forcedOpenEnabled": true,
"forcedOpenTimeSec": 123,
"geofenceEnabled": true,
"geofenceRadius": 123,
"latitude": 123,
"longitude": 123,
"name": "<string>",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"proximityUnlockSettings": {
"credCooldownSec": 123,
"enabled": true,
"exitResetsCooldown": true,
"holdUnlocked": true,
"holdUnlockedEventIntervalSec": 123,
"maxHoldUnlockedTimeSec": 123,
"minHoldUnlockedTimeSec": 123,
"minRSSIThreshold": 123
},
"readerComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relayComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relockAfterOpenTimeMs": 123,
"remoteUnlockEnabled": true,
"rexComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": true,
"unlockTimeSec": 123,
"unlockTimeSecRex": 123,
"waveToUnlockSettings": {
"awaitAuthDurationMs": 123,
"enabled": true,
"minRSSIThreshold": 123,
"showAwaitIntentFeedback": true,
"treatNfcAsIntent": true
}
}
'import requests
url = "https://api2.rhombussystems.com/api/component/updateAccessControlledDoor"
payload = {
"accessControlledDoorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ajarTimeSec": 123,
"associatedCameras": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"associatedFaceDetectionCameras": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"directionRadians": 123,
"doorStateToScheduleUuidMap": {},
"dpiComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"floorNumber": 123,
"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled": True,
"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled": True,
"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled": True,
"forceAllReadersRemoteUnlockAudioFeedbackEnabled": True,
"forcedOpenEnabled": True,
"forcedOpenTimeSec": 123,
"geofenceEnabled": True,
"geofenceRadius": 123,
"latitude": 123,
"longitude": 123,
"name": "<string>",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"proximityUnlockSettings": {
"credCooldownSec": 123,
"enabled": True,
"exitResetsCooldown": True,
"holdUnlocked": True,
"holdUnlockedEventIntervalSec": 123,
"maxHoldUnlockedTimeSec": 123,
"minHoldUnlockedTimeSec": 123,
"minRSSIThreshold": 123
},
"readerComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relayComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relockAfterOpenTimeMs": 123,
"remoteUnlockEnabled": True,
"rexComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": True,
"unlockTimeSec": 123,
"unlockTimeSecRex": 123,
"waveToUnlockSettings": {
"awaitAuthDurationMs": 123,
"enabled": True,
"minRSSIThreshold": 123,
"showAwaitIntentFeedback": True,
"treatNfcAsIntent": True
}
}
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({
accessControlledDoorUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
ajarTimeSec: 123,
associatedCameras: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
associatedFaceDetectionCameras: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
directionRadians: 123,
doorStateToScheduleUuidMap: {},
dpiComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
floorNumber: 123,
forceAllReadersFirstInAuthRequiredLedFeedbackEnabled: true,
forceAllReadersFirstInUnlockPendingLedFeedbackEnabled: true,
forceAllReadersOtherReaderUnlockAudioFeedbackEnabled: true,
forceAllReadersRemoteUnlockAudioFeedbackEnabled: true,
forcedOpenEnabled: true,
forcedOpenTimeSec: 123,
geofenceEnabled: true,
geofenceRadius: 123,
latitude: 123,
longitude: 123,
name: '<string>',
policyUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
proximityUnlockSettings: {
credCooldownSec: 123,
enabled: true,
exitResetsCooldown: true,
holdUnlocked: true,
holdUnlockedEventIntervalSec: 123,
maxHoldUnlockedTimeSec: 123,
minHoldUnlockedTimeSec: 123,
minRSSIThreshold: 123
},
readerComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
relayComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
relockAfterOpenTimeMs: 123,
remoteUnlockEnabled: true,
rexComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
subLocationsHierarchyKey: 'AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA',
subLocationsHierarchyKeyUpdated: true,
unlockTimeSec: 123,
unlockTimeSecRex: 123,
waveToUnlockSettings: {
awaitAuthDurationMs: 123,
enabled: true,
minRSSIThreshold: 123,
showAwaitIntentFeedback: true,
treatNfcAsIntent: true
}
})
};
fetch('https://api2.rhombussystems.com/api/component/updateAccessControlledDoor', 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/component/updateAccessControlledDoor")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"accessControlledDoorUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"ajarTimeSec\": 123,\n \"associatedCameras\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"associatedFaceDetectionCameras\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"directionRadians\": 123,\n \"doorStateToScheduleUuidMap\": {},\n \"dpiComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"floorNumber\": 123,\n \"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled\": true,\n \"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled\": true,\n \"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled\": true,\n \"forceAllReadersRemoteUnlockAudioFeedbackEnabled\": true,\n \"forcedOpenEnabled\": true,\n \"forcedOpenTimeSec\": 123,\n \"geofenceEnabled\": true,\n \"geofenceRadius\": 123,\n \"latitude\": 123,\n \"longitude\": 123,\n \"name\": \"<string>\",\n \"policyUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"proximityUnlockSettings\": {\n \"credCooldownSec\": 123,\n \"enabled\": true,\n \"exitResetsCooldown\": true,\n \"holdUnlocked\": true,\n \"holdUnlockedEventIntervalSec\": 123,\n \"maxHoldUnlockedTimeSec\": 123,\n \"minHoldUnlockedTimeSec\": 123,\n \"minRSSIThreshold\": 123\n },\n \"readerComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"relayComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"relockAfterOpenTimeMs\": 123,\n \"remoteUnlockEnabled\": true,\n \"rexComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"subLocationsHierarchyKey\": \"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA\",\n \"subLocationsHierarchyKeyUpdated\": true,\n \"unlockTimeSec\": 123,\n \"unlockTimeSecRex\": 123,\n \"waveToUnlockSettings\": {\n \"awaitAuthDurationMs\": 123,\n \"enabled\": true,\n \"minRSSIThreshold\": 123,\n \"showAwaitIntentFeedback\": true,\n \"treatNfcAsIntent\": true\n }\n}")
.asString();{
"accessControlledDoor": {
"ajarTimeSec": 123,
"apbZoneId": "AAAAAAAAAAAAAAAAAAAAAA",
"aperioDoorExtensionComponent": {
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"aperioDoorId": "<string>",
"aperioGatewayComponent": {
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedFaceDetectionCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"createdAtMillis": 123,
"defaultAccessStateOriginator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"defaultAccessStateRequestedAtMillis": 123,
"directionRadians": 123,
"doorAuthFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"doorScheduleFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"doorStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"doorStateToScheduleUuidMap": {},
"dpiComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"floorNumber": 123,
"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled": true,
"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled": true,
"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled": true,
"forceAllReadersRemoteUnlockAudioFeedbackEnabled": true,
"forcedOpenEnabled": true,
"forcedOpenTimeSec": 123,
"geofenceEnabled": true,
"geofenceRadius": 123,
"latitude": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": 123,
"name": "<string>",
"nfcSecureDowngradeEnabled": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"privacyModeSupportEnabled": true,
"proximityUnlockSettings": {
"credCooldownSec": 123,
"enabled": true,
"exitResetsCooldown": true,
"holdUnlocked": true,
"holdUnlockedEventIntervalSec": 123,
"maxHoldUnlockedTimeSec": 123,
"minHoldUnlockedTimeSec": 123,
"minRSSIThreshold": 123
},
"readerComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relayComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relockAfterOpenTimeMs": 123,
"remoteUnlockEnabled": true,
"rexComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"sendExpiredIntentEvents": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"unlockTimeSec": 123,
"unlockTimeSecRex": 123,
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"waveToUnlockSettings": {
"awaitAuthDurationMs": 123,
"enabled": true,
"minRSSIThreshold": 123,
"showAwaitIntentFeedback": true,
"treatNfcAsIntent": true
}
},
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Updates an access controlled door
Updates an access controlled door
curl --request POST \
--url https://api2.rhombussystems.com/api/component/updateAccessControlledDoor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"accessControlledDoorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ajarTimeSec": 123,
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedFaceDetectionCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"directionRadians": 123,
"doorStateToScheduleUuidMap": {},
"dpiComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"floorNumber": 123,
"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled": true,
"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled": true,
"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled": true,
"forceAllReadersRemoteUnlockAudioFeedbackEnabled": true,
"forcedOpenEnabled": true,
"forcedOpenTimeSec": 123,
"geofenceEnabled": true,
"geofenceRadius": 123,
"latitude": 123,
"longitude": 123,
"name": "<string>",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"proximityUnlockSettings": {
"credCooldownSec": 123,
"enabled": true,
"exitResetsCooldown": true,
"holdUnlocked": true,
"holdUnlockedEventIntervalSec": 123,
"maxHoldUnlockedTimeSec": 123,
"minHoldUnlockedTimeSec": 123,
"minRSSIThreshold": 123
},
"readerComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relayComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relockAfterOpenTimeMs": 123,
"remoteUnlockEnabled": true,
"rexComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": true,
"unlockTimeSec": 123,
"unlockTimeSecRex": 123,
"waveToUnlockSettings": {
"awaitAuthDurationMs": 123,
"enabled": true,
"minRSSIThreshold": 123,
"showAwaitIntentFeedback": true,
"treatNfcAsIntent": true
}
}
'import requests
url = "https://api2.rhombussystems.com/api/component/updateAccessControlledDoor"
payload = {
"accessControlledDoorUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ajarTimeSec": 123,
"associatedCameras": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"associatedFaceDetectionCameras": ["AAAAAAAAAAAAAAAAAAAAAA.v0"],
"directionRadians": 123,
"doorStateToScheduleUuidMap": {},
"dpiComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"floorNumber": 123,
"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled": True,
"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled": True,
"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled": True,
"forceAllReadersRemoteUnlockAudioFeedbackEnabled": True,
"forcedOpenEnabled": True,
"forcedOpenTimeSec": 123,
"geofenceEnabled": True,
"geofenceRadius": 123,
"latitude": 123,
"longitude": 123,
"name": "<string>",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"proximityUnlockSettings": {
"credCooldownSec": 123,
"enabled": True,
"exitResetsCooldown": True,
"holdUnlocked": True,
"holdUnlockedEventIntervalSec": 123,
"maxHoldUnlockedTimeSec": 123,
"minHoldUnlockedTimeSec": 123,
"minRSSIThreshold": 123
},
"readerComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relayComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relockAfterOpenTimeMs": 123,
"remoteUnlockEnabled": True,
"rexComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": True,
"unlockTimeSec": 123,
"unlockTimeSecRex": 123,
"waveToUnlockSettings": {
"awaitAuthDurationMs": 123,
"enabled": True,
"minRSSIThreshold": 123,
"showAwaitIntentFeedback": True,
"treatNfcAsIntent": True
}
}
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({
accessControlledDoorUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
ajarTimeSec: 123,
associatedCameras: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
associatedFaceDetectionCameras: ['AAAAAAAAAAAAAAAAAAAAAA.v0'],
directionRadians: 123,
doorStateToScheduleUuidMap: {},
dpiComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
floorNumber: 123,
forceAllReadersFirstInAuthRequiredLedFeedbackEnabled: true,
forceAllReadersFirstInUnlockPendingLedFeedbackEnabled: true,
forceAllReadersOtherReaderUnlockAudioFeedbackEnabled: true,
forceAllReadersRemoteUnlockAudioFeedbackEnabled: true,
forcedOpenEnabled: true,
forcedOpenTimeSec: 123,
geofenceEnabled: true,
geofenceRadius: 123,
latitude: 123,
longitude: 123,
name: '<string>',
policyUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
proximityUnlockSettings: {
credCooldownSec: 123,
enabled: true,
exitResetsCooldown: true,
holdUnlocked: true,
holdUnlockedEventIntervalSec: 123,
maxHoldUnlockedTimeSec: 123,
minHoldUnlockedTimeSec: 123,
minRSSIThreshold: 123
},
readerComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
relayComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
relockAfterOpenTimeMs: 123,
remoteUnlockEnabled: true,
rexComponents: [
{componentUuid: 'AAAAAAAAAAAAAAAAAAAAAA', deviceUuid: 'AAAAAAAAAAAAAAAAAAAAAA'}
],
subLocationsHierarchyKey: 'AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA',
subLocationsHierarchyKeyUpdated: true,
unlockTimeSec: 123,
unlockTimeSecRex: 123,
waveToUnlockSettings: {
awaitAuthDurationMs: 123,
enabled: true,
minRSSIThreshold: 123,
showAwaitIntentFeedback: true,
treatNfcAsIntent: true
}
})
};
fetch('https://api2.rhombussystems.com/api/component/updateAccessControlledDoor', 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/component/updateAccessControlledDoor")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"accessControlledDoorUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"ajarTimeSec\": 123,\n \"associatedCameras\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"associatedFaceDetectionCameras\": [\n \"AAAAAAAAAAAAAAAAAAAAAA.v0\"\n ],\n \"directionRadians\": 123,\n \"doorStateToScheduleUuidMap\": {},\n \"dpiComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"floorNumber\": 123,\n \"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled\": true,\n \"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled\": true,\n \"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled\": true,\n \"forceAllReadersRemoteUnlockAudioFeedbackEnabled\": true,\n \"forcedOpenEnabled\": true,\n \"forcedOpenTimeSec\": 123,\n \"geofenceEnabled\": true,\n \"geofenceRadius\": 123,\n \"latitude\": 123,\n \"longitude\": 123,\n \"name\": \"<string>\",\n \"policyUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"proximityUnlockSettings\": {\n \"credCooldownSec\": 123,\n \"enabled\": true,\n \"exitResetsCooldown\": true,\n \"holdUnlocked\": true,\n \"holdUnlockedEventIntervalSec\": 123,\n \"maxHoldUnlockedTimeSec\": 123,\n \"minHoldUnlockedTimeSec\": 123,\n \"minRSSIThreshold\": 123\n },\n \"readerComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"relayComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"relockAfterOpenTimeMs\": 123,\n \"remoteUnlockEnabled\": true,\n \"rexComponents\": [\n {\n \"componentUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"deviceUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n ],\n \"subLocationsHierarchyKey\": \"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA\",\n \"subLocationsHierarchyKeyUpdated\": true,\n \"unlockTimeSec\": 123,\n \"unlockTimeSecRex\": 123,\n \"waveToUnlockSettings\": {\n \"awaitAuthDurationMs\": 123,\n \"enabled\": true,\n \"minRSSIThreshold\": 123,\n \"showAwaitIntentFeedback\": true,\n \"treatNfcAsIntent\": true\n }\n}")
.asString();{
"accessControlledDoor": {
"ajarTimeSec": 123,
"apbZoneId": "AAAAAAAAAAAAAAAAAAAAAA",
"aperioDoorExtensionComponent": {
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"aperioDoorId": "<string>",
"aperioGatewayComponent": {
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedFaceDetectionCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"createdAtMillis": 123,
"defaultAccessStateOriginator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"defaultAccessStateRequestedAtMillis": 123,
"directionRadians": 123,
"doorAuthFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"doorScheduleFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"doorStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"doorStateToScheduleUuidMap": {},
"dpiComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"floorNumber": 123,
"forceAllReadersFirstInAuthRequiredLedFeedbackEnabled": true,
"forceAllReadersFirstInUnlockPendingLedFeedbackEnabled": true,
"forceAllReadersOtherReaderUnlockAudioFeedbackEnabled": true,
"forceAllReadersRemoteUnlockAudioFeedbackEnabled": true,
"forcedOpenEnabled": true,
"forcedOpenTimeSec": 123,
"geofenceEnabled": true,
"geofenceRadius": 123,
"latitude": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": 123,
"name": "<string>",
"nfcSecureDowngradeEnabled": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"privacyModeSupportEnabled": true,
"proximityUnlockSettings": {
"credCooldownSec": 123,
"enabled": true,
"exitResetsCooldown": true,
"holdUnlocked": true,
"holdUnlockedEventIntervalSec": 123,
"maxHoldUnlockedTimeSec": 123,
"minHoldUnlockedTimeSec": 123,
"minRSSIThreshold": 123
},
"readerComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relayComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"relockAfterOpenTimeMs": 123,
"remoteUnlockEnabled": true,
"rexComponents": [
{
"componentUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"sendExpiredIntentEvents": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"unlockTimeSec": 123,
"unlockTimeSecRex": 123,
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"waveToUnlockSettings": {
"awaitAuthDurationMs": 123,
"enabled": true,
"minRSSIThreshold": 123,
"showAwaitIntentFeedback": true,
"treatNfcAsIntent": true
}
},
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}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.
api-token, api, partner-api-token, partner-api Body
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
UNLOCKED, ACCESS_CONTROLLED Show child attributes
Show child attributes
Show child attributes
Show child attributes
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
A sequence of one or more base 64 (url-safe) uuid substrings. These substrings are separated by dots (.).
^([A-Za-z0-9\-_]{22})([.][A-Za-z0-9\-_]{22})*$"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
Show child attributes
Show child attributes