Skip to content

Latest commit

 

History

History
59 lines (48 loc) · 2.07 KB

get-application.adoc

File metadata and controls

59 lines (48 loc) · 2.07 KB

Get an Application

logo cloud active logo hybrid disabled logo server disabled logo pcf disabled

Tip
This document deals with calling the CloudHub API. For instructions on how to perform these same tasks more easily via the Runtime Manager UI, see CloudHub and its child pages.

The GET operation specified with the /api/applications/{domain} resource retrieves an application, where {domain} is the application domain.

Example Request:

GET https://anypoint.mulesoft.com/cloudhub/api/applications/hello

Example Response:

{
  "domain":"hello",
  "fullDomain":"hello.cloudhub.io",
  "workers":1,
  "hasFile":false,
  "muleVersion":"3.7.0",
  "properties": {
    "foo":"bar"
  },"
  status":"STARTED",
  "workerStatuses":[
     {
       "id":"",
       "host":"0.0.0.0",
       "port":8081,
       "status":"STARTED"
     }
   ]
}
Tip

Check out the API Portal of the CloudHub API to see an interactive reference of all the supported resources, methods, required properties and expected responses.

In the link above, search among other Mule APIs for the "CloudHub" API and click on its latest version.