with Leadpops and Payrexx?
The Leadpops API provides a toolkit for optimizing lead conversion for real estate and mortgage professionals. By integrating Leadpops with Pipedream, users can automate lead capture processes, streamline follow-up communications, and synchronize lead information across various marketing and CRM platforms. Pipedream’s serverless execution model and easy-to-use interface allow for building complex workflows to act upon data received from Leadpops without delving deep into coding.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadpops: {
type: "app",
app: "leadpops",
}
},
async run({steps, $}) {
const data = {
"funnel": `SalCompany.clixwithus.com`,
"from_date": `2022-03-20`,
"to_date": `2022-03-20`,
"limit": `100`,
}
return await axios($, {
method: "post",
url: `http://api.leadpops.com/api/v1/leads`,
headers: {
"Content-Type": `application/json`,
"leadpops-authorization": `${this.leadpops.$auth.api_key}`,
},
data,
})
},
})
import { axios } from "@pipedream/platform";
import crypto from "crypto";
export default defineComponent({
props: {
payrexx: {
type: "app",
app: "payrexx",
}
},
async run({ steps, $ }) {
const INSTANCE_NAME = this.payrexx.$auth.instance_name;
const INSTANCE_API_SECRET = this.payrexx.$auth.api_key;
const apiSignature = crypto
.createHmac("sha256", INSTANCE_API_SECRET)
.update("")
.digest("base64")
return await axios($, {
url: "https://api.payrexx.com/v1.0/PaymentProvider/",
method: "GET",
params: {
instance: INSTANCE_NAME,
ApiSignature: apiSignature
}
})
},
})