Retrieve Application Access Level

Returns the access level for an Account Reconciliation application, indicating if all users can access the application or only Service Administrators can access the application.

REST Resource

GET /armARCS/rest/{api_version}/appaccess

Required Roles

Service Administrator

Request

Parameters:

The following table summarizes the client request parameters.

Table 17-62 Parameters

Name Description Type Required Default
api_version Version of the API you are developing with (must be v1) Path Yes None

Example URL

https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/armARCS/rest/v1/appacess

Response

Supported Media Type: application/json

Table 17-63 Parameters

Parameters Description
links Detailed information about the link
access Indicates the access level for users.
  • ALL_USERS - all users can access the application
  • ADMINISTRATORS - only Service Administrators can access the application

Example of Response Body

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