with Supabase Management API and Ghost.org (Admin API)?
Emit new event when a database backup is completed for a project. See the documentation
Emit new event each time a member is deleted from a site.
Emit new event each time a member is updated.
Emit new event for each new member added to a site.
Emit new event for each new page published on a site.
Creates a new Supabase project within a specified organization. See the documentation
Generates TypeScript types based on the current database schema for a specified Supabase project. 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`,
},
})
},
})
The Ghost.org (Admin API) provides a powerful platform for content management and distribution, allowing developers to programmatically interact with their Ghost site. With this API, you can automate content creation, manage posts, pages, and tags, and dynamically adjust site settings. This enables seamless content workflows, from drafting and scheduling posts to curating featured articles and managing user access. When used with Pipedream, these capabilities expand, enabling integrations with countless other services to create sophisticated, automated content pipelines that can save time and enhance your content strategy.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ghost_org_admin: {
type: "app",
app: "ghost_org_admin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.ghost_org_admin.$auth.admin_api_url}}/ghost/api/v3/admin/site`,
headers: {
Authorization: `Bearer ${this.ghost_org_admin.$auth.admin_api_key}`,
},
})
},
})