curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"createdAfterMs": 1640991600000,
"createdBeforeMs": 1640995200000,
"limit": 100,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"climateEvents": [
{
"alertActivities": [
"SOUND_LOUD"
],
"baseStationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"batteryPercentage": 123,
"bleDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"bleRssi": 123,
"closeBaseStations": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"co2": 123,
"ethanol": 123,
"heatIndexDegF": 123,
"heatIndexRangeWarning": "HEAT_INDEX_OK",
"humidity": 123,
"iaq": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pm25": 123,
"probeTempC": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"tampered": true,
"temp": 123,
"thcDetected": true,
"thcPercent": 123,
"timestampMs": 123,
"tvoc": 123,
"vapeSmokeDetected": true,
"vapeSmokePercent": 123
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Get list of climate events for environmental sensor
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/getClimateEventsForSensor \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"createdAfterMs": 1640991600000,
"createdBeforeMs": 1640995200000,
"limit": 100,
"sensorUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"climateEvents": [
{
"alertActivities": [
"SOUND_LOUD"
],
"baseStationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"batteryPercentage": 123,
"bleDeviceUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"bleRssi": 123,
"closeBaseStations": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"co2": 123,
"ethanol": 123,
"heatIndexDegF": 123,
"heatIndexRangeWarning": "HEAT_INDEX_OK",
"humidity": 123,
"iaq": 123,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"pm25": 123,
"probeTempC": 123,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"tampered": true,
"temp": 123,
"thcDetected": true,
"thcPercent": 123,
"timestampMs": 123,
"tvoc": 123,
"vapeSmokeDetected": true,
"vapeSmokePercent": 123
}
],
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}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.
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
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 Request to retrieve climate events for an environmental sensor.
Timestamp in milliseconds after which events should be retrieved
1640991600000
Timestamp in milliseconds before which events should be retrieved
1640995200000
Maximum number of events to return
100
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?