How to get Board detail (name or id) for board column in case of shared area path between 2 boards ?
I am having 2 kanban team boards under a project in ADO. I have a story item which is having shared area path between these 2 team boards.
In order to retrieve item I am using API :
https://dev.azure.com/tasktop-sync-demo/Test Board Column/_apis/wit/workItems/5792498
On both boards my work item is on 2 different columns i.e. Column1 on Board1 and Column2 on Board2, Here in response I am getting these 2 columns with some generatedId keys “WEF_34545787865766_Kanban.Column”
{
“WEF_785DDB2D72A74EBCB0E642E4A45F12EC_Kanban.Column”: “Column1”, “WEF_785DDB2D72A74EBCB0E642E4A45F12EC_Kanban.Column.Done”: false, “WEF_C2ECE6B228114F51A87D025B7DDB85CB_Kanban.Column”: “Column2”, “WEF_C2ECE6B228114F51A87D025B7DDB85CB_Kanban.Column.Done”: false
}
My question is I want to map these generatedId with boards from which these Board columns are coming from for example if “WEF_785DDB2D72A74EBCB0E642E4A45F12EC_Kanban.Column” is coming for some BoardA then how can we get to know details such as Boardname about that corresponding board ?
I am having 2 kanban team boards under a project in ADO. I have a story item which is having shared area path between these 2 team boards. In order to retrieve item I am using API :https://dev.azure.com/tasktop-sync-demo/Test Board Column/_apis/wit/workItems/5792498On both boards my work item is on 2 different columns i.e. Column1 on Board1 and Column2 on Board2, Here in response I am getting these 2 columns with some generatedId keys “WEF_34545787865766_Kanban.Column” {
“WEF_785DDB2D72A74EBCB0E642E4A45F12EC_Kanban.Column”: “Column1”, “WEF_785DDB2D72A74EBCB0E642E4A45F12EC_Kanban.Column.Done”: false, “WEF_C2ECE6B228114F51A87D025B7DDB85CB_Kanban.Column”: “Column2”, “WEF_C2ECE6B228114F51A87D025B7DDB85CB_Kanban.Column.Done”: false
} My question is I want to map these generatedId with boards from which these Board columns are coming from for example if “WEF_785DDB2D72A74EBCB0E642E4A45F12EC_Kanban.Column” is coming for some BoardA then how can we get to know details such as Boardname about that corresponding board ? Read More