Supabase is an open source Firebase alternative.
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
Searches for contact information based on user-defined props which may include identifiers such as name, email, or company. Returns the contact data if a match is found within the LeadIQ database. See the documentation
Call a Postgres function in a database. See the docs here
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}`,
},
})
},
})
The LeadIQ API enables seamless integration of LeadIQ’s capabilities into various marketing and sales workflows, automating the lead capture and enrichment processes. By harnessing this API on Pipedream, you can automate the extraction of lead data, sync it with CRM systems, and trigger personalized outreach campaigns, all within a serverless environment. This reduces manual tasks, enhances lead quality, and accelerates the sales pipeline.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadiq: {
type: "app",
app: "leadiq",
}
},
async run({steps, $}) {
const data = {
"query": `query Usage {
usage {
planUsage {
name
usageType
creditType
units
cap
billingType
}
}
}`,
}
return await axios($, {
method: "post",
url: `https://api.leadiq.com/graphql`,
auth: {
username: `${this.leadiq.$auth.api_key}`,
password: ``,
},
data,
})
},
})