Set Application Access Level

Sets the access level for an Account Reconciliation application. You can specify that the application can be accessed only by Service Administrators or by all users.

REST Resource

POST /armARCS/rest/{api_version}/appaccess

Required Roles

Service Administrator

Request

Supported Media Types: application/json

Parameters:

The following table summarizes the client request parameters.

Table 17-60 Parameters

Name Description Type Required Default
api_version Version of the API you are developing with (must be v1) Path Yes None
access Specify the access level for users. Valid values include the following:
  • ALL_USERS - all users can access the application
  • ADMINISTRATORS - only Service Administrators can access the application
Payload Yes None

Examples of Request Body

Example 1

{
    "access": "ALL_USERS"
}

Example 2

{
    "access": "ADMINISTRATORS"
}

Response

Supported Media Type: application/json

Table 17-61 Parameters

Parameters Description
details In case of errors, details are published with the error string.
status See Migration Status Codes
links Detailed information about the link

Example of Response Body

{
    "status": 0,
    "details": "Application access updated successfully",
    "links": [
        {
            "rel": "self",
            "href": "http://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/armARCS/rest/v1/appaccess",
            "action": "GET",
            "data": null
        }
    ]
}