with monday (API Key) and Nuclino?
Emit new event when a column value is updated on a board. See the documentation
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 name is updated. See the documentation
Emit new event when a board is created in Monday. See the documentation
Create a new item or collection in Nuclino. See the documentation
Search for items or collections in Nuclino. See the documentation
The monday.com API unlocks the potential to automate workflows, sync data across applications, and create dynamic project management solutions. With this API on Pipedream, you can craft custom integrations that respond to events in monday.com, manipulate boards, items, and columns, and harmonize project data with third-party services to streamline operations, reduce manual workload, and ensure consistent information flow within your business ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
monday: {
type: "app",
app: "monday",
}
},
async run({steps, $}) {
const data = {
query: `query {
me {
id
email
}
}`
}
return await axios($, {
method: "post",
url: `https://api.monday.com/v2`,
headers: {
"Authorization": `${this.monday.$auth.api_key}`,
},
data,
})
},
})
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}`,
},
})
},
})