with Schedule and Microsoft Bookings?
Cancels an appointment in a Microsoft Bookings business. See the documentation
Creates a new appointment in a Microsoft Bookings business. See the documentation
Creates a new Microsoft Bookings business. See the documentation
Creates a new customer in a Microsoft Bookings business. See the documentation
Creates a new service in a Microsoft Bookings business. See the documentation
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_bookings: {
type: "app",
app: "microsoft_bookings",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/solutions/bookingBusinesses`,
headers: {
Authorization: `Bearer ${this.microsoft_bookings.$auth.oauth_access_token}`,
},
})
},
})