KanbanFlow

KanbanFlow is a Lean project management tool allowing real-time collaboration between team members. Supports the Pomodoro technique for time tracking.

Go to site
Explore
/
Apps
/
KanbanFlow

KanbanFlow API Integrations

Build and run workflows using the KanbanFlow API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

KanbanFlow provides a simple, yet powerful API that lets you build a variety of applications on top of it. Below are some examples of what you can build:

  • A simple to-do list application
  • A project management application
  • A task tracking application
  • A kanban board application
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: {
    kanbanflow: {
      type: "app",
      app: "kanbanflow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://kanbanflow.com/api/v1/users`,
      params: {
        apiToken: `${this.kanbanflow.$auth.api_token}`,
      },
    })
  },
})
Create Task with KanbanFlow API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + KanbanFlow
 
Try it
Send Message (Advanced) with Discord Webhook API on Task Created from KanbanFlow API
KanbanFlow + Discord Webhook
 
Try it
Create Task with KanbanFlow API on New Submission from Typeform API
Typeform + KanbanFlow
 
Try it
Create Task with KanbanFlow API on Custom Events from Zoom API
Zoom + KanbanFlow
 
Try it
Get Film with SWAPI - Star Wars API on Task Created from KanbanFlow API
KanbanFlow + SWAPI - Star Wars
 
Try it
Task Created from the KanbanFlow API

Emit new event when a new task is created

 
Try it
Task Moved from the KanbanFlow API

Emit new event when a task is moved

 
Try it
Create Task with the KanbanFlow API

Create a task (docs available on board settings)

 
Try it

Authentication

KanbanFlow uses API keys for authentication. When you connect your KanbanFlow account, Pipedream securely stores the keys so you can easily authenticate to KanbanFlow APIs in both code and no-code steps.

To create an API Token, click on Menu in the top right corner of a premium board and select Settings. Then go to API & Webhooks.