leadPops is the easiest way for mortgage pros, real estate agents, and insurance agents to generate more quality leads, no setup required.
Emit new event for every new row added in a table. See documentation here
Emit new event for every insert
, update
, or delete
operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here
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,
})
},
})
Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase: {
type: "app",
app: "supabase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
headers: {
Authorization: `Bearer ${this.supabase.$auth.service_key}`,
"apikey": `${this.supabase.$auth.service_key}`,
},
})
},
})