Skip to main content

Browse Oracle RAC database Instance using instance id

Select

SaaS
Customer Managed

This operation is used to browse a oracle database.

Path Parameters
  • instanceId string required
Request Body
  • entity object
  • instanceName string

    RAC instance name

  • instanceId string required

    OracleRAC InstanceId

  • path string

    The database path on which browse is to be performed, Example, PDB level, Tablespace Level

  • pointInTime string

    Unix timestamp of database browse time

Responses

OK


Schema
  • oracleContent object[]
  • tableSpace string
  • fileType integer
POST /instance/dbbrowse/:instanceid    

Authorization

type: apiKeyname: Authtokenin: header

Request

Click Edit to configure Base URL
https://localhost/commandcenter/api
token
instanceId — path required
Body

{
"entity": {
"instanceName": "string",
"instanceId": "string"
},
"path": "string",
"pointInTime": "string"
}
curl -L -X POST 'https://localhost/commandcenter/api/instance/DBbrowse/:instanceId' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authtoken: <API_KEY_VALUE>' \
--data-raw '{
"entity": {
"instanceName": "string",
"instanceId": "string"
},
"path": "string",
"pointInTime": "string"
}'