With the monday.com API you can build a variety of applications and integrations. Some examples include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
monday: {
type: "app",
app: "monday",
}
},
async run({steps, $}) {
const data = {
"query": `query {
me {
is_guest
join_date
}
}`,
}
return await axios($, {
url: `https://api.monday.com/v2`,
headers: {
"Authorization": `${this.monday.$auth.api_key}`,
},
data,
})
},
})
Emit new event when a column value is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.
Emit new event when a new item is added to a board in Monday.
Emit new event when an item's Name is updated on a board in Monday.
Emit new event when a value in the specified column is updated on a board in Monday. For changes to Name, use the Name Updated Trigger.
monday.com uses API keys for authentication. When you connect your monday.com account, Pipedream securely stores the keys so you can easily authenticate to monday.com APIs in both code and no-code steps.
Add your monday.com API token below