with Planview Leankit and Airfocus?
Emit new event when a new item is created or an existing one is updated.
Emit new event when a card is created in a specific lane.
Emit new event when a card is created 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
Planview 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airfocus: {
type: "app",
app: "airfocus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.airfocus.com/api/fields/types`,
headers: {
Authorization: `Bearer ${this.airfocus.$auth.api_key}`,
"user-agent": `pipedream/1`,
},
})
},
})