View All Applications

get

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

Retrieves all applications in the identity domain.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
The response body contains information about all applications.
Root Schema : viewall-response
Type: object
The response body contains information about all applications.
Show Source
Nested Schema : applications
Type: array
Shows all applications in the identity domain.
Show Source
Nested Schema : viewApp-response
Type: object
The response body contains information about the application.
Show Source
Nested Schema : instances
Type: array
Shows details of all instances currently running.
Show Source
Nested Schema : latestDeployment
Type: array
Shows all deployments currently in progress.
Show Source
Nested Schema : runningDeployment
Type: array
Shows all deployments currently running.
Show Source
Nested Schema : viewInstance
Type: object
Show Source
Nested Schema : viewDeploy
Type: object
Show Source
Back to Top

Examples

The following example shows how to retrieve all Oracle Application Cloud Service applications 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

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.

{
"applications": [
         {
             "identityDomain": "ExampleIdentityDomain",
             "appId": "65c5fcd0-945f-442b-8a5e-48c62c3cbb8f",
             "name": "specjbb",
             "status": "NEW",
             "creationTime": "2015-06-24T09:50:00.393-0700",
             "lastModifiedTime": "2015-06-24T09:50:00.329-0700",
             "subscriptionType": "MONTHLY",
             "instances": [
                 {
                     "name": "web.1",
                     "status": "RUNNING",
                     "memory": "2G",
                     "instanceURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/specjbb/instances/web.1"
                 }
             ],
             "lastestDeployment": {
                 "deploymentId": "86e2deab-7ec6-414b-bb61-1c722bc8d713",
                 "deploymentStatus": "NEW",
                 "deploymentURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/specjbb/deployments/86e2deab-7ec6-414b-bb61-1c722bc8d713"
             },
             "appURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/specjbb"
         },
         {
             "identityDomain": "ExampleIdentityDomain",
             "appId": "513f2c57-12f8-43b5-b568-60fea0160588",
             "name": "JavaApp",
             "status": "RUNNING",
             "creationTime": "2015-06-24T04:09:08.058-0700",
             "lastModifiedTime": "2015-06-24T04:09:07.961-0700",
             "subscriptionType": "MONTHLY",
             "instances": [
                 {
                     "name": "web.1",
                     "status": "RUNNING",
                     "memory": "2G",
                     "instanceURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/JavaApp/instances/web.1"
                 },
                 {
                     "name": "web.2",
                     "status": "RUNNING",
                     "memory": "2G",
                     "instanceURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/JavaApp/instances/web.2"
                 }
             ],
             "runningDeployment": {
                 "deploymentId": "9c666ad8-202c-4e17-84de-1177d6c0df63",
                 "deploymentStatus": "READY",
                 "deploymentURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/JavaApp/deployments/9c666ad8-202c-4e17-84de-1177d6c0df63"
             },
             "lastestDeployment": {
                 "deploymentId": "9c666ad8-202c-4e17-84de-1177d6c0df63",
                 "deploymentStatus": "READY",
                 "deploymentURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/JavaApp/deployments/9c666ad8-202c-4e17-84de-1177d6c0df63"
             },
             "appURL": "https://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/JavaApp",
             "webURL": "http://JavaApp-ExampleIdentityDomain-heman.apaas.demo.oraclecloudapps.com:8080"
         }
     ]
 }
Back to Top