Update the project

Request

PUT https://{hostname}:{port}
  /build/rest2/projects/{id}
Table 1. URL parameters
Parameter Type Required Description
id string true The identifier to use when looking up a project. This can be the name or ID of the project
This command takes a JSON request string or file. Use the following template for the request:
{
  "active": "Whether or not the project is active.",
  "description": "The project description",
  "name": "The name of the project",
  "tags": "The array of tag names of the project",
  "templatedProperties": [{
    "name": "The name of the property",
    "value": "The value of the property"
  }]
}