OnInvoxAuraClinicalNoteCreated
Triggered when a clinical note is created in Invox Aura, before processing is complete.
Payload
{
"eventName": "OnInvoxAuraClinicalNoteCreated",
"organizationId": "org-789",
"userId": "user-456",
"timestamp": "2026-03-31T19:06:58.667Z",
"consultationSessionId": "medical-consultation-u1234-1234567890-abc123",
"id": "note-123",
"summary": "Initial note summary...",
"sentAt": 1738670400000,
"patientId": "PAT-12345",
"requestSignature": "<base64>"
}
Field description
| Field | Type | Required | Description |
|---|---|---|---|
eventName | string | Yes | Always "OnInvoxAuraClinicalNoteCreated" |
organizationId | string | Yes | Organization ID |
userId | string | No | User ID |
timestamp | string | Yes | ISO 8601 UTC — time of delivery |
consultationSessionId | string | No | Consultation session ID |
id | string | Yes | Aura session ID |
summary | string | Yes | Initial clinical note summary |
sentAt | number | Yes | Unix timestamp in ms |
patientId | string | No | Patient ID |
requestSignature | string | No | HMAC-SHA256 in Base64. Present if the organization has credentials configured. |
Signature string
The fields are signed in the following order:
organizationId|userId|timestamp|consultationSessionId|id|summary|sentAt|patientId|API_KEY
Table of Contents