The easiest and most accurate way to track your time.
Get a unique address where you can send emails to trigger your workflow.
Emit new event whenever a new activity is logged in Timebuzzer. See the documentation
Generates a new activity in Timebuzzer. See the documentation
Retrieves a list of all activities in Timebuzzer. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
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}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});