Hello Everyone!
I am here to ask for help regarding zapier integrations with monday.com
Is there a way to get all the board items using zapier?
The desired goal is to get all the item in zapier and then by using the functionality of looping by zapier i want to update the items one by one according to some conditions.
Thanks!
Hey there,
Hmm, I think the only way to do this (if it’s even possible) would be to export all the board items into a spreadsheet and update them that way. However, do you mind clarifying what your use case is?
Hi
you will need to use a POST webhook to do this and without code to parse the response the items are not returned in a very clean way.
Screenshot below shows the POST request. you would need to put in the id of the board you want to query. Your Api key can be found here: https://{yourmondayaccountname}.monday.com/apps/manage/tokens
your board id can be found in the url when viewing the board
{
boards(ids: INSERTID) {
items {
id
name
column_values {
text,
id,
title
}
}
}
}
Hey
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.