Get Webhook Event
Webhooks
Get Webhook Event
Retrieve a single webhook event by its event ID.
GET
Get Webhook Event
Use this endpoint to retrieve a specific webhook event by its ID.
This error occurs when:
Path Parameters
- id (required): The unique identifier of the webhook event (the
event_idfrom the list endpoint)
Example Request
Example Response
Response Fields
- event_id (string): Unique event identifier
- event_type (string): Event type (e.g., “patient.insurance.added”, “appointment.created”)
- webhook_url (string): The URL the event was sent to
- delivery_status (string): Delivery status - “success” or “failed”
- data (object): Event-specific payload data
- created_at (string): ISO 8601 timestamp of event creation
- job_id (string, nullable): Job ID if this event is related to an asynchronous operation
- access_token_reference_id (string, nullable): The reference ID associated with your access token
Error Responses
Webhook Event Not Found
- The event ID doesn’t exist
- The event belongs to a different user account
The
data field contains event-specific information that varies depending on the event type. Refer to the webhook event docs for payload structures: Operation Events, Sync Events, Account Events.