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 new WhatsApp conversation is started on the user’s 2chat connected number.
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 message is either sent or received on 2Chat.
Emit new event when a WhatsApp order is received on user's 2Chat connected number.
Checks if a given phone number has a WhatsApp account. 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 2Chat API allows developers to build and manage chatbots that can engage users in personalized conversations across various platforms like WhatsApp, Telegram, and more. This API facilitates the creation, training, and integration of chatbots with existing applications, enabling automated responses based on user inputs and behaviors. Utilizing Pipedream's capabilities, developers can orchestrate complex workflows that react to events from 2Chat, process data, and trigger actions in other apps, streamlining communication processes and enhancing user interaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_2chat: {
type: "app",
app: "_2chat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.p.2chat.io/open/contacts/search`,
headers: {
"Content-Type": `application/json`,
"X-User-API-Key": `${this._2chat.$auth.api_key}`,
},
params: {
query: `John`,
results_per_page: `30`,
page_number: `0`,
},
})
},
})