Kanban Tool is a visual management solution that helps companies visualize workflow, track project progress, and analyze and significantly improve business processes. Kanban Tool provides powerful online Kanban boards with seamless time tracking.
Go to siteI can use the Kanban Tool API to:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kanban_tool: {
type: "app",
app: "kanban_tool",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.kanban_tool.$auth.domain}.kanbantool.com/api/v3/users/current.json`,
headers: {
Authorization: `Bearer ${this.kanban_tool.$auth.api_token}`,
},
})
},
})
Emit new events when a new activity occured on selected board. See the docs
Emit new events when a new board collaborator is created on selected board. See the docs
Emit new events when a new board is created or given access for a new board. See the docs
Emit new events when a new card type is created on selected board. See the docs
Emit new events when a new comment is created on selected board. See the docs
Kanban Tool uses API keys for authentication. When you connect your Kanban Tool account, Pipedream securely stores the keys so you can easily authenticate to Kanban Tool APIs in both code and no-code steps.
To get your API Token, sign in to your Kanban Tool account, and go to My Profile then API access.
If your Kanban Tool URL is https://123.kanbantool.com/
, your domain is 123
.