Update camera details
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/updateDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"camera": {
"archiveRegion": "us-west-1",
"deleted": false,
"description": "Camera monitoring the main entrance",
"floorNumber": 1,
"latitude": 37.7749,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": -122.4194,
"mummified": false,
"name": "Front Door Camera",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'import requests
url = "https://api2.rhombussystems.com/api/camera/updateDetails"
payload = { "camera": {
"archiveRegion": "us-west-1",
"deleted": False,
"description": "Camera monitoring the main entrance",
"floorNumber": 1,
"latitude": 37.7749,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": -122.4194,
"mummified": False,
"name": "Front Door Camera",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"uuid": "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({
camera: {
archiveRegion: 'us-west-1',
deleted: false,
description: 'Camera monitoring the main entrance',
floorNumber: 1,
latitude: 37.7749,
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
longitude: -122.4194,
mummified: false,
name: 'Front Door Camera',
policyUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
subLocationsHierarchyKey: 'AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA',
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/camera/updateDetails', 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/camera/updateDetails")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"camera\": {\n \"archiveRegion\": \"us-west-1\",\n \"deleted\": false,\n \"description\": \"Camera monitoring the main entrance\",\n \"floorNumber\": 1,\n \"latitude\": 37.7749,\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"longitude\": -122.4194,\n \"mummified\": false,\n \"name\": \"Front Door Camera\",\n \"policyUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"subLocationsHierarchyKey\": \"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA\",\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Camera Webservice
Update camera details
deprecated
Update hardware details of camera
POST
/
api
/
camera
/
updateDetails
Update camera details
curl --request POST \
--url https://api2.rhombussystems.com/api/camera/updateDetails \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"camera": {
"archiveRegion": "us-west-1",
"deleted": false,
"description": "Camera monitoring the main entrance",
"floorNumber": 1,
"latitude": 37.7749,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": -122.4194,
"mummified": false,
"name": "Front Door Camera",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'import requests
url = "https://api2.rhombussystems.com/api/camera/updateDetails"
payload = { "camera": {
"archiveRegion": "us-west-1",
"deleted": False,
"description": "Camera monitoring the main entrance",
"floorNumber": 1,
"latitude": 37.7749,
"locationUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"longitude": -122.4194,
"mummified": False,
"name": "Front Door Camera",
"policyUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"subLocationsHierarchyKey": "AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA",
"uuid": "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({
camera: {
archiveRegion: 'us-west-1',
deleted: false,
description: 'Camera monitoring the main entrance',
floorNumber: 1,
latitude: 37.7749,
locationUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
longitude: -122.4194,
mummified: false,
name: 'Front Door Camera',
policyUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
subLocationsHierarchyKey: 'AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA',
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/camera/updateDetails', 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/camera/updateDetails")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"camera\": {\n \"archiveRegion\": \"us-west-1\",\n \"deleted\": false,\n \"description\": \"Camera monitoring the main entrance\",\n \"floorNumber\": 1,\n \"latitude\": 37.7749,\n \"locationUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"longitude\": -122.4194,\n \"mummified\": false,\n \"name\": \"Front Door Camera\",\n \"policyUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"subLocationsHierarchyKey\": \"AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA.AAAAAAAAAAAAAAAAAAAAAA\",\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n}")
.asString();{
"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 update camera information (deprecated).
Backwards compatible camera update type with optional fields.
Show child attributes
Show child attributes
Last modified on August 3, 2026
⌘I