Develop > API calls > Application design APIs > List application designs

List application designs

Retrieves the list of application designs to which the user has access.

URI Method Parameters Returns
http://[host]:[port]/csa/api/codar/app-design/list GET None

200 - successful
400 - bad request
401 - not authorized
500 - internal server error

Example

The following URL was sent:

https://localhost:8444/csa/api/codar/app-design/list

The following JSON was returned:

{
  "@type" : "urn:x-hp:2013:software:cloud:topology_model:topologys",
  "@self" : "/csa/api/topology-model/topology",
  "@actual-count" : 1,
  "@start-index" : 0,
  "@total-count" : 1,
  "members" : [ {
     "@self" : "/csa/api/topology-model/topology/22b4706c-0849-4c35-b552-4e42c90ae5e4",
     "@type" : "urn:x-hp:2013:software:cloud:topology_model:topology",
     "groupId" : "com.hp.csa",
     "artifactId" : "81072ea2-2a7f-4fd7-b582-5e47b97fd0b9",
     "version" : "1.0.0"
    "displayName" : "Petclinic Application for AWS"

  } ]
}