List all applications for a release

This method returns a JSON array of applications associated with the specified release.

Request

GET http://{hostname}:{port}
  /releases/{release}/applications?{parameters}
Accept: application/json
Table 1. Request parameters
Parameter Type Required Description
format string false One of the format options for application; this parameter determines what information is included in the JSON response. If not specified, or if an unrecognized value is specified, the default format of 'list' will be used.
Table 2. URL parameters
Parameter Type Required Description
release string true Release ID
Table 3. Header parameters
Parameter Type Required Description
Accept application/json true  
For the format parameter, use one of the following format options:
list
Primary properties and base application, life cycle model, milestones, team, and total changes
detail
Primary properties and base application, life cycle model, milestones, phases, and related detailed information
For details about the full JSON that the server returns when you select one of these formats, see the related resource: release resource.

Example

curl -k -u jsmith:passwd  
  "http://myserver.example.com:8080/
  releases/8e634417-7d99-4708-9f5e-005bd9d389e3/applications"

Example response

[
  {
    "level": "APPLICATION",
    "automated": false,
    "children": [],
    "createdByUserId": "00000000-0000-0000-0000-000000000002",
    "name": "App1",
    "description": "",
    "ghostedDate": 0,
    "id": "b0d382aa-edc2-4d26-aae5-a45e7c185cee",
    "version": 0,
    "dateCreated": 1416946021868
  },
  {
    "level": "APPLICATION",
    "automated": false,
    "children": [],
    "createdByUserId": "00000000-0000-0000-0000-000000000002",
    "name": "App2",
    "description": "",
    "ghostedDate": 0,
    "id": "dbaefdeb-c355-48de-859a-500f630d0449",
    "version": 0,
    "dateCreated": 1416946133396
  }
]

Feedback