A bot that enriches your business contact data.
Locates a specific contact in the database using the email. See the documentation
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
Allows you to delete all email addresses on your blocks list. See the docs here
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`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})