Get a list of cost center types

Request

GET http://{hostname}:{port}
  /landscaper/security/costcenter/sources
Accept: application/json
Table 1. Header parameters
Parameter Type Required Description
Accept application/json true  

Example

curl -u jsmith:passwd 
  http://myserver.example.com:8080/landscaper/security/costcenter/sources
  -H "Accept: application/json"

Example response

[
  {
    "name": "CLOUD",
    "id": "CLOUD"
  },
  {
    "name": "UCD",
    "id": "UCD"
  }
]

Feedback