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).
Emit new event whenever a new activity is logged in Timebuzzer. See the documentation
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Generates a new activity in Timebuzzer. See the documentation
Retrieves a list of all activities in Timebuzzer. See the documentation
Modifies an existing activity in Timebuzzer. 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.
The timeBuzzer API enables you to track, manage, and analyze time spent across various projects and tasks, directly from the Pipedream platform. With this API, you can create, update, and retrieve time entries, as well as manage projects and activities. This provides a powerful way to automate your workflow, integrate with other apps, and streamline your time tracking processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
timebuzzer: {
type: "app",
app: "timebuzzer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.timebuzzer.com/open-api/account/me`,
headers: {
"Authorization": `APIKey ${this.timebuzzer.$auth.api_key}`,
},
})
},
})