Get keypads for location
curl --request POST \
--url https://api2.rhombussystems.com/api/keypad/getKeypadsForLocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/keypad/getKeypadsForLocation"
payload = { "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA" }
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'})
};
fetch('https://api2.rhombussystems.com/api/keypad/getKeypadsForLocation', 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/keypad/getKeypadsForLocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"keypads": [
{
"additionalFeaturesDisabled": true,
"appVersionCode": "<string>",
"appVersionName": "<string>",
"armCountdownSecs": 123,
"buildingAdminPhoneNumber": "<string>",
"connectionState": "ONLINE",
"floorNumber": 123,
"ipAddress": "<string>",
"lastModified": 123,
"latitude": 123,
"locationName": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"logoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": 123,
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"platform": "ANDROID",
"qualifiedAddress": {
"addressLine2": "<string>",
"addressline1": "<string>",
"administrativeArea": "<string>",
"locality": "<string>",
"postalCode": "<string>",
"regionCode": "<string>"
},
"showCallBuildingAdmin": true,
"signalStrength": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"tz": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"videoWallUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"warningMsg": "<string>"
}Alarm Monitoring Keypad Webservice
Get keypads for location
Get a list of all registered keypads for a location
POST
/
api
/
keypad
/
getKeypadsForLocation
Get keypads for location
curl --request POST \
--url https://api2.rhombussystems.com/api/keypad/getKeypadsForLocation \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/keypad/getKeypadsForLocation"
payload = { "locationUuid": "AAAAAAAAAAAAAAAAAAAAAA" }
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'})
};
fetch('https://api2.rhombussystems.com/api/keypad/getKeypadsForLocation', 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/keypad/getKeypadsForLocation")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"keypads": [
{
"additionalFeaturesDisabled": true,
"appVersionCode": "<string>",
"appVersionName": "<string>",
"armCountdownSecs": 123,
"buildingAdminPhoneNumber": "<string>",
"connectionState": "ONLINE",
"floorNumber": 123,
"ipAddress": "<string>",
"lastModified": 123,
"latitude": 123,
"locationName": "<string>",
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"logoUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": 123,
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"platform": "ANDROID",
"qualifiedAddress": {
"addressLine2": "<string>",
"addressline1": "<string>",
"administrativeArea": "<string>",
"locality": "<string>",
"postalCode": "<string>",
"regionCode": "<string>"
},
"showCallBuildingAdmin": true,
"signalStrength": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"tz": "<string>",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA",
"videoWallUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"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.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request object for getting all registered keypads for a specific location.
base 64 (url-safe) uuid string
Example:
"AAAAAAAAAAAAAAAAAAAAAA"
Last modified on September 25, 2026