with Insightly and Enrichley?
Checks the validity of a single email address using Enrichley. See the documentation
Insightly's API offers a suite of functions that let you tap into your customer relationship management in real-time, integrating customer data, sales, and project info across a diverse array of business applications and workflows. With Pipedream, you can automate interactions with your Insightly account, sync data effortlessly, and connect to hundreds of apps to streamline tasks, from lead management to project tracking.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
insightly: {
type: "app",
app: "insightly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.${this.insightly.$auth.pod}.insightly.com/v3.1/Contacts`,
auth: {
username: `${this.insightly.$auth.api_key}`,
password: ``,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enrichley: {
type: "app",
app: "enrichley",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enrichley.io/api/v1/me`,
headers: {
"accept": `application/json`,
"X-API-Key": `${this.enrichley.$auth.api_key}`,
},
})
},
})