Get system settings

get

/epm/rest/v1/systemSettings

Returns all the system settings accessed by service admins only.

Request

There are no request parameters for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : SystemPreferences
Type: object
System Settings
Show Source
Nested Schema : preventReqActionByOrigin
Type: array
Show Source
Nested Schema : preventRequestActions
Type: array
Show Source

403 Response

Forbidden
Back to Top

Examples

The following example shows how to retrieve all the system settings by submitting a GET request on the REST resource using cURL.

curl --user edmcs_cloud_user -X GET https://servername.fa.us2.oraclecloud.com/epm/rest/v1/systemSettings

Example of the Response Body

The following example shows the contents of the response body in JSON format:

{
		"backgroundImageName":"1.png",
		"logoImageName": "2.gif",
		"theme":"CUSTOM_DARK",
		"showBusinessProcessName":true,
		"enableNotifications":true,
		"emailSubjectPrefix":"Demo:",
		"substituteRecipientName":"barry",
		"oglApplicationId":"abc@xyz",
		"oglServerURL":"https://guidedlearning.oracle.com",
		"preventSubmittedRequestDeletion":true,
		"requestActionPurgePeriod":6,
		"fiscalYearEndMonth":"DECEMBER",
		"attachSubscriptionRequestFile":true,
		"brandColor":"#FFFFFF",
		"preventReqActionByOrigin":[
			"INTERACTIVE",
			"LOAD"
		],
		"preventRequestActions":[
			"REJECT",
			"PUSHBACK"
		]
}
Back to Top