Skip to main content

Browse Oracle database instance using instance id

Select

SaaS
Customer Managed

This operation is used to browse a oracle database.

Path Parameters
  • instanceId integer required

    Id of the Oracle instance to be browsed

Request Body required

Request Body

  • path string

    Default value: \\

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

  • pointInTime integer

    Unix timestamp of database browse time

  • entity object
  • instanceId integer required

    Oracle InstanceId

Responses

OK


Schema
  • oracleContent object[]
  • tableSpace string

    Tablespaces found during browse operation

  • fileType integer

    File type browsed based on input path parameter

POST /instance/dbbrowse/:instanceid    

Authorization

type: apiKeyname: Authtokenin: header

Request

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

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