(enriched_profile)
By supplying an email address, you can retrieve a profile with enriched data fields. This service is offered in collaboration with Clearbit.
- get_enrichment_profile - Get enriched profile
Fetch enriched profile data. Requires a valid email address. This service is offered in collaboration with Clearbit.
To use this endpoint from the browser, you'll need to specify the /profile-enrichment.read
scope when generating a token.
from moov import Moov
import os
s = Moov(
gateway_auth=os.getenv("MOOV_GATEWAY_AUTH", ""),
)
res = s.enriched_profile.get_enrichment_profile(email="employee@business.com")
if res is not None:
# handle response
pass
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
email |
str | ✔️ | Valid email address belonging to the profile of interest |
employee@business.com |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
models.GetEnrichmentProfileResponse
Error Type | Status Code | Content Type |
---|---|---|
models.SDKError | 4XX, 5XX | */* |