with Miro Developer App and Nuclino?
Emit new event when a card item is updated on a Miro board
Emit new event when a new item or collection is created in Nuclino.
Emit new event when an item or collection is updated in Nuclino.
Emit new event when an item's position changes in a Miro Custom App.
Emit new event when a new card item is created on a Miro board
Create a new item or collection in Nuclino. See the documentation
Creates a card item on a Miro board. See the documentation
Search for items or collections in Nuclino. See the documentation
The Miro Developer App API lets you extend the functionality of Miro, an online collaborative whiteboarding platform. On Pipedream, you can automate interactions with Miro boards, such as creating or updating content, and extracting data for reporting or integration purposes. This can streamline collaboration and project management by automating repetitive tasks and connecting Miro with other tools and services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
miro_custom_app: {
type: "app",
app: "miro_custom_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.miro.com/v2/boards`,
headers: {
Authorization: `Bearer ${this.miro_custom_app.$auth.access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nuclino: {
type: "app",
app: "nuclino",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nuclino.com/v0/teams`,
headers: {
"authorization": `${this.nuclino.$auth.api_key}`,
},
})
},
})