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.
Note:
Starting with the February 25.02 update, this REST API will no longer be supported for OCI (Gen 2) environments. Instead, use the instructions in Maximum Session Duration and Idle Session Timeout in OCI (Gen 2) Environments in Getting Started with Oracle Enterprise Performance Management Cloud for Administrators to view idle session timeout duration.
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 |
|
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://<BASE-URL>/interop/rest/v2/config/services/idlesessiontimeout '