Sent to your webhook URL when EHR Agent analysis is complete (success or error).
Webhook Delivery:
webhookUrl you provide in your requestWebhook Security: All webhooks are signed with HMAC-SHA256 using your company’s webhook secret. You must verify the signature to ensure authenticity.
Webhook Headers:
X-Helios-Signature: HMAC-SHA256 signature in format sha256=<hex>X-Helios-Timestamp: Unix timestamp (seconds) when webhook was sentX-Helios-Run-ID: The unique run ID for this analysisSignature Verification:
sha256=HMAC-SHA256(webhook_secret, raw_body)Example Verification (Node.js):
import { createHmac, timingSafeEqual } from 'crypto'
function verifyWebhook(rawBody: string, signature: string, timestamp: string, webhookSecret: string): boolean {
// Check timestamp is recent (within 5 minutes)
const now = Math.floor(Date.now() / 1000)
const webhookTime = parseInt(timestamp, 10)
if (Math.abs(now - webhookTime) > 300) {
return false
}
// Compute expected signature
const expected = 'sha256=' + createHmac('sha256', webhookSecret)
.update(rawBody)
.digest('hex')
// Timing-safe comparison
if (expected.length !== signature.length) return false
return timingSafeEqual(Buffer.from(expected), Buffer.from(signature))
}
See full documentation at: https://docs.heliosai.health/webhooks
API key provided by Helios Intelligence
Unique identifier for this analysis run
Indicates successful completion
completed ISO 8601 timestamp when the webhook was sent
Monotonically increasing number for ordering webhooks
7
The agent type that processed this request
light, deep Webhook received successfully. Return 200 OK to acknowledge receipt.