Webhook
Overview
Daloopa webhooks provide real-time notifications when company data is updated.
How Webhook Setup Works
Webhooks are configured by your Daloopa account team. To get started:
-
Provide your endpoint details to your Daloopa representative:
- Webhook URL: Your HTTPS endpoint that will receive events
- Authentication method: Header name and secret token for verification
-
Daloopa configures the webhook for your specified companies
-
Verify receipt: Test that your endpoint receives and processes webhook events
Alternatively, you can also create and manage your own webhooks. Please check the Managing your Webhooks page for that option.
What You Need to Provide
When requesting webhook setup, share these details with your Daloopa team:
| Field | Description | Example |
|---|---|---|
| url | Your webhook endpoint (must be HTTPS) | https://your-domain.com/webhooks/daloopa |
| header_name | Authentication header name | Authorization or X-API-Key |
| auth_secret | Your secret token for webhook verification | your_secret_token |
| prefix (optional) | Prefix for the auth header value | Bearer or X-API-KEY |
Initial Live Testing
Daloopa now offers a method to test your webhooks to check its functionality without having to rely on a production event. Please check the Testing your Webhooks section for more details.
Monitoring Webhook Delivery
After your first webhook arrives:
- Log all received events for debugging
- Monitor for HTTP 200 responses from your endpoint
- Check that authentication is working correctly
Event Types
Currently, we support the following events:
clientview_updated- Triggered when a new ClientView model is generated for the companyincremental_update- Triggered over any new group of datapoints published, either by analyst or autotaggerseries_updated- Triggered when fundamental data errors/changes are detected in the last 5 minutes
For all events, the webhook payload includes relevant data about the updates, with the specific structure varying by event type.
Request Format
When a webhook event is triggered, our system will send an HTTP POST request to your specified URL with the following:
Headers
Content-Type: application/json
{header_name}: {prefix} {auth_secret}
Example
- url: https://yoururl.com
- header_name: Authorization
- prefix: X-API-KEY
- auth_secret: secret_api_key
Webhook triggers a POST request to https://yoururl.com with the following headers:
Content-Type: application/json
Authorization: X-API-KEY secret_api_key
Body
Clientview Updated
{
"event_type": "clientview_updated",
"company_id": 2,
"series": {
"SERIES_ID_1": {
"periods": [
"2025Q1"
]
},
"SERIES_ID_2": {
"periods": [
"2025Q1"
]
}
}
}Incremental Update
{
"event_type": "incremental_update",
"company_id": 2,
"series": {
"SERIES_ID_3": {
"periods": [
"2025Q1"
]
},
"SERIES_ID_4": {
"periods": [
"2025Q1"
]
}
}
}Series Updated
{
"event_type": "series_updated",
"company_id": 2,
"series": [
{
"id": 2,
"type": "MERGING_ERROR",
"period": "2024Q1",
"run_date": "2024-06-02T12:00:00Z",
"details": {
"fundamental_id": 13,
"series_id": 102,
"field_changed": "series_id",
"new_value": 102,
"old_value": 103
}
},
{
"id": 3,
"type": "TAGGING_ERROR",
"period": "2024Q1",
"run_date": "2024-06-03T12:00:00Z",
"details": {
"fundamental_id": 13,
"series_id": 202,
"field_changed": "fundamental_id",
"new_value": 13,
"old_value": 12
}
},
{
"id": 4,
"type": "VALUE_ERROR",
"period": "2024Q2",
"run_date": "2024-06-04T12:00:00Z",
"details": {
"fundamental_id": 15,
"series_id": 105,
"field_changed": "fundamental_value",
"new_value": 1500,
"old_value": 1200
}
}
]
}Series Updated Event Details:
The series_updated webhook is triggered every 5 minutes when fundamental data errors or corrections are detected. It includes:
- Supported Error Types:
VALUE_ERROR,TAGGING_ERROR,MERGING_ERROR - Frequency: Triggered every 5 minutes for companies with recent errors
- Payload Structure: Contains an array of error objects with detailed information about what changed
- Details Object: Includes the fundamental_id, series_id, field that changed, and both old and new values
This webhook provides granular notifications about data corrections, merges, tagging changes, and other meaningful updates to help you track data quality changes in real-time.
Interpreting the Results
The details object contains different information depending on the error type. Here's how to interpret each field:
VALUE_ERROR
Meaning: Fundamental with id fundamental_id changed value from old_value to new_value
Example: Fundamental 45672 changed value from 1,200,000 to 1,500,000
fundamental_id: The ID of the fundamental datapoint that was correctedseries_id: The series/row where this fundamental belongsfield_changed: Always "fundamental_value" for value correctionsold_value: The previous (incorrect) valuenew_value: The corrected value
TAGGING_ERROR
Meaning: Series with id series_id removed Fundamental with id old_value and received a new Fundamental with id new_value
Example: Series 12346 removed Fundamental 45670 and received new Fundamental 45673
fundamental_id: The current fundamental ID after the changeseries_id: The series/row that was affected by the retaggingfield_changed: Always "fundamental_id" for tagging changesold_value: The ID of the fundamental that was removed from this seriesnew_value: The ID of the fundamental that was assigned to this series
MERGING_ERROR
Meaning: Fundamental with id fundamental_id changed series/row from old_value to new_value
Example: Fundamental 45674 moved from series 12340 to series 12347
fundamental_id: The ID of the fundamental that was movedseries_id: The current series/row after the mergefield_changed: Always "series_id" for merging operationsold_value: The previous series ID before mergingnew_value: The new series ID after merging
Need Help?
If you encounter any issues with webhook configuration or delivery, please contact your Sales Representative
FAQ
What is a Daloopa webhook?
A webhook is a real-time HTTP notification sent to your endpoint whenever company that you're subscribed to data is updated in Daloopa.
How do I set up a webhook?
You have two options:
- Contact your Daloopa account/sales team and provide your endpoint URL, authentication header name, secret token, and (optionally) an auth prefix. Daloopa will configure it for you.
- Create and manage webhooks yourself via the Managing your Webhooks page.
Does my webhook URL need to be HTTPS?
Yes. Daloopa requires all webhook endpoints to use HTTPS.
How often is the series_updated event triggered?
series_updated event triggered?Every 5 minutes, for any company where recent data errors or corrections have been detected.
What error types can appear in a series_updated event?
series_updated event?VALUE_ERROR– A fundamental datapoint's value changed (e.g., from 1,200,000 to 1,500,000)TAGGING_ERROR– A series had one fundamental replaced with anotherMERGING_ERROR– A fundamental was moved from one series/row to another
What does the webhook request look like?
Daloopa sends an HTTP POST request to your URL with:
Content-Type: application/jsonheader- Your configured authentication header
- A JSON body containing the
event_type,company_id, and relevant series/data details
Can I test my webhook before relying on a live production event?
Yes. Daloopa provides a method to test webhook functionality without needing a real production event. See the Testing your Webhooks page for details.
Who do I contact if I have issues with my webhook?
Reach out to your Daloopa Sales Representative for help with configuration or delivery issues.
Updated 6 days ago