🚧 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/door/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": false,
"description": "Main entrance door sensor on the first floor",
"descriptionUpdated": false,
"floorNumber": 1,
"floorNumberUpdated": true,
"latitude": 37.7749,
"latitudeUpdated": false,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationUuidUpdated": true,
"longitude": -122.4194,
"longitudeUpdated": false,
"name": "Main Entrance Door",
"nameUpdated": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuidUpdated": false,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": false,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Update details for door sensor. Note: uuid is a required field
curl --request POST \
--url https://api2.rhombussystems.com/api/door/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": false,
"description": "Main entrance door sensor on the first floor",
"descriptionUpdated": false,
"floorNumber": 1,
"floorNumberUpdated": true,
"latitude": 37.7749,
"latitudeUpdated": false,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"locationUuidUpdated": true,
"longitude": -122.4194,
"longitudeUpdated": false,
"name": "Main Entrance Door",
"nameUpdated": true,
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"policyUuidUpdated": false,
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKeyUpdated": false,
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for updating details for a door sensor.
List of associated camera device facet UUIDs
RUUID with optional appended facet information
"AAAAAAAAAAAAAAAAAAAAAA.v0"
Whether the associated cameras have been updated
true
Whether the door sensor is deleted
false
Whether the deleted status has been updated
false
Description of the door sensor
"Main entrance door sensor on the first floor"
Whether the description has been updated
false
Floor number where the door sensor is located
1
Whether the floor number has been updated
true
Latitude coordinate of the door sensor
37.7749
Whether the latitude has been updated
false
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Whether the location UUID has been updated
true
Longitude coordinate of the door sensor
-122.4194
Whether the longitude has been updated
false
Name of the door sensor
"Main Entrance Door"
Whether the name has been updated
true
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Whether the policy UUID has been updated
false
A sequence of one or more base 64 (url-safe) uuid substrings. These substrings are separated by dots (.).
Show child attributes
"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA"
Whether the sub-locations hierarchy key has been updated
false
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Was this page helpful?