Outcome. A newly created contact gets enriched from an external data provider and has its returned fields normalized to your standard formats in the same pass, landing with a clear success or failure status, instead of enrichment and cleanup running as two disconnected steps someone has to babysit separately.
flowchart TD
A[Contact created, email known] --> B[Set status: Enrichment called]
B --> C[Webhook: call enrichment vendor API]
C --> D{Successful match?}
D -->|yes| E[Custom code: parse, normalize fields, store raw payload]
E --> F[Status: Normalized]
D -->|no| G[Status: Failed, create task]

When to use it, when not to
- UseUse it when you already run several of this category's simpler patterns separately, an enrichment call, a normalization pass, a fallback task, on the same contact, and want them chained into one coordinated sequence with a single status property, rather than three independent workflows each with a partial view of the record's state.
- UseUse it once your enrichment vendor's API is stable and documented enough to call directly. This fiche assumes a webhook call to an external enrichment API rather than a native pre-built HubSpot integration, since a pre-built app usually already handles its own field writing without needing this level of orchestration.
- SkipDo not use it as your first attempt at contact enrichment. Build and test the simpler pieces separately first, a single webhook call, a single normalization workflow, so you understand each part's failure modes before chaining them. See data-quality-023 for the simpler fallback-only version and data-quality-004 or data-quality-012 for the plain normalization pattern.
- SkipDo not use it if a native, pre-built enrichment integration already covers your needs. Building and maintaining a custom webhook-plus-code chain is meaningfully more work than installing an app that already does the equivalent job and keeps up with the vendor's API changes for you.
or the data quality pack, 39 EUR
One-time, excl. VAT. 30-day refund, no questions asked. Founding prices until 31 October, then 199 and 59 EUR. Includes every spec added later, up to the full 500, and the one-click installer on the full library. Building on client portals? The agency licence at 449 EUR covers unlimited client portals.





