Get information about queried projects

Return a JSON representation of queried projects.

Request

GET https://{hostname}:{port}
  /build/rest2/projects?{parameters}
Table 1. Request parameters
Parameter Type Required Description
nameLike string false The pattern to use when looking up the project by name.
pageNumber string false The page of projects that should be returned.
pageLineCount string false The number of projects to return per page.
activeFilter string false The active filter of projects. Possible values are active/inactive/all.
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",
  "id": "The ID of the project",
  "location": "The URL that can be used to get the JSON 
  representation of the project",
  "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"
  }]
}]