with FullContact and Relintex CRM?
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,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
relintex_crm: {
type: "app",
app: "relintex_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect-test.relintex.net/api/v2/lead/list`,
headers: {
"accept": `application/json`,
},
auth: {
username: `${this.relintex_crm.$auth.username}`,
password: `${this.relintex_crm.$auth.password}`,
},
params: {
page_size: `100`,
page: `1`,
},
})
},
})