KanbanFlow

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

Integrate the KanbanFlow API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on Task Created from KanbanFlow API
KanbanFlow + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on Task Moved from KanbanFlow API
KanbanFlow + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Task Created from KanbanFlow API
KanbanFlow + Formatting
 
Try it
[Data] Parse JSON with Formatting API on Task Moved from KanbanFlow API
KanbanFlow + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on Task Created from KanbanFlow API
KanbanFlow + Formatting
 
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
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Overview of KanbanFlow

The KanbanFlow API unlocks the potential for creating customized, automated workflows to enhance productivity and streamline task management. By tapping into this API via Pipedream, developers can craft serverless functions that interact with KanbanFlow boards, tasks, users, and time tracking features. These automations can range from syncing tasks across platforms to triggering notifications based on task updates.

Connect KanbanFlow

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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})