Get details of an Analytics instance

get

/api/20210901/system

Return information about an Analytics instance. Details such as the service instance key, instance description, and instance owners.

Request

There are no request parameters for this operation.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : System
Type: object
Details of an Analytics instance.
Show Source
Nested Schema : owners
Type: array
List of owners.
Show Source

400 Response

Bad Request (invalid query parameters, malformed headers, and so on).
Body ()
Root Schema : Error
Type: object
Show Source
Back to Top

Examples

In this example, you obtain information about an Oracle Analytics instance.

cURL Example:

curl -i \
  --header 'Authorization: Bearer <token>' \
  --request GET 'https://<hostname>/api/20210901/system'

Example of Request Body

Not applicable.

Example of Response Body

Status 200:
{ "serviceInstanceKey":
        "bootstrap",  
        "description": "My Analytics instance",
        "owners": [ "Admin" ]}
Back to Top