All your customer data pipelines in one platform. Use the Rudderstack HTTP API to send your event data from your sources to the specified destinations.
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
The RudderStack HTTP API gives you the power to track and send events to RudderStack from anywhere you can make an HTTP request. With this API, you can streamline data from your apps, websites, and servers directly into RudderStack, enabling real-time analytics and insights. Using Pipedream, you can harness this capability to automate data collection and orchestration, syncing event data with other services, triggering actions based on customer behavior, or even enriching event data before it hits your data warehouse.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rudderstack: {
type: "app",
app: "rudderstack",
}
},
async run({steps, $}) {
const data = {
"userId": `{{pass_user_id_here}}`,
"anonymousId": `{{or_pass_anonymouse_user_id_here}}`,
}
return await axios($, {
method: "post",
url: `${this.rudderstack.$auth.data_plane_url}/v1/identify`,
auth: {
username: `${this.rudderstack.$auth.source_write_key}`,
password: ``,
},
data,
})
},
})
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}`,
},
})
},
})