Kanban Tool is a visual management solution that helps companies visualize workflow, track project progress, and analyze and significantly improve business processes. Kanban Tool provides powerful online Kanban boards with seamless time tracking.
Emit new events when a new activity occured on selected board. See the docs
Emit new events when a new board collaborator is created on selected board. See the docs
Emit new events when a new board is created or given access for a new board. See the docs
Emit new events when a new card type is created on selected board. See the docs
Emit new events when a new comment is created on selected board. See the docs
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Marks a subtask as completed See the docs here
The Kanban Tool API allows for the seamless integration and manipulation of Kanban boards, tasks, and workflows to optimize project management and team collaboration. By leveraging this API on Pipedream, you can automate task updates, synchronize boards with other data sources, and create custom notifications—thus enhancing productivity and maintaining momentum across projects.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kanban_tool: {
type: "app",
app: "kanban_tool",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.kanban_tool.$auth.domain}.kanbantool.com/api/v3/users/current.json`,
headers: {
Authorization: `Bearer ${this.kanban_tool.$auth.api_token}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})