« Azure devops api » : différence entre les versions
De Banane Atomic
Aller à la navigationAller à la recherche
(→List) |
(→Team) |
||
Ligne 67 : | Ligne 67 : | ||
"projectName": "My Project", | "projectName": "My Project", | ||
"projectId": "12345678-1234-1234-1234-123456789012" | "projectId": "12345678-1234-1234-1234-123456789012" | ||
} | |||
</kode> | |||
= Iteration / Sprint = | |||
== [https://docs.microsoft.com/en-us/rest/api/azure/devops/work/iterations/list?view=azure-devops-rest-6.0 List] == | |||
<pre>GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations?api-version=6.0</pre> | |||
<kode lang='json'> | |||
{ | |||
"count": 8, | |||
"value": [ | |||
{ | |||
"id": "12345678-1234-1234-1234-123456789012", | |||
"name": "Sprint 111", | |||
"attributes": { | |||
"startDate": "2021-04-01T00:00:00Z", | |||
"finishDate": "2021-04-12T00:00:00Z", | |||
"timeFrame": "current" /* past, future */ | |||
}, | |||
"url": "https://dev.azure.com/msc-dev/7b9f9008-62ae-4f5c-9019-b93591af42b1/03274358-a35d-4c0a-95a9-51df5c8e39d8/_apis/work/teamsettings/iterations/c9658d24-9ab0-4243-b1a2-7d386f0cabaa" | |||
} | } | ||
</kode> | </kode> |
Version du 28 janvier 2021 à 18:16
Links
Build
Get Build Work Items Refs
GET https://dev.azure.com/{organization}/{project}/_apis/build/builds/{buildId}/workitems?api-version=6.0
{ "count": 1, "value": [ { "id": "111" } |
Work Item
Get Work Item
GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id}?api-version=6.0
Pipeline
List
GET https://dev.azure.com/{organization}/{project}/_apis/pipelines?api-version=6.0-preview.1
{ "count": 1, "value": [ { "id": 111, "revision": 1, "name": "MyPipeline", "folder": "\\MyFolder" } |
Runs - List
GET https://dev.azure.com/{organization}/{project}/_apis/pipelines/{pipelineId}/runs?api-version=6.0-preview.1
{ "count": 1, "value": [ { "pipeline": { "id": 111, "name": "MyPipeline" }, "state": "completed", "result": "failed", "createdDate": "2021-01-27T08:26:17.5864636Z", "finishedDate": "2021-01-27T09:07:43.4227015Z", "id": 222, "name": "20210127.3" } |
Team
List
GET https://dev.azure.com/{organization}/_apis/projects/{project}/teams?api-version=6.0
{ "count": 1, "value": [ { "id": "12345678-1234-1234-1234-123456789012", "name": "My Team", "description": "Team description", "projectName": "My Project", "projectId": "12345678-1234-1234-1234-123456789012" } |
Iteration / Sprint
List
GET https://dev.azure.com/{organization}/{project}/{team}/_apis/work/teamsettings/iterations?api-version=6.0
{ "count": 8, "value": [ { "id": "12345678-1234-1234-1234-123456789012", "name": "Sprint 111", "attributes": { "startDate": "2021-04-01T00:00:00Z", "finishDate": "2021-04-12T00:00:00Z", "timeFrame": "current" /* past, future */ }, "url": "https://dev.azure.com/msc-dev/7b9f9008-62ae-4f5c-9019-b93591af42b1/03274358-a35d-4c0a-95a9-51df5c8e39d8/_apis/work/teamsettings/iterations/c9658d24-9ab0-4243-b1a2-7d386f0cabaa" } |