View Application Instance Recordings

get

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

Retrieves a list of downloadable recordings for an application instance. You must generate recordings before you can view them.

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
The response body contains information about application instance recordings.
Root Schema : viewRecording-response
Type: object
The response body contains information about application instance recordings.
Show Source
Nested Schema : recording
Type: array
Recording details of the application instance
Show Source
Nested Schema : viewRecording
Type: object
The response body contains information about application instance recordings.
Show Source
Back to Top

Examples

The following example shows how to get recording details for all instances of 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/recordings

You must generate recordings before you can view them. See Generate Application Instance Recording.

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.

{
  "instances": [
    {
      "instanceName": "web.1",
      "recordings": [
         {
             "contentType": "application/octet-stream",
             "recordingName": "recordings/web.1/web.1_2015_06_17_20:37:59.jfr",
             "recordingURL": "https://storage.oraclecorp.com/v1/Storage-StorageEval02admin/9bec5db7-9f70-4886-8843-3d892e739896/recordings/web.1/web.1_2015_06_17_20:37:59.jfr",
             "fileSize": 142588,
             "lastModifiedTime": "2015-06-18T00:39:02.591-0700"
         }
      ]
    }
  ]
}
Back to Top