🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/subscribeZapierWebhook \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"backoffSec": 30,
"doorState": "OPEN",
"hookUrl": "https://hooks.zapier.com/hooks/catch/123456/abc123/",
"humidityLowerThreshold": 30,
"humidityUpperThreshold": 80,
"tempLowerThreshold": 65,
"tempUpperThreshold": 85.5,
"uuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"zapEnum": "BUTTON_EVENTS"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>",
"webhookId": "AAAAAAAAAAAAAAAAAAAAAA"
}Setup a Zapier webhook
curl --request POST \
--url https://api2.rhombussystems.com/api/integrations/subscribeZapierWebhook \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"backoffSec": 30,
"doorState": "OPEN",
"hookUrl": "https://hooks.zapier.com/hooks/catch/123456/abc123/",
"humidityLowerThreshold": 30,
"humidityUpperThreshold": 80,
"tempLowerThreshold": 65,
"tempUpperThreshold": 85.5,
"uuids": [
"AAAAAAAAAAAAAAAAAAAAAA"
],
"zapEnum": "BUTTON_EVENTS"
}
'{
"error": true,
"errorMsg": "<string>",
"warningMsg": "<string>",
"webhookId": "AAAAAAAAAAAAAAAAAAAAAA"
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for subscribing to Zapier webhook events.
Backoff time in seconds
30
Door state for door sensor webhooks
OPEN, CLOSED, AJAR Zapier webhook URL
"https://hooks.zapier.com/hooks/catch/123456/abc123/"
Lower humidity threshold for environmental sensors
30
Upper humidity threshold for environmental sensors
80
Lower temperature threshold for environmental sensors
65
Upper temperature threshold for environmental sensors
85.5
Set of device UUIDs to monitor
base 64 (url-safe) uuid string
"AAAAAAAAAAAAAAAAAAAAAA"
Zapier integration type
BUTTON_EVENTS, DOOR_SENSOR_EVENTS, ENVIRONMENTAL_SENSOR_EVENTS, RULE_EVENTS Was this page helpful?