I would like to be able to dynamically generate a link to an external website, probably within a monday board, that would contain (whether it would be sent thru get or post) session information such as the monday user id and account id of the logged in user, so when the user clicked the link, the external website would receive that information and be able to pre-fill a form on the external website with their monday user id and account id.
Of course the link itself would be different for each user, as each user has a different id.
I’m imagining something like a button that a user could press on their board that would take them to the website in question, or even a url link which could be custom-generated for each user that they could click on somewhere in their board.
Is such a thing possible? Can anyone point me in a direction of how to do this, or at least how to grab a logged-in user’s session information to use in a different site?
create an integration app and use the userId / accountId or anything else you need to build the url and update a link column through the API. In this scenario the link column will display the link to the other website and when the user clicks on it a new browser window will show that website. You need to have a trigger to instruct the app to build that URL (e.g. a status change)
create a boardview app and do something like below in the render() function of the React app. In this example the url from the iframe is build in the componentDidMount() React function.