Forum Discussion
ccclever2
Mar 18, 2025Copper Contributor
Get Root Path Area ID [Azure Devops Extension]
Hi, I am developing an extension for Azure Devops. The extensions aims to render content on the work item page depending on the work item's area path ID. I managed to retrieve the available area pat...
Kidd_Ip
Apr 29, 2025MVP
How about considering Cross-Reference Using Classification Data:
- Retrieve the complete area tree using the Extension API with getClassificationNode.
- Identify the root node by matching the name (which should be the same as the project name) or by its position at the top of the hierarchy.
- Use the raw node ID from this call if you need the underlying classification node identifier.