Skip to main content

Anyway to get the boardId from an integrationId or automationId?

  • May 17, 2024
  • 4 replies
  • 145 views

Is there anyway to grab the boardId of the board you’re trying to install an integration on?

payload: {
[0] recipeId: xxxxx,
[0] integrationId: xxxxxx,
[0] automationId: xxxxx,
[0] pageRequestData: {},
[0] dependencyData: {}
[0] }

Something like this? (NOT AN ACTUAL QUERY)

query {
          integrations(ids: ${integrationId}) {
            boards {
              id
            }
          }
        }

Thanks,
Ian

4 replies

  • Author
  • Participating Frequently
  • May 17, 2024

Just had to add the boardId dependency to the Field Type. 😅


basdebruin
  • Community Expert
  • May 17, 2024

Not through an API call like this. Are you building an integration with a custom trigger or a custom action (or both)?

The custom trigger gets the boardId when you add it as on input field (choose context). The custom action can get the boardId from either the trigger output or the context.


  • Author
  • Participating Frequently
  • May 17, 2024

I’m building a custom action. Once I had the dependency of the boardId set from the Custom Field Type being used, I had to update the recipe with the new custom action to grab the boardId dependency. Now it works!


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • May 20, 2024

Hello there @ianhunter373, I am glad you found the solution for this!