curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellOnGuardIntegration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"doorInfoMap": {}
}
'{
"error": true,
"errorMsg": "<string>",
"misconfiguredDoors": [
"<string>"
],
"presharedSecret": "<string>",
"rhombusToken": "<string>",
"warningMsg": "<string>",
"webhookUrl": "<string>"
}Idempotent activation/update endpoint called by the OnGuard side from its setup tool. Generates the webhook token and pre-shared HMAC secret on first call; preserves both on subsequent calls so the deployed DLL keeps working as the door mapping changes. The request owns the door mapping; behavior flags (face recognition, clip saving, etc.) are managed separately from the Rhombus console.
curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/accessControl/createOrUpdateHoneywellOnGuardIntegration \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"doorInfoMap": {}
}
'{
"error": true,
"errorMsg": "<string>",
"misconfiguredDoors": [
"<string>"
],
"presharedSecret": "<string>",
"rhombusToken": "<string>",
"warningMsg": "<string>",
"webhookUrl": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://api-docs.rhombus.community/llms.txt
Use this file to discover all available pages before exploring further.
Your Rhombus API key. Must be accompanied by the x-auth-scheme header set to api-token (or partner-api-token for partner endpoints).
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 Idempotent create-or-update of the Honeywell OnGuard integration for the calling org. Sent by the OnGuard side from its setup tool after the user has mapped OnGuard doors to Rhombus cameras. Map keys are the OnGuard door identifiers; values follow the standard Rhombus badge-integration door info shape.
Show child attributes
OK
Result of activating or updating the Honeywell OnGuard integration. Returns the webhook URL, token, and pre-shared secret to configure on the OnGuard side. Token and secret are stable across re-calls so the deployed DLL keeps working when the door mapping changes.
Was this page helpful?