First Party Ingestion Webhooks
Use webhooks to be notified when data ingestion events occur
Below we’ll walk you through all the event webhooks for first party data ingestions.
Make sure to read the webhook setup guide
First Party Data Ingestion Events
These events trigger on the completion of a first party ingestion task.

Webhook | Event |
---|---|
First party data ingestion succeeded | first_party_ingester.ingest.succeeded |
First party data ingestion failed | first_party_ingester.ingest.failed |
First Party Data Ingestion Succeeded
This event triggers when an ingestion task has successfully completed.
Source
These are the actions that will trigger this webhook:
- An ingestion task is created by a successful request to one of the ingestion endpoints and the task was successful.
Examples
{
"data": {
"event": "first_party_ingester.ingest.succeeded",
"task_id": "62afce43-35d0-4981-91f6-dfe116197f3e",
"operation_id": "v2_ingest_transactions_post"
}
}
First Party Data Ingestion Failed
This event triggers when an ingestion task has successfully completed.
Source
These are the actions that will trigger this webhook:
- An ingestion task is created by a successful request to one of the ingestion endpoints and the task failed.
Examples
{
"data": {
"event": "first_party_ingester.ingest.failed",
"task_id": "62afce43-35d0-4981-91f6-dfe116197f3e",
"operation_id": "v2_ingest_transactions_post"
}
}
If you have any questions, please contact us via the chatbot (bottom-right of screen 👉) or via a support request or check our FAQs.
Updated 10 days ago