Webhook Integration for History Data
Orova automatically sends call history data to your system via
webhooks after each call is completed. You don't need to retrieve
history records manually - instead, you provide us with your
webhook endpoint.
Setup Required: Contact Orova support to
configure your webhook endpoint. We will send all call history
data to your specified URL in real-time as calls are completed.
Your Webhook Endpoint
Your webhook should be able to receive POST requests with call
history data. When you provide a contact with a
customerId
, we will send a PUT request to update that
specific customer.
POST
https://your-domain.com/webhook
For new customers without customerId:
PUT
https://your-domain.com/webhook/{customerId}
For existing customers with customerId (updates the specific
customer record):
Webhook Authentication
We recommend securing your webhook endpoint with authentication
headers or API keys. During setup, provide us with any required
authentication details.
Important: When pushing contacts to Orova,
include the customerId
field for existing
customers. This ensures we can update the correct record in your
system via PUT requests to your webhook.