Effortless time tracking to help you lead a more rewarding work-life.
Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.
Emit new event when an email matching the search criteria is received. This source is capped at 100 max new messages per run.
Creates a new tag within the given space and scope. See the documentation
Create a draft from your Google Workspace email account. See the documentation
The Timeular API lets you track, analyze, and manage your time directly, integrating your time tracking activities with other apps and automations. With Pipedream, you can harness the API to create custom workflows, such as triggering events based on time tracking data, syncing time entries with project management tools, or even automating invoicing processes based on tracked time. It's about connecting Timeular's detailed time tracking capabilities with other services to streamline productivity and reporting.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
timeular: {
type: "app",
app: "timeular",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.timeular.com/api/v3/me`,
headers: {
Authorization: `Bearer ${this.timeular.$auth.oauth_access_token}`,
},
})
},
})
By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gmail: {
type: "app",
app: "gmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
},
})
},
})