with Supabase Management API and Microsoft 365 Planner?
Emit new event when a database backup is completed for a project. See the documentation
Emit new event when a new Plan is created in Microsoft 365 Planner
Emit new event when a new Task is created in Microsoft 365 Planner
Creates a new Supabase project within a specified organization. See the documentation
Create a new bucket in Microsoft 365 Planner. See the documentation
Generates TypeScript types based on the current database schema for a specified Supabase project. See the documentation
Create a new plan in Microsoft 365 Planner. See the documentation
Create a new task in Microsoft 365 Planner. 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 Microsoft 365 Planner API lets you tap into the robust task management capabilities of Planner within the Microsoft 365 suite. With this API on Pipedream, you can automate tasks, sync Planner data with other services, manage plans, tasks, and buckets programmatically. This opens up possibilities for creating custom workflows to enhance productivity, streamline project tracking, and maintain synchronization across various platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_365_planner: {
type: "app",
app: "microsoft_365_planner",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_365_planner.$auth.oauth_access_token}`,
},
})
},
})