with Workstack and EmailVerify.io?
Workstack is a task and project management tool that helps teams organize their workloads efficiently. With its API, you can automate project and task creation, update timelines, and sync across multiple tools, ensuring your team stays on top of their deliverables. The Workstack API on Pipedream opens up possibilities to connect with hundreds of other apps, triggering actions in Workstack or vice versa, based on events from other tools, leading to a more integrated workflow and improved productivity.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
workstack: {
type: "app",
app: "workstack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.workstack.io/api/team`,
headers: {
"Accept": `application/json`,
},
params: {
api_token: `${this.workstack.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailverify_io: {
type: "app",
app: "emailverify_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.emailverify.io/api/v1/validate`,
params: {
key: `${this.emailverify_io.$auth.api_key}`,
email: `integrations@pipedream.com`,
},
})
},
})