FullContact's API enriches contact information, letting you turn partial identities like an email address into a full profile including social presence, demographic data, and more. This is invaluable for enhancing customer understanding and personalizing interactions. By leveraging Pipedream's powerful integrations, you can automate workflows that consume FullContact's enriched data, facilitating tasks like lead enrichment, audience segmentation, and personalized marketing at scale.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
full_contact: {
type: "app",
app: "full_contact",
}
},
async run({steps, $}) {
const data = {
"email": `jane.smith@gmail.com`,
}
return await axios($, {
method: "post",
url: `https://api.fullcontact.com/v3/person.enrich`,
headers: {
Authorization: `Bearer ${this.full_contact.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
Lead Enrichment on CRM Update: Trigger a workflow when a new lead is added to a CRM like HubSpot. Use FullContact to enrich the lead's information and update their CRM profile with additional details such as social media handles or job titles. This enriched data can then drive more tailored sales strategies.
Personalized Email Campaigns: On receiving a new subscriber in an email marketing tool like Mailchimp, pass the email to FullContact for enrichment. Use the returned data to segment the subscribers based on demographics or interests and tailor email campaigns, thus boosting engagement and conversions.
Customer Support Enhancement: When a support ticket is created in a platform like Zendesk, use FullContact to enrich the customer's profile information. Provide this additional context to support agents, enabling them to offer a more personalized and informed customer service experience.
FullContact uses API keys for authentication. When you connect your FullContact account, Pipedream securely stores the keys so you can easily authenticate to FullContact APIs in both code and no-code steps.
Generate an API Key here, and enter your API Key below. Please note that the API Key generated is only displayed once, so be sure to save it some place secure (e.g. password manager such as 1Password).