with Leadpops and QuestDB?
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 { Client } from "pg";
export default defineComponent({
props: {
questdb: {
type: "app",
app: "questdb",
}
},
async run({ steps, $ }) {
const client = new Client({
host: this.questdb.$auth.host,
port: this.questdb.$auth.port,
user: this.questdb.$auth.user,
password: this.questdb.$auth.password,
database: this.questdb.$auth.database,
ssl: this.questdb.$auth.ssl
});
await client.connect();
const readAll = await client.query("SELECT version()");
await client.end();
return readAll.rows;
},
})