Trigger workflows on an interval or cron schedule.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Triggers when a new client is created. 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.
YoPlanning API offers tools for event planning, with features such as creating and managing event schedules, attendee lists, and budgets. Leveraging this API in Pipedream enables automating event-related workflows, syncing event data with other services, and triggering actions based on event updates or attendee responses. It's a powerful way to streamline event management tasks, ensuring that nothing slips through the cracks as you orchestrate everything from small meetings to large conferences.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yoplanning: {
type: "app",
app: "yoplanning",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://yoplanning.pro/api/v3.1/teams`,
headers: {
"Authorization": `Token ${this.yoplanning.$auth.api_key}`,
},
})
},
})