curl --request POST \
--url https://api2.rhombussystems.com/api/policy/getPoliciesUsingSchedule \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/policy/getPoliciesUsingSchedule"
payload = { "scheduleUuid": "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({scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA'})
};
fetch('https://api2.rhombussystems.com/api/policy/getPoliciesUsingSchedule', 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/policy/getPoliciesUsingSchedule")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"scheduleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"accessControlledDoorPolicyList": [
{
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
"SOUND_LOUD"
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"audioPolicyList": [
{
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"cameraPolicyList": [
{
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"dwellTimeMs": 123,
"dwellTimeResetMs": 123,
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"threshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"dwellTimeMs": 123,
"dwellTimeResetMs": 123,
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"threshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"climatePolicyList": [
{
"backoffAlertSecs": {},
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"doorPolicyList": [
{
"defaultAjarThresholdSec": 123,
"defaultTriggers": [
"SOUND_LOUD"
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"ajarThresholdSec": 123,
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
"SOUND_LOUD"
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"error": true,
"errorMsg": "<string>",
"occupancyPolicyList": [
{
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"occupancyThresholdSec": 123,
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
"SOUND_LOUD"
],
"vacancyThresholdSec": 123
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"proximityPolicyList": [
{
"defaultDepartureThresholdSec": 123,
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"locationUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
],
"description": "<string>",
"egressThresholdMetersMap": {},
"ingressThresholdMetersMap": {},
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"departureThresholdSec": 123,
"egressThresholdMetersMap": {},
"ingressThresholdMetersMap": {},
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"locationUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"videoIntercomPolicyList": [
{
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"lufsThreshold": 123,
"peopleCountThreshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"warningMsg": "<string>"
}Get policies using schedule
Get details about all climate policies in organization
curl --request POST \
--url https://api2.rhombussystems.com/api/policy/getPoliciesUsingSchedule \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
'import requests
url = "https://api2.rhombussystems.com/api/policy/getPoliciesUsingSchedule"
payload = { "scheduleUuid": "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({scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA'})
};
fetch('https://api2.rhombussystems.com/api/policy/getPoliciesUsingSchedule', 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/policy/getPoliciesUsingSchedule")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"scheduleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n}")
.asString();{
"accessControlledDoorPolicyList": [
{
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
"SOUND_LOUD"
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"audioPolicyList": [
{
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"cameraPolicyList": [
{
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"dwellTimeMs": 123,
"dwellTimeResetMs": 123,
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"threshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"dwellTimeMs": 123,
"dwellTimeResetMs": 123,
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"threshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"climatePolicyList": [
{
"backoffAlertSecs": {},
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"threshold": 123
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"doorPolicyList": [
{
"defaultAjarThresholdSec": 123,
"defaultTriggers": [
"SOUND_LOUD"
],
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"ajarThresholdSec": 123,
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
"SOUND_LOUD"
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"error": true,
"errorMsg": "<string>",
"occupancyPolicyList": [
{
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"occupancyThresholdSec": 123,
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
"SOUND_LOUD"
],
"vacancyThresholdSec": 123
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"proximityPolicyList": [
{
"defaultDepartureThresholdSec": 123,
"defaultTriggers": [
{
"activity": "SOUND_LOUD",
"locationUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
],
"description": "<string>",
"egressThresholdMetersMap": {},
"ingressThresholdMetersMap": {},
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"departureThresholdSec": 123,
"egressThresholdMetersMap": {},
"ingressThresholdMetersMap": {},
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"locationUuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"videoIntercomPolicyList": [
{
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"schedule": {
"intervalList": [
{
"minuteOfWeekStart": 123,
"minuteOfWeekStop": 123
}
],
"internalWriteOnly": true,
"mutable": true,
"name": "<string>",
"oneTimeUse": true,
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"strategy": "WEEKLY_REPEATING_MINUTES",
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
},
"triggerSet": [
{
"activity": "SOUND_LOUD",
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"lufsThreshold": 123,
"peopleCountThreshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
],
"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.
api-token, api, partner-api-token, partner-api Body
Request object for getting all policies that use a specific schedule.
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Response
OK
Response object containing all policies that use a specific schedule, organized by policy type.
List of access controlled door policies using the schedule
Show child attributes
Show child attributes
List of audio policies using the schedule
Show child attributes
Show child attributes
List of camera policies using the schedule
Show child attributes
Show child attributes
List of climate policies using the schedule
Show child attributes
Show child attributes
List of door sensor policies using the schedule
Show child attributes
Show child attributes
List of occupancy policies using the schedule
Show child attributes
Show child attributes
List of proximity policies using the schedule
Show child attributes
Show child attributes
List of video intercom policies using the schedule
Show child attributes
Show child attributes