Planview LeanKit enables organizations and teams to visually track and manage the flow of work from strategy to delivery in enterprise Kanban boards. Share a consolidated view of work priority and status – whether in the same room or distributed across the globe.
Go to sitePlanview LeanKit API empowers users to automate and integrate their Kanban workflow management. With this API, you can programmatically access boards, cards, and related data to sync with other systems, trigger actions based on board updates, and extract analytics for reporting purposes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
planview_leankit: {
type: "app",
app: "planview_leankit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.planview_leankit.$auth.domain}.leankit.com/io/scim/v1/Users`,
auth: {
username: `${this.planview_leankit.$auth.username}`,
password: `${this.planview_leankit.$auth.password}`,
},
})
},
})
Automated Task Syncing with External Project Management Tools: Create workflows that sync Planview LeanKit tasks with other project management apps like Asana or Trello. Whenever a card is updated in LeanKit, the corresponding task in the other tool is automatically updated to reflect the change.
Enhanced Reporting with Data Analysis Tools: Set up a pipeline to continuously export card data to a data warehouse like Google BigQuery, enabling advanced analytics and custom dashboard creation in BI tools such as Tableau or Google Data Studio.
Real-time Notifications of Board Updates: Implement a system that listens for changes in LeanKit boards and sends real-time notifications to team communication platforms like Slack or Microsoft Teams, keeping everyone informed about the latest project developments.
Emit new event when a card is created in a specific lane.
Emit new event when a card is created on a board.
Emit new event when a card enters a specific lane.
Emit new event when a card is moved on a board.
Emit new event when a card is updated on a board.
Create a new card type on a board. See the docs here
Create a comment in a card or task. See the docs here
Add tags in a card or task. See the docs here
Assign one or more users to cards. See the docs here
Assign one or more users to tasks. See the docs here
Planview Leankit uses API keys for authentication. When you connect your Planview Leankit account, Pipedream securely stores the keys so you can easily authenticate to Planview Leankit APIs in both code and no-code steps.
Planview requires users to enter the email and password they use for their Planview account in order to access their API programmatically. For more information, refer to the Planview documentation.
Pipedream recommends using a strong and unique password for your Planview account.