简体   繁体   English

Azure DevOps - REST:如何请求积压

[英]Azure DevOps - REST: how to request on backlog

need help on how to GET on dev azure backlog section, im able to get for the workitems/queries but unsuccessful if im requesting on backlog需要有关如何获取 dev azure backlog 部分的帮助,我能够获取工作项/查询,但如果我请求 backlog 则不成功

This is the url to which the backlog list are located: https://dev.azure.com/companyname/projectname/_backlogs/backlog/Project/Features这是积压列表所在的 url: https ://dev.azure.com/companyname/projectname/_backlogs/backlog/Project/Features

tried to follow this steps but response 400: https://docs.microsoft.com/en-us/rest/api/azure/devops/work/backlogs/get-backlog?view=azure-devops-rest-6.0尝试执行此步骤但响应 400: https ://docs.microsoft.com/en-us/rest/api/azure/devops/work/backlogs/get-backlog?view=azure-devops-rest-6.0

To use the Rest API to get backlogs: Backlogs - Get Backlog , you need to input the valid parameter ID in URL.使用 Rest API 获取 backlog: Backlogs - Get Backlog ,您需要在 URL 中输入有效的参数ID

I suggest that you can use the Rest API: to list all IDs: Backlogs - List我建议你可以使用Rest API:列出所有ID: Backlogs - List

GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/backlogs?api-version=6.0-preview.1

In the Response, you can get the valid ID.在响应中,您可以获得有效的 ID。

For example:例如:

在此处输入图像描述

You can also use the Rest API: Backlogs - Get Backlog Level Work Items to get the work items corresponding to the backlog level也可以使用Rest API: Backlogs - Get Backlog Level Work Items 获取积压级别对应的工作项

GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/backlogs/{backlogId}/workItems?api-version=6.0-preview.1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Azure Devops,如何在 devops backlog 中添加“工作项类型” - Azure Devops, how to add “Work Item type” in devops backlog 如何使用 Apache NiFi 创建 Azure DevOps 产品待办事项 - How to create Azure DevOps Product Backlog Item using Apache NiFi 有没有办法从 Azure DevOps API 中提取积压项目数据? - Is there a way to pickup backlog item data from the Azure DevOps API? 如何在 azure devops 中获取拉取请求 ID - How to get Pull request Id in azure devops 如何自动化 Azure DevOps 拉取请求? - How to automate Azure DevOps Pull Request? Azure DevOps:如何使用 REST API 从 Azure DevOps 项目中导出工作项? - Azure DevOps : How to export the Work Items from an Azure DevOps Project using REST APIs? Azure DevOps REST API,如何让Azure Function在DevOps项目中创建工作项? - Azure DevOps REST API, how to allow Azure Function to create workitems in DevOps project? 如何使用 Azure Devops 服务更新 Azure Devops 中测试用例的“区域路径” Rest API - How to update "Area Path" of a test case in Azure Devops using Azure Devops Services Rest API REST API 向 Azure 请求来自 Z3A580F142203677F1F0BC30830FAuth9 的 DevOps - REST API request to Azure DevOps from Azure Data Factory with OAuth2 Azure 开发运营 REST API 发送邮件 - Azure Devops REST API SendMail
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM