Get environmental gateway shadows
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getEnvironmentalGatewayShadows \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/climate/getEnvironmentalGatewayShadows"
payload = {}
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({})
};
fetch('https://api2.rhombussystems.com/api/climate/getEnvironmentalGatewayShadows', 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/climate/getEnvironmentalGatewayShadows")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"environmentalGatewayShadows": [
{
"activeAlertTriggers": {},
"apMac": "<string>",
"carbonMonoSense": {
"adcRaw": 123,
"adcVoltage": 123,
"coConcentration": 123,
"timestampSec": 123
},
"co2Sense": {
"co2Ppm": 123,
"relHumid": 123,
"tempC": 123,
"timestampSec": 123
},
"connected": true,
"connectionTimestampMs": 123,
"connectionUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"defaultInterface": "<string>",
"defaultInterfaceMac": "<string>",
"derivedValues": {
"airQualityIndex": 123,
"calibrating": true,
"falsePositiveConfidencePercent": 123,
"heatIndexDegF": 123,
"indoorAirQuality": 123,
"malfunctioningModules": [
"<string>"
],
"smokeConfidencePercent": 123,
"smokeThcConfidencePercent": 123,
"smokeTobaccoConfidencePercent": 123,
"timestampSec": 123,
"tvoc": 123,
"vapeConfidencePercent": 123,
"vapeDetected": true,
"vapeThcConfidencePercent": 123
},
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"disconnectTimestampMs": 123,
"externalIPAddress": "<string>",
"firmwareUpdateInProgress": true,
"firmwareUpdateTimeMs": 123,
"firmwareVersion": "<string>",
"formaSense": {
"ch2oPpb": 123,
"relHumid": 123,
"tempC": 123,
"timestampSec": 123
},
"hardwareUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"internalWanAddress": "<string>",
"jumpHostUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lanAddresses": [
"<string>"
],
"leakProbe": {
"adcMv": 123,
"adcRaw": 123,
"leakDetected": true,
"moistDetected": true,
"present": true,
"timestampSec": 123
},
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pmSense": {
"nc0p5": 123,
"nc10p0": 123,
"nc1p0": 123,
"nc2p5": 123,
"nc4p0": 123,
"noxIdx": 123,
"pm10p0": 123,
"pm1p0": 123,
"pm2p5": 123,
"pm4p0": 123,
"relHumid": 123,
"tempC": 123,
"timestampSec": 123,
"typPartSize": 123,
"vocIdx": 123
},
"pressSense": {
"pressure": 123,
"tempC": 123,
"timestampSec": 123
},
"prevConnected": true,
"prevConnectedUpdateTimestampMs": 123,
"region": "<string>",
"secondaryLanAddresses": [
"<string>"
],
"ssid": "<string>",
"state": {},
"stateUpdatedTimestampMs": 123,
"tempProbe": {
"adcMv": 123,
"adcRaw": 123,
"present": true,
"tempC": 123,
"timestampSec": 123
},
"timestampMs": 123,
"wanAddress": "<string>",
"wifiSignalStrength": 123
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Climate Webservice
Get environmental gateway shadows
Get list of shadows of all environmental gateways of an org
POST
/
api
/
climate
/
getEnvironmentalGatewayShadows
Get environmental gateway shadows
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getEnvironmentalGatewayShadows \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '{}'import requests
url = "https://api2.rhombussystems.com/api/climate/getEnvironmentalGatewayShadows"
payload = {}
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({})
};
fetch('https://api2.rhombussystems.com/api/climate/getEnvironmentalGatewayShadows', 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/climate/getEnvironmentalGatewayShadows")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{}")
.asString();{
"environmentalGatewayShadows": [
{
"activeAlertTriggers": {},
"apMac": "<string>",
"carbonMonoSense": {
"adcRaw": 123,
"adcVoltage": 123,
"coConcentration": 123,
"timestampSec": 123
},
"co2Sense": {
"co2Ppm": 123,
"relHumid": 123,
"tempC": 123,
"timestampSec": 123
},
"connected": true,
"connectionTimestampMs": 123,
"connectionUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"defaultInterface": "<string>",
"defaultInterfaceMac": "<string>",
"derivedValues": {
"airQualityIndex": 123,
"calibrating": true,
"falsePositiveConfidencePercent": 123,
"heatIndexDegF": 123,
"indoorAirQuality": 123,
"malfunctioningModules": [
"<string>"
],
"smokeConfidencePercent": 123,
"smokeThcConfidencePercent": 123,
"smokeTobaccoConfidencePercent": 123,
"timestampSec": 123,
"tvoc": 123,
"vapeConfidencePercent": 123,
"vapeDetected": true,
"vapeThcConfidencePercent": 123
},
"deviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"disconnectTimestampMs": 123,
"externalIPAddress": "<string>",
"firmwareUpdateInProgress": true,
"firmwareUpdateTimeMs": 123,
"firmwareVersion": "<string>",
"formaSense": {
"ch2oPpb": 123,
"relHumid": 123,
"tempC": 123,
"timestampSec": 123
},
"hardwareUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"internalWanAddress": "<string>",
"jumpHostUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"lanAddresses": [
"<string>"
],
"leakProbe": {
"adcMv": 123,
"adcRaw": 123,
"leakDetected": true,
"moistDetected": true,
"present": true,
"timestampSec": 123
},
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pmSense": {
"nc0p5": 123,
"nc10p0": 123,
"nc1p0": 123,
"nc2p5": 123,
"nc4p0": 123,
"noxIdx": 123,
"pm10p0": 123,
"pm1p0": 123,
"pm2p5": 123,
"pm4p0": 123,
"relHumid": 123,
"tempC": 123,
"timestampSec": 123,
"typPartSize": 123,
"vocIdx": 123
},
"pressSense": {
"pressure": 123,
"tempC": 123,
"timestampSec": 123
},
"prevConnected": true,
"prevConnectedUpdateTimestampMs": 123,
"region": "<string>",
"secondaryLanAddresses": [
"<string>"
],
"ssid": "<string>",
"state": {},
"stateUpdatedTimestampMs": 123,
"tempProbe": {
"adcMv": 123,
"adcRaw": 123,
"present": true,
"tempC": 123,
"timestampSec": 123
},
"timestampMs": 123,
"wanAddress": "<string>",
"wifiSignalStrength": 123
}
],
"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.
Available options:
api-token, api, partner-api-token, partner-api Body
application/json
Request to retrieve environmental gateway shadows.
Last modified on August 3, 2026
⌘I