When a resource is saved/deleted/signed off, an HTTP/POST request is sent to your target URL. The target URL should accept a JSON string in the POST body of the request. The content of the POST will look as follow:Documentation Index
Fetch the complete documentation index at: https://help.elationhealth.com/llms.txt
Use this file to discover all available pages before exploring further.
| Field | Type | Description |
|---|---|---|
data | object | The resource object. The definition varies per resource type. |
action | string | The type of action that triggered the event. Available values: saved, deleted. |
event_id | integer | The event id to reference this request. |
event_uuid | string | A UUID7 identifier for this event. This field is being introduced as part of a future migration and will eventually replace event_id. |
application_id | integer | The client id of the OAuth2 application. |
resource | string | The resource type for this object (e.g. patients, appointments). |
resource_url | string | null | An optional URL to retrieve the full resource payload. This will be provided in the future for resources with very large payloads as an alternative to embedding the full object in data. When present, clients can make a GET request to this URL to download the resource. When null, the full resource is included in data as usual. |