KanbanFlow is a Lean project management tool allowing real-time collaboration between team members. Supports the Pomodoro technique for time tracking.
Go to siteKanbanFlow 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:
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}`,
},
})
},
})
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.