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
Initiates a process to add a new contact to your Pidj account. See the documentation.
Triggers a pre-configured text survey to a specific contact. Requires the contact's information and the survey ID. See the documentation.
Sends a text message to a specified phone number from your pidj account. 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 Pidj API allows users to manage and automate SMS communication directly through their platform. Integrating Pidj with Pipedream offers a powerful way to streamline communications, synchronize data across apps, and trigger SMS actions based on specific conditions. With Pipedream, you can effortlessly connect Pidj to other apps, creating sophisticated, multi-step workflows that react in real-time to events across your software stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pidj: {
type: "app",
app: "pidj",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://gopidj.com/api/2020/contacts`,
auth: {
username: `${this.pidj.$auth.account_key}`,
password: `${this.pidj.$auth.token}`,
},
})
},
})