Fitness management software for in-person and online classes at boutique gyms, studios, and boxes worldwide. #TeamUp
Delay the execution of your workflow for a specific amount of time (does not count against your compute time).
Deletes an existing event on a specified calendar. See the documentation
Updates an existing event on a specified calendar. See the documentation
The TeamUp API provides an interface to interact with TeamUp's calendar services, allowing for robust management of schedules, events, and calendars. Leveraging this API within Pipedream, you can create automated workflows that handle event synchronization, notifications, and calendar data manipulation. Pipedream's serverless platform facilitates seamless integration with various services to enhance the capabilities of TeamUp, such as triggering actions on a schedule or in response to events, and connecting with other apps like Slack or Google Sheets for extended functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
teamup: {
type: "app",
app: "teamup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.teamup.com/check-access`,
headers: {
"Teamup-Token": `${this.teamup.$auth.api_key}`,
},
})
},
})
The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.
export default defineComponent({
async run({steps, $}) {
// Specify the amount of time to delay your workflow in milliseconds
return $.flow.delay(5000)
},
})