如何在 Azure DevOps 中按功能获取所有项目

How to get all items by feature in Azure DevOps

如何通过特征id获取所有任务项?

我想获取属于特定特征的所有项目。是否可以使用 Rest API?

您可以使用 Work Items - Get Work Item API 和 $expand 参数来完成:

GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id}?$expand=relations&api-version=5.1

$expand=relations 参数将 return 链接到工作项目的所有项目。