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 Formatting API

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

Create New Task with the Kanbanize API

Create New Task. See the docs here

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Edit Task with the Kanbanize API
 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
List Tasks with the Kanbanize API

Get All Tasks. See the docs here

 
Try it

Overview of Kanbanize

Kanbanize is a tool that helps you visualized and manage your work. With
Kanbanize, you can build a variety of things, including:

  • A board to help you manage your work
  • A workspace to help you collaborate with others
  • A system to help you track your work
  • A tool to help you prioritize your work

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 Formatting

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