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
Just had to add the boardId dependency to the Field Type. 
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.
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!
Hello there @ianhunter373, I am glad you found the solution for this!