An award-winning Smart and Simple Lead Management solution for Small Businesses.
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
Adds a new lead into the HelloLeads system. See the documentation
Call a Postgres function in a database. See the docs here
The HelloLeads API integrates with Pipedream to automate your lead management processes. By leveraging this API on Pipedream, you can streamline contact syncing, lead tracking, and perform actions based on lead status changes. With serverless workflows, you can connect HelloLeads with various apps like CRMs, communication platforms, or data analysis tools to enhance lead engagement, follow-up efficiency, and data-driven decision-making.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
helloleads: {
type: "app",
app: "helloleads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.helloleads.io/index.php/private/api/leads`,
headers: {
"hls-key": `token=${this.helloleads.$auth.api_key}`,
"Xemail": `${this.helloleads.$auth.email}`,
"Content-Type": `application/json`,
},
})
},
})
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}`,
},
})
},
})