View Application Instance Details

get

/paas/service/apaas/api/v1.1/apps/{identityDomainId}/{appName}/instances/{instanceId}

Retrieves detailed information about a specific instance of an application.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : viewInstance
Type: object
Show Source
Back to Top

Examples

The following example shows how to display details of an Oracle Application Cloud Service application instance by submitting a GET request on the REST resource using cURL. For more information about cURL, see Use cURL. For more information about endpoint URL structure, including how to determine your region, see Send Requests.

curl -i -X GET -u joe@example.com:Welcome1! -H "X-ID-TENANT-NAME:ExampleIdentityDomain" https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/ExampleAppName/instances/web.1

Example of Response Header

The following shows an example of the response header.

HTTP/1.1 
200 OK  
Date: Wed, 04 Feb 2015 21:24:33 GMT  
Transfer-Encoding: chunked  
Content-Type: application/json

Example of Response Body

The following example shows the contents of the response body in JSON format.

{
 "name": "web.1",
 "status":"RUNNING",
 "instanceURI": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/apaasmaster/JavaApp/instances/web.1"
}
Back to Top