curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"baseUrl": "<string>",
"doorInfoMap": {},
"rhombusToken": "<string>"
}
'import requests
url = "https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration"
payload = {
"baseUrl": "<string>",
"doorInfoMap": {},
"rhombusToken": "<string>"
}
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({baseUrl: '<string>', doorInfoMap: {}, rhombusToken: '<string>'})
};
fetch('https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration', 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/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"baseUrl\": \"<string>\",\n \"doorInfoMap\": {},\n \"rhombusToken\": \"<string>\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"misconfiguredDoors": [
"<string>"
],
"rhombusToken": "<string>",
"warningMsg": "<string>",
"webhookUrl": "<string>"
}Create or update Honeywell NetBox integration (on-prem connector)
Activate or update the Honeywell NetBox integration from the on-prem side — the NetBox counterpart of createOrUpdateHoneywellOnGuardIntegration. Called by the Rhombus NetBox connector, which discovers portals via the NetBox GetPortals API and owns the door inventory; the console owns camera/location assignments. First activation (blank rhombusToken, no existing integration) generates the webhook token; re-calls merge the door map by portal key without overwriting console-made assignments, and keys absent from the request are preserved.
curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"baseUrl": "<string>",
"doorInfoMap": {},
"rhombusToken": "<string>"
}
'import requests
url = "https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration"
payload = {
"baseUrl": "<string>",
"doorInfoMap": {},
"rhombusToken": "<string>"
}
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({baseUrl: '<string>', doorInfoMap: {}, rhombusToken: '<string>'})
};
fetch('https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration', 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/integrations/accessControl/createOrUpdateHoneywellNetBoxIntegration")
.header("x-auth-scheme", "<x-auth-scheme>")
.header("x-auth-apikey", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"baseUrl\": \"<string>\",\n \"doorInfoMap\": {},\n \"rhombusToken\": \"<string>\"\n}")
.asString();{
"error": true,
"errorMsg": "<string>",
"misconfiguredDoors": [
"<string>"
],
"rhombusToken": "<string>",
"warningMsg": "<string>",
"webhookUrl": "<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
Activate or update the Honeywell NetBox integration from the on-prem side — the NetBox counterpart of createOrUpdateHoneywellOnGuardIntegration. Called by the Rhombus NetBox connector, which discovers portals via the NetBox GetPortals API and owns the door inventory, while the console owns camera/location assignments. On first activation omit rhombusToken; the server generates the webhook token and returns it. On re-calls pass the token back; the reported door map is merged by portal key — new keys are added unmapped, existing keys get their display name refreshed, console-made camera/location/behavior assignments are never overwritten, and keys absent from the request (e.g. manually-added portals) are preserved.
Response
OK
Result of activating/updating the Honeywell NetBox integration from the on-prem side. Mirrors the OnGuard response shape, minus the pre-shared HMAC secret (the NetBox webhook is token-only).