Update video intercom policy
curl --request POST \
--url https://api2.rhombussystems.com/api/policy/updateVideoIntercomPolicy \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"policy": {
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"triggerSet": [
{
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"lufsThreshold": 123,
"peopleCountThreshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'import requests
url = "https://api2.rhombussystems.com/api/policy/updateVideoIntercomPolicy"
payload = { "policy": {
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"triggerSet": [
{
"faceAlertLabelSet": ["<string>"],
"faceAlertUnidentified": True,
"faceAllowedLabelSet": ["<string>"],
"lufsThreshold": 123,
"peopleCountThreshold": 123,
"vehicleAlertLabelSet": ["<string>"],
"vehicleAlertUnidentified": True,
"vehicleAllowedLabelSet": ["<string>"]
}
]
}
],
"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({
policy: {
description: '<string>',
name: '<string>',
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
scheduledTriggers: [
{
scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
triggerSet: [
{
faceAlertLabelSet: ['<string>'],
faceAlertUnidentified: true,
faceAllowedLabelSet: ['<string>'],
lufsThreshold: 123,
peopleCountThreshold: 123,
vehicleAlertLabelSet: ['<string>'],
vehicleAlertUnidentified: true,
vehicleAllowedLabelSet: ['<string>']
}
]
}
],
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/policy/updateVideoIntercomPolicy', 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/updateVideoIntercomPolicy")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"policy\": {\n \"description\": \"<string>\",\n \"name\": \"<string>\",\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"scheduledTriggers\": [\n {\n \"scheduleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"triggerSet\": [\n {\n \"faceAlertLabelSet\": [\n \"<string>\"\n ],\n \"faceAlertUnidentified\": true,\n \"faceAllowedLabelSet\": [\n \"<string>\"\n ],\n \"lufsThreshold\": 123,\n \"peopleCountThreshold\": 123,\n \"vehicleAlertLabelSet\": [\n \"<string>\"\n ],\n \"vehicleAlertUnidentified\": true,\n \"vehicleAllowedLabelSet\": [\n \"<string>\"\n ]\n }\n ]\n }\n ],\n \"uuid\": \"AAAAAAAAAAAAAAAAAAAAAA\"\n }\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>"
}Policy Webservice
Update video intercom policy
Update video intercom policy
POST
/
api
/
policy
/
updateVideoIntercomPolicy
Update video intercom policy
curl --request POST \
--url https://api2.rhombussystems.com/api/policy/updateVideoIntercomPolicy \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"policy": {
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"triggerSet": [
{
"faceAlertLabelSet": [
"<string>"
],
"faceAlertUnidentified": true,
"faceAllowedLabelSet": [
"<string>"
],
"lufsThreshold": 123,
"peopleCountThreshold": 123,
"vehicleAlertLabelSet": [
"<string>"
],
"vehicleAlertUnidentified": true,
"vehicleAllowedLabelSet": [
"<string>"
]
}
]
}
],
"uuid": "AAAAAAAAAAAAAAAAAAAAAA"
}
}
'import requests
url = "https://api2.rhombussystems.com/api/policy/updateVideoIntercomPolicy"
payload = { "policy": {
"description": "<string>",
"name": "<string>",
"orgUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"scheduledTriggers": [
{
"scheduleUuid": "AAAAAAAAAAAAAAAAAAAAAA",
"triggerSet": [
{
"faceAlertLabelSet": ["<string>"],
"faceAlertUnidentified": True,
"faceAllowedLabelSet": ["<string>"],
"lufsThreshold": 123,
"peopleCountThreshold": 123,
"vehicleAlertLabelSet": ["<string>"],
"vehicleAlertUnidentified": True,
"vehicleAllowedLabelSet": ["<string>"]
}
]
}
],
"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({
policy: {
description: '<string>',
name: '<string>',
orgUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
scheduledTriggers: [
{
scheduleUuid: 'AAAAAAAAAAAAAAAAAAAAAA',
triggerSet: [
{
faceAlertLabelSet: ['<string>'],
faceAlertUnidentified: true,
faceAllowedLabelSet: ['<string>'],
lufsThreshold: 123,
peopleCountThreshold: 123,
vehicleAlertLabelSet: ['<string>'],
vehicleAlertUnidentified: true,
vehicleAllowedLabelSet: ['<string>']
}
]
}
],
uuid: 'AAAAAAAAAAAAAAAAAAAAAA'
}
})
};
fetch('https://api2.rhombussystems.com/api/policy/updateVideoIntercomPolicy', 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/updateVideoIntercomPolicy")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"policy\": {\n \"description\": \"<string>\",\n \"name\": \"<string>\",\n \"orgUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"scheduledTriggers\": [\n {\n \"scheduleUuid\": \"AAAAAAAAAAAAAAAAAAAAAA\",\n \"triggerSet\": [\n {\n \"faceAlertLabelSet\": [\n \"<string>\"\n ],\n \"faceAlertUnidentified\": true,\n \"faceAllowedLabelSet\": [\n \"<string>\"\n ],\n \"lufsThreshold\": 123,\n \"peopleCountThreshold\": 123,\n \"vehicleAlertLabelSet\": [\n \"<string>\"\n ],\n \"vehicleAlertUnidentified\": true,\n \"vehicleAllowedLabelSet\": [\n \"<string>\"\n ]\n }\n ]\n }\n ],\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 object for updating a video intercom policy.
Updated video intercom policy configuration
Show child attributes
Show child attributes
Last modified on August 22, 2026
⌘I