View Application Details
get
/paas/service/apaas/api/v1.1/apps/{identityDomainId}/{appName}
Returns detailed information about an application.
Request
Path Parameters
-
appName: string
Name of the application
-
identityDomainId: string
Name of the identity domain for the Oracle Application Container Cloud Service acount
Query Parameters
-
outputLevel(optional): boolean
When set to
verbose
, includes details for all service instances, and additional information such as the application type.
Response
Supported Media Types
- application/json
200 Response
OK
The response body contains information about the application.
Root Schema : viewApp-response
Type:
object
The response body contains information about the application.
Show Source
-
appId(optional):
string
ID of the application
-
appURL(optional):
string
URL of the created application
-
createdTime(optional):
string
Creation time of the application
-
identityDomain(optional):
string
Identity Domain of the application
-
instances(optional):
array instances
Shows details of all instances currently running.
-
lastModifiedTime(optional):
string
Modification time of the application
-
latestDeployment(optional):
array latestDeployment
Shows all deployments currently in progress.
-
name(optional):
string
Name of the application
-
runningDeployment(optional):
array runningDeployment
Shows all deployments currently running.
-
status(optional):
string
Status of the application
-
subscriptionType(optional):
string
Type of subscription, Hourly or Monthly
-
webURL(optional):
string
Web URL of the application
Nested Schema : latestDeployment
Type:
array
Shows all deployments currently in progress.
Show Source
Nested Schema : viewInstance
Type:
Show Source
object
-
instanceURL(optional):
string
Instance URL. Use this url to get a description of the application instance.
-
memory(optional):
string
Memory of the instance
-
name(optional):
string
Instance Name. Use this name to manage a specific instance.
-
status(optional):
string
Status of the instance
Nested Schema : viewDeploy
Type:
Show Source
object
-
deploymentId(optional):
string
Deployment ID. Use this ID to manage a specific deployment.
-
deploymentStatus(optional):
string
Status of the deployment
-
deploymentURL(optional):
string
Deployment URL. Use this URL to get a description of the application deployment.
Examples
The following example shows how to retrieve an Oracle Application Cloud Service application 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
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.
{ "identityDomain": "ExampleIdentityDomain", "appId": "996b4bcd-89c3-4231-9c0d-2cd7322268e9", "name": "ExampleAppName", "status": "RUNNING", "createdBy": "weblogic", "creationTime": "2015-09-25T02:46:54.165-0700", "lastModifiedTime": "2015-09-25T02:46:53.943-0700", "subscriptionType": "MONTHLY", "instances": [], "runningDeployment": { "deploymentId": "ee9714dc-a2d0-4d6e-8b3c-8f0d185577b2", "deploymentStatus": "READY", "deploymentURL": "http://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/MyFirstApp/deployments/ee9714dc-a2d0-4d6e-8b3c-8f0d185577b2" }, "lastestDeployment": { "deploymentId": "ee9714dc-a2d0-4d6e-8b3c-8f0d185577b2", "deploymentStatus": "READY", "deploymentURL": "http://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/MyFirstApp/deployments/ee9714dc-a2d0-4d6e-8b3c-8f0d185577b2" }, "appURL": "http://apaas.us.oraclecloud.com/paas/service/apaas/api/v1.1/apps/ExampleIdentityDomain/MyFirstApp", "webUrl": "http://MyFirstApp-apaasmaster-dev.apaas.demo.oraclecloudapps.com:8080" }