with Leadpops and RocketSkip?
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"
export default defineComponent({
props: {
rocketskip: {
type: "app",
app: "rocketskip",
}
},
async run({steps, $}) {
const data = {
"first_name": `{{your_name}}`,
"last_name": `{{your_last_name}}`,
"street_address": `{{your_street_address}}`,
"city": `{{your_city}}`,
"state": `{{your_state}}`,
"zip_code": `{{your_zip_code}}`,
}
return await axios($, {
method: "post",
url: `https://api.rocketskip.com/api/v1/property/skiptrace`,
headers: {
Authorization: `Bearer ${this.rocketskip.$auth.oauth_access_token}`,
},
data,
})
},
})