with Supabase Management API and CATS?
Emit new event when a database backup is completed for a project. See the documentation
Emit new event when an activity related to a cat is created.
Emit new event when a contact related to a cat is created.
Creates a new Supabase project within a specified organization. See the documentation
Adds a specific candidate to a job pipeline in CATS. See the documentation
Generates TypeScript types based on the current database schema for a specified Supabase project. See the documentation
Create a new candidate in your CATS database. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
supabase_management_api: {
type: "app",
app: "supabase_management_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.supabase.com/v1/organizations`,
headers: {
Authorization: `Bearer ${this.supabase_management_api.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cats: {
type: "app",
app: "cats",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.catsone.com/v3/users`,
headers: {
"Authorization": `Token ${this.cats.$auth.api_key}`,
},
})
},
})