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
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 Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})