Get Idle Session Timeout (v2)

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

Required Roles

Service Administrator

REST Resource

GET /interop/rest/v2/config/services/idlesessiontimeout

Request

Supported Media Types: application/json

Response

Supported Media Types: application/json

Table 9-34 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": "https://<BASE-URL>/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 '