Classification Nodes - Update
Update an existing classification node.
PATCH https://dev.azure.com/{organization}/{project}/_apis/wit/classificationnodes/{structureGroup}/{path}?api-version=7.1
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
organization
|
path | True |
string |
The name of the Azure DevOps organization. |
project
|
path | True |
string |
Project ID or project name |
structure
|
path | True |
Structure group of the classification node, area or iteration. |
|
path
|
path |
string |
Path of the classification node. |
|
api-version
|
query | True |
string |
Version of the API to use. This should be set to '7.1' to use this version of the api. |
Request Body
Name | Type | Description |
---|---|---|
_links |
Link references to related REST resources. |
|
attributes |
object |
Dictionary that has node attributes like start/finish date for iteration nodes. |
children |
List of child nodes fetched. |
|
hasChildren |
boolean |
Flag that indicates if the classification node has any child nodes. |
id |
integer |
Integer ID of the classification node. |
identifier |
string |
GUID ID of the classification node. |
name |
string |
Name of the classification node. |
path |
string |
Path of the classification node. |
structureType |
Node structure type. |
|
url |
string |
Responses
Name | Type | Description |
---|---|---|
200 OK |
successful operation |
Security
oauth2
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://app.vssps.visualstudio.com/oauth2/authorize&response_type=Assertion
Token URL:
https://app.vssps.visualstudio.com/oauth2/token?client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer
Scopes
Name | Description |
---|---|
vso.work_write | Grants the ability to read, create, and update work items and queries, update board metadata, read area and iterations paths other work item tracking related metadata, execute queries, and to receive notifications about work item events via service hooks. |
Examples
Change an iteration's dates |
Rename an area |
Rename an iteration |
Change an iteration's dates
Sample request
PATCH https://dev.azure.com/fabrikam/Fabrikam-Fiber-Git/_apis/wit/classificationnodes/Iterations?api-version=7.1
{
"attributes": {
"startDate": "2015-01-26T00:00:00Z",
"finishDate": "2015-01-30T00:00:00Z"
}
}
Sample response
{
"id": 126392,
"identifier": "a5c68379-3258-4d62-971c-71c1c459336e",
"name": "Ultimate iteration",
"structureType": "iteration",
"hasChildren": false,
"path": "\\fabrikam\\fiber\\tfvc\\area",
"attributes": {
"startDate": "2015-01-26T00:00:00Z",
"finishDate": "2015-01-30T00:00:00Z"
},
"_links": {
"self": {
"href": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Iterations/Ultimate%20iteration"
},
"parent": {
"href": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Iterations"
}
},
"url": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Iterations/Ultimate%20iteration"
}
Rename an area
Sample request
PATCH https://dev.azure.com/fabrikam/Fabrikam-Fiber-Git/_apis/wit/classificationnodes/Areas?api-version=7.1
{
"name": "Website team"
}
Sample response
{
"id": 126391,
"identifier": "25450731-5178-4044-84f0-0a0ebdef0c33",
"name": "Website team",
"structureType": "area",
"hasChildren": false,
"path": "\\fabrikam\\fiber\\tfvc\\area",
"_links": {
"self": {
"href": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Areas/Website%20team"
},
"parent": {
"href": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Areas"
}
},
"url": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Areas/Website%20team"
}
Rename an iteration
Sample request
PATCH https://dev.azure.com/fabrikam/Fabrikam-Fiber-Git/_apis/wit/classificationnodes/Iterations?api-version=7.1
{
"name": "Ultimate iteration"
}
Sample response
{
"id": 126392,
"identifier": "8677aa7d-2f4a-4f53-8f0f-b84a23997f70",
"name": "Ultimate iteration",
"structureType": "iteration",
"hasChildren": false,
"path": "\\fabrikam\\fiber\\tfvc\\iteration",
"_links": {
"self": {
"href": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Iterations/Ultimate%20iteration"
},
"parent": {
"href": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Iterations"
}
},
"url": "https://dev.azure.com/fabrikam/6ce954b1-ce1f-45d1-b94d-e6bf2464ba2c/_apis/wit/classificationNodes/Iterations/Ultimate%20iteration"
}
Definitions
Name | Description |
---|---|
Reference |
The class to represent a collection of REST reference links. |
Tree |
Node structure type. |
Tree |
Structure group of the classification node, area or iteration. |
Work |
Defines a classification node for work item tracking. |
ReferenceLinks
The class to represent a collection of REST reference links.
Name | Type | Description |
---|---|---|
links |
object |
The readonly view of the links. Because Reference links are readonly, we only want to expose them as read only. |
TreeNodeStructureType
Node structure type.
Name | Type | Description |
---|---|---|
area |
string |
Area type. |
iteration |
string |
Iteration type. |
TreeStructureGroup
Structure group of the classification node, area or iteration.
Name | Type | Description |
---|---|---|
areas |
string |
|
iterations |
string |
WorkItemClassificationNode
Defines a classification node for work item tracking.
Name | Type | Description |
---|---|---|
_links |
Link references to related REST resources. |
|
attributes |
object |
Dictionary that has node attributes like start/finish date for iteration nodes. |
children |
List of child nodes fetched. |
|
hasChildren |
boolean |
Flag that indicates if the classification node has any child nodes. |
id |
integer |
Integer ID of the classification node. |
identifier |
string |
GUID ID of the classification node. |
name |
string |
Name of the classification node. |
path |
string |
Path of the classification node. |
structureType |
Node structure type. |
|
url |
string |