Supabase is an open source Firebase alternative.
Emit new event when a label is created in Tableau. See the documentation
Emit new event for every new row added in a table. See documentation here
Emit new event each time a new workbook is created in Tableau. See the documentation
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
Creates a project on the specified site. You can also create project hierarchies by creating a project under the specified parent project on the site. See the documentation
Returns a list of projects on the specified site. 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 Tableau API allows you to tap into the robust data visualization and business intelligence capabilities of Tableau. Within Pipedream, you can leverage this API to automate reporting, manage users, update data sources, and extract insights. This enables you to integrate Tableau's analytics with other services, streamlining your data workflows and ensuring your dashboards remain up-to-date with minimal manual effort.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tableau: {
type: "app",
app: "tableau",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.tableau.$auth.domain}/api/3.21/sessions/current`,
headers: {
"X-Tableau-Auth": `${this.tableau.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})