Get Idle Session Timeout

Returns the session timeout (in minutes) of the Oracle Enterprise Performance Management Cloud environment. After a session is idle for this duration, users are redirected to the Login page.

This API is version v2.

Required Roles

Service Administrator

REST Resource

GET /interop/rest/{api_version}/config/services/idlesessiontimeout

Note:

Before using the REST resources, you must understand how to access the REST resources and other important concepts. See Implementation Best Practices for EPM Cloud REST APIs. Using this REST API requires prerequisites. See Prerequisites.

Request

Supported Media Types: application/json

Table 9-35 Parameters

Name Description Type Required Default
api_version Specific API version (v2) Path Yes None

Response

Supported Media Types: application/json

Table 9-36 Parameters

Name Description
details In case of errors, details are published with the error string
status
  • 0 - Operation success
  • +ve - Operation failed, with the status signifying an error
timeout Session Timeout value in minutes
href Link to API call
action HTTP call type
rel Possible value: self
data null

Example of Response Body

{
       "details": null,
       "links": [{
             "rel": "self",
             "href": "<uri>/interop/rest/v2/config/services/idlesessiontimeout",
             "data": "null",
             "action": "GET"
       }],
       "status": "0",
       "items": [{
             "timeout": "30"           
       }]
}

Sample cURL command

curl -X GET -s -u '<USERNAME>:<PASSWORD>' -o response.txt -D respHeader.txt -H
'Content-Type: application/json'  'https://<SERVICE_NAME>-
<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/interop/rest/v2/config/services/idlesessiontimeout '