Hello, I would like to know how I can construct a url to a board from the board id.
My app queries monday.com and allows the user to select the board using the monday.com API. At the moment this is the query we are using:
query: `query
{ boards (${options || ''})
{
name
description
id
workspace_id
}
}`,
Since I have the board_id how can I construct a url so that I can link the user to the specific board?
I have tried https://monday.com/boards/${board_id}
but this generates a broken link