
This guide explains how dealers and tech companies can integrate third-party software with CHeKT to create events and alarms using our Cloud APIs. By following these steps, you can automate event creation in CHeKT based on triggers from your external systems.

Important: There are 5 Keys per account. Keys are viewable at the time of creation; they cannot be recovered later. If this key is lost, you will need to create a new access key. Treat your API key like a password. Store it securely and never share it publicly. The method for adding the Bearer Token varies by platform, but generally follows these patterns:
For Webhook-based Systems:
Authorization: Bearer YOUR_API_KEYFor Automation Platforms (e.g., Zapier, Make, n8n):
Define the trigger conditions that will create events in CHeKT:
Example Rule Logic:
IF: The Front Door cameras has a person loitering for 10 seconds
THEN: Send API call to CHeKT
Configure the API call within your rule:
POST https://api.chekt.com/ext/v1/sites/{site_id}/zones/{zone_number}/events
{site_id} - Your CHeKT site identifier{zone_number} - The specific zone number for the eventUse the CHeKT Bearer Token created in Step 1 above.