Quick Start
1
Get API Key
Generate API key at Rhombus Console → Settings → API Management
2
Connect in Make
Add Rhombus module in Make.com, authenticate with your API key
3
Build Scenario
Add modules, configure actions, test and activate
Available Modules
Access Control
| Module | Function | API Equivalent |
|---|---|---|
| Add Users to Group | Add users to access control groups | POST /api/accesscontrol/addUsersToAccessControlGroup |
| Create Group | Create new access control group | POST /api/accesscontrol/createAccessControlGroup |
| Assign Credential | Assign unassigned credential to user | POST /api/accesscontrol/assignUnassignedCredential |
| Delete User | Remove user from organization | DELETE /api/user/deleteUser |
Camera & Video
| Module | Function | API Equivalent |
|---|---|---|
| Create HTTP Stream | Generate raw HTTP video stream | POST /api/camera/createRawHttpStream |
| Create Seekpoint | Add custom marker to video timeline | POST /api/camera/createCustomSeekpoint |
| Get AI Thresholds | Retrieve AI confidence thresholds | GET /api/camera/getAINormalizedConfidenceThresholds |
| Get Hardware Details | Fetch camera hardware specifications | POST /api/camera/getHardwareDetailsForMultipleCameras |
Sensors
| Module | Function | API Equivalent |
|---|---|---|
| Get BLE Base Stations | Retrieve Bluetooth sensor base stations | GET /api/sensor/getBaseStationsForBleSensors |
Universal
| Module | Function |
|---|---|
| Make API Call | Execute any Rhombus API endpoint with custom parameters |
All modules map to Rhombus REST API endpoints. See API Reference for detailed endpoint documentation.
Authentication
Common Patterns
Employee Onboarding
Video Stream Integration
Temporary Access
Make.com Platform Features
| Feature | Purpose |
|---|---|
| Routers | Branch workflows based on conditions |
| Filters | Execute modules conditionally |
| Iterators | Process arrays item-by-item |
| Aggregators | Combine multiple operations |
| Error Handlers | Catch and handle failures |
| Webhooks | Trigger scenarios from external events |
Pricing
| Plan | Operations/Month | Use Case |
|---|---|---|
| Free | 1,000 | Testing, personal use |
| Core | 10,000+ | Small teams |
| Pro | Custom | Production workloads |
Each module execution = 1 operation. A 5-module scenario running 100 times = 500 operations.
Troubleshooting
| Issue | Solution |
|---|---|
| Auth fails | Verify API key is active at console.rhombussystems.com |
| Module errors | Check execution history for error details; verify required fields |
| Rate limits | Rhombus API: 1000 req/hr. Add delays between operations if hitting limits |
| Data mapping | Use Make.com’s data structure viewer; verify field paths |
When to Use Make vs Custom Code
| Use Make.com When | Write Custom Code When |
|---|---|
| Standard CRUD operations | Complex business logic required |
| Connecting existing apps | Building custom UI/UX |
| No-code team members | Need sub-second latency |
| Rapid prototyping | Highly customized workflows |
| Visual workflow preferred | Version control critical |