Supabase is an open source Firebase alternative.
Emit new event for every new row added in a table. See documentation here
Emit new event when a specific form receive a new response.
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
Fetches the meta information of all the forms present in a Zoho Creator application. 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}`,
},
})
},
})
Zoho Forms API allows you to automate interactions with your forms and the data you collect. Leveraging Pipedream, you can harness this API to trigger workflows upon new form submissions, manipulate form entries, and sync data with other services. Pipedream’s serverless platform simplifies integrating Zoho Forms with hundreds of other apps, empowering you to create custom, scalable workflows without hosting or managing servers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_forms: {
type: "app",
app: "zoho_forms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://forms.zoho.com/api/zforms?zf_service=Pipedream`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_forms.$auth.oauth_access_token}`,
},
})
},
})