The Contact Enhance API allows you to enrich contact data by providing detailed information on individuals or companies based on email, domain, or other identifying data. With this API integrated into Pipedream, it's possible to automate enriching contact lists, validate and score leads for marketing, and augment customer profiles for better personalization. Pipedream's serverless platform enables these tasks to be set up with minimal coding, leveraging a vast array of triggers and actions from various apps to create powerful workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
contact_enhance: {
type: "app",
app: "contact_enhance",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://contactenhance-91b9c0ef8a71.herokuapp.com/contacts`,
headers: {
"Content-Type": `application/json`,
"Authorization": `${this.contact_enhance.$auth.api_key}`,
},
params: {
email: `email@example.com`,
},
})
},
})
Lead Qualification Automation: Trigger a workflow with a new lead submission from a form or CRM like Salesforce. Pass the lead's email to Contact Enhance API to retrieve detailed information, then use conditional logic in Pipedream to score the lead and add it to the appropriate pipeline or nurturing sequence in the CRM.
Enriched Contact Segmentation: When a new email is added to a mailing list in an email marketing platform like Mailchimp, use Contact Enhance API to get additional details about the contact. Based on the enriched data, create segments in Mailchimp for targeted campaigns, improving engagement and conversion rates.
Customer Data Platform Enhancement: On a regular schedule, pull records from a Customer Data Platform (CDP) like Segment. Use Contact Enhance API to update each record with additional data. The enriched profiles can then be synchronized back to the CDP or used to tailor customer experiences across various touchpoints.
Locates a specific contact in the database using the email. See the documentation
Contact Enhance uses API keys for authentication. When you connect your Contact Enhance account, Pipedream securely stores the keys so you can easily authenticate to Contact Enhance APIs in both code and no-code steps.