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.

WebhookEvent
First party data ingestion succeededfirst_party_ingester.ingest.succeeded
First party data ingestion failedfirst_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:

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:

Examples

{
  "data": {
    "event": "first_party_ingester.ingest.failed",
    "task_id": "62afce43-35d0-4981-91f6-dfe116197f3e",
    "operation_id": "v2_ingest_transactions_post"
  }
}