Hello! I need to find my groups IDs to make automations with integromat. So dynamically choosing groups to insert items. Thank you.
Dan
Dan, you can get this by querying the board with the API.
query {
boards (ids: ####) {
groups {
id
title
}
}
}
Integromat has a module to list all the groups in a board as well called “List Board’s Groups”
2 Likes
Thanks Cody, I found them in intetgromat, I’d like to know how to make a query too for all the rest of boards, etc. Where do I put that code?
Hi Cody, I have discovered but this code you gave returns parsing errors.
You will need to replace #### with the ID of the board you are trying to get the group from
1 Like