leadPops is the easiest way for mortgage pros, real estate agents, and insurance agents to generate more quality leads, no setup required.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
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,
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}