Kanbanize

Kanbanize is designed to help advanced product teams apply the principles of Lean and Kanban to their work to maximize results.

Integrate the Kanbanize API with the Email API

Setup the Kanbanize API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate Kanbanize and Email remarkably fast. Free for developers.

Create New Task with Kanbanize API on New Email from Email API
Email + Kanbanize
 
Try it
Edit Task with Kanbanize API on New Email from Email API
Email + Kanbanize
 
Try it
List Tasks with Kanbanize API on New Email from Email API
Email + Kanbanize
 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

 
Try it
Create New Task with the Kanbanize API

Create New Task. See the docs here

 
Try it
Edit Task with the Kanbanize API
 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
Try it
List Tasks with the Kanbanize API

Get All Tasks. See the docs here

 
Try it

Overview of Kanbanize

The Kanbanize API enables the automation of complex project management workflows within Kanban boards. By leveraging the API, you can create, update, and move cards, manage board configurations, and integrate real-time updates with other tools. It's a powerful way to streamline project tracking, automate task assignments, and synchronize data across various project management platforms.

Connect Kanbanize

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    kanbanize: {
      type: "app",
      app: "kanbanize",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.kanbanize.$auth.subdomain}.kanbanize.com/api/v2/users`,
      headers: {
        "apikey": `${this.kanbanize.$auth.api_key}`,
      },
    })
  },
})

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});