with Daktela and TrackingTime?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
daktela: {
type: "app",
app: "daktela",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.daktela.$auth.instance_url}/api/v6/whoim.json`,
params: {
accessToken: `${this.daktela.$auth.access_token}`,
},
})
},
})
The TrackingTime API enables the automation of time tracking, task management, and reporting processes. In Pipedream, you can use this API to create powerful workflows that connect TrackingTime with other apps to streamline productivity, enhance project management, and generate insights on time allocation. Automate tasks based on project activities, sync time entries with calendars, or trigger notifications based on tracked time data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
trackingtime: {
type: "app",
app: "trackingtime",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.trackingtime.co/api/v4/users`,
auth: {
username: `API_TOKEN`,
password: `${this.trackingtime.$auth.app_password}`,
},
})
},
})