The easiest and most accurate way to track your time.
Emit new event whenever a new activity is logged in Timebuzzer. See the documentation
Generates a new activity in Timebuzzer. See the documentation
Delay the execution of your workflow for a specific amount of time (does not count against your compute time).
Retrieves a list of all activities in Timebuzzer. See the documentation
Modifies an existing activity in Timebuzzer. See the documentation
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}`,
},
})
},
})
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)
},
})