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
Emit new event when a new activity is created in Satuit. See the documentation
Emit new event each time a new contact is created in Satuit. See the documentation
Emit new event when a new opportunity is created in Satuit. See the documentation
Creates a new business within the Satuit platform. See the documentation
Creates a new dealflow within the Satuit platform, setting up a new series of business interactions. See the documentation
Searches for a specific contact within the Satuit platform using an email address as the key identifier. See the documentation
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 Satuit API enables seamless integration of asset management and CRM functionalities into various business processes. With it, you can automate tasks such as data synchronization, report generation, and client management. Pipedream, with its serverless execution model, allows you to connect Satuit to hundreds of other apps to create powerful workflows without managing any infrastructure. You could, for instance, trigger a workflow with a new database entry, process the data within Pipedream, and then use the Satuit API to update customer records or create tasks for follow-ups.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
satuit: {
type: "app",
app: "satuit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.satuit.$auth.environment}.satuitcrm.com/${this.satuit.$auth.sitename}/api/v1/account`,
headers: {
Authorization: `Bearer ${this.satuit.$auth.oauth_access_token}`,
},
})
},
})