List the ID and name of all application elements in JSON format
Returns a JSON array of JSON objects containing the IDs and names of all application elements. This is equivalent to GET /application/?format=name. Note that for element types that do not have a "name" property, the "list" format will be used instead.
Request
GET http://{hostname}:{port}
/applications/name
Accept: application/json
Parameter | Type | Required | Description |
---|---|---|---|
Accept | application/json |
true |
Example
curl -k -u jsmith:passwd
"http://myserver.example.com:8080/applications/name"
Example response
[
{
"id": "8e634417-7d99-4708-9f5e-005bd9d389e3",
"name": "App1"
},
{
"id": "7592788e-5980-4f4c-a36b-18282d52bd04",
"name": "App2"
}
]