Skip to main content
POST
/
api
/
integrations
/
accessControl
/
createOrUpdateHoneywellOnGuardIntegration
Create or update the Honeywell OnGuard integration
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.

Authorizations

x-auth-apikey
string
header
required

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

x-auth-scheme
enum<string>
default:api-token
required

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

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.

doorInfoMap
object

Response

200 - application/json

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.

error
boolean | null
errorMsg
string | null
misconfiguredDoors
(string | null)[] | null
presharedSecret
string | null
rhombusToken
string | null
warningMsg
string | null
webhookUrl
string | null
Last modified on May 7, 2026