Quick Start
1. Verify your API key
curl -k https://api.illumience.com:11443/v2/me
-H "Authorization: Bearer YOUR_API_KEY"
2. List your devices
curl -k https://api.illumience.com:11443/v2/devices
-H "Authorization: Bearer YOUR_API_KEY"
3. Get telemetry for a device (last 24 hours)
FROM=$$(date -d '24 hours ago' +%s) TO=$$(date +%s)
curl -k "https://api.illumience.com:11443/v2/devices/DEVICE_OBJECT_ID/telemetry?from=$FROM&to=$TO"
-H "Authorization: Bearer YOUR_API_KEY"