Decrypt Application

post

/essbase/rest/v1/applications/{applicationName}/decrypt

Disable encryption on the application. Applicable only when Essbase is deployed as a stack on OCI, using Oracle Cloud Marketplace listing.

See Also

Request

Path Parameters
Back to Top

Response

Supported Media Types

200 Response

SUCCESS

Encryption removed on the application.

400 Response

FAILURE

Failed to remove encryption on the application.

415 Response

FAILURE

Failed to remove encryption on the application.

500 Response

FAILURE

Failed to remove encryption on the application.

Back to Top

Examples

The following example shows how to decrypt an encrypted Essbase application.

This example uses cURL to access the REST API from a Windows shell script. The calling user's ID and password are variables whose values are set in properties.bat.

Script with cURL Command

call properties.bat
curl -X POST -i https://192.0.2.100/essbase/rest/v1/applications/Sample_Dynamic/decrypt -H "Accept:application/json" -u %User%:%Password%
Back to Top