Developer Resources

API Documentation

The Camsec AI Pro Mini functions as a seamless component within your broader operational ecosystem, supported by a highly extensible software architecture.

System Architecture

Core Integration Capabilities

Offline-First Resiliency

In the event of a localized internet outage, the edge device caches all event metadata locally on its internal storage. Once connectivity is restored, it automatically synchronizes with the cloud dashboard to ensure zero data loss.

Enterprise HRMS Integrations

The system executes API webhooks to push verified attendance metadata directly into third-party Human Resources Management Systems or ERP platforms like SAP, automating payroll.

Retail POS Overlays

Integrates with Point of Sale terminals to overlay transaction data chronologically against video analytics and footfall metrics, helping identify anomalies and conversion rates.

Synchronization Architecture

Local Cache
CamSec Pro Mini

Offline-first local processing & metadata extraction.

API Gateway

Secure sync queue and webhook dispatcher.

200 OK
Your Systems

HRMS, SAP, POS, or Custom Dashboards.

Developer Hub

API Reference & Webhooks

Explore payload structures, authentication protocols, and endpoint URLs.

Authentication
Webhooks
REST API
POST https://api.camsecai.com/v1/auth/token

Exchange your Client ID and Secret for a short-lived Bearer Token used to authenticate subsequent requests or validate incoming webhooks.

Request Body (JSON)
{
  "client_id": "camsec_live_9x8a7b6c5d",
  "client_secret": "sk_prod_a1b2c3d4e5f6g7h8i9j0",
  "grant_type": "client_credentials"
}
Response (200 OK)
{
  "access_token": "eyJhbGciOiJIUzI1NiIsInR5c...",
  "token_type": "Bearer",
  "expires_in": 3600
}