🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/updateDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedCamerasUpdated": true,
"deleted": false,
"deletedUpdated": true,
"description": "Temperature and humidity sensor in main office",
"descriptionUpdated": true,
"floorNumber": 1,
"floorNumberUpdated": true,
"latitude": 37.7749,
"latitudeUpdated": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationUuidUpdated": true,
"longitude": -122.4194,
"longitudeUpdated": true,
"name": "Main Office Sensor",
"nameUpdated": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuidUpdated": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": true,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Update details for environmental sensor. Note: uuid is a required field
curl --request POST \
--url https://api2.rhombussystems.com/api/climate/updateDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"associatedCameras": [
"AAAAAAAAAAAAAAAAAAAAAA.v0"
],
"associatedCamerasUpdated": true,
"deleted": false,
"deletedUpdated": true,
"description": "Temperature and humidity sensor in main office",
"descriptionUpdated": true,
"floorNumber": 1,
"floorNumberUpdated": true,
"latitude": 37.7749,
"latitudeUpdated": true,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationUuidUpdated": true,
"longitude": -122.4194,
"longitudeUpdated": true,
"name": "Main Office Sensor",
"nameUpdated": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuidUpdated": true,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": true,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request to update details for an environmental sensor.
List of associated camera device facet UUIDs
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Whether the environmental sensor is deleted
false
Description of the environmental sensor
"Temperature and humidity sensor in main office"
Floor number where the environmental sensor is located
1
Latitude coordinate of the environmental sensor
37.7749
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Longitude coordinate of the environmental sensor
-122.4194
Name of the environmental sensor
"Main Office Sensor"
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
A sequence of one or more base 64 (url-safe) uuid substrings. These substrings are separated by dots (.).
Show child attributes
"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?