Find access controlled elevators landings within the specified location
curl --request POST \
--url https://api2.rhombussystems.com/api/component/elevator/findAccessControlledElevatorLandingsByLocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"lastEvaluatedKey": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"maxPageSize": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/component/elevator/findAccessControlledElevatorLandingsByLocation"
payload = {
"lastEvaluatedKey": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"maxPageSize": 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({
lastEvaluatedKey: '<string>',
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
maxPageSize: 123
})
};
fetch('https://api2.rhombussystems.com/api/component/elevator/findAccessControlledElevatorLandingsByLocation', 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/elevator/findAccessControlledElevatorLandingsByLocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"lastEvaluatedKey\": \"<string>\",\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"maxPageSize\": 123\n}")
.asString();{
"accessControlledElevatorLandings": [
{
"accessScheduleFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"accessStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"accessStateToScheduleUuidMap": {},
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedFaceDetectionCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"authFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"createdAtMillis": 123,
"defaultAccessStateOriginator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"defaultAccessStateRequestedAtMillis": 123,
"floorNumber": 123,
"geofenceEnabled": true,
"geofenceRadius": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"remoteUnlockEnabled": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"lastEvaluatedKey": "<string>"
}Elevator Webservice
Find access controlled elevators landings within the specified location
Find access controlled elevators landings within the specified location
POST
/
api
/
component
/
elevator
/
findAccessControlledElevatorLandingsByLocation
Find access controlled elevators landings within the specified location
curl --request POST \
--url https://api2.rhombussystems.com/api/component/elevator/findAccessControlledElevatorLandingsByLocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"lastEvaluatedKey": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"maxPageSize": 123
}
'import requests
url = "https://api2.rhombussystems.com/api/component/elevator/findAccessControlledElevatorLandingsByLocation"
payload = {
"lastEvaluatedKey": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"maxPageSize": 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({
lastEvaluatedKey: '<string>',
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
maxPageSize: 123
})
};
fetch('https://api2.rhombussystems.com/api/component/elevator/findAccessControlledElevatorLandingsByLocation', 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/elevator/findAccessControlledElevatorLandingsByLocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"lastEvaluatedKey\": \"<string>\",\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"maxPageSize\": 123\n}")
.asString();{
"accessControlledElevatorLandings": [
{
"accessScheduleFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"accessStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"accessStateToScheduleUuidMap": {},
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedFaceDetectionCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"authFirstInStateOverride": {
"originator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"requestedAtMillis": 123
},
"createdAtMillis": 123,
"defaultAccessStateOriginator": {
"grantedToInternalEntityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"grantedToName": "<string>",
"supportAuthorityUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"supportUserEmail": "<string>",
"supportUsername": "<string>"
},
"defaultAccessStateRequestedAtMillis": 123,
"floorNumber": 123,
"geofenceEnabled": true,
"geofenceRadius": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"ownerDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"remoteUnlockEnabled": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"updatedAtMillis": 123,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"lastEvaluatedKey": "<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.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Last modified on August 7, 2026
⌘I