Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Triggers a Kadoa workflow using Pipedream. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Kadoa API enables automation and integration of Kadoa's time tracking and project management features. With it, you can manage projects, tasks, time entries, and extract reports programmatically. When combined with Pipedream's ability to connect to hundreds of other services and create complex workflows, the potential for increased efficiency and data connectivity is significant. You can trigger workflows on Pipedream with HTTP requests, schedule them, or even run them in response to emails, among other methods.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kadoa: {
type: "app",
app: "kadoa",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.kadoa.com/v2/controller/overview`,
headers: {
"x-api-key": `${this.kadoa.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})