Create a project

Request

POST https://{hostname}:{port}
  /build/rest2/projects
This command takes a JSON request string or file. Use the following template for the request:
{
  "description": "The project description",
  "name": "The name of the project",
  "tags": "The array of tag names of the project",
  "teams": "The array of team names of the project",
  "template": "The project template for this project",
  "templatedProperties": [{
    "name": "The name of the property",
    "value": "The value of the property"
  }]
}