View the IP Allowlist - Only for OCI (Gen 2) Environments

In OCI (Gen 2) environments, you can use a REST API to list the IP allowlist.

Use the GET method to list IP addresses and CIDRs in the allowlist of your environment.

This REST API is version v2.

Required Roles

Service Administrator

REST Resource

GET /interop/rest/epmociservice/v2/ipallowlist

Note:

Before using the REST resources, you must understand how to access the REST resources and other important concepts. See Implementation Best Practices for EPM Cloud REST APIs. Using this REST API requires prerequisites. See Prerequisites.

Request

Supported Media Types: application/json

Response

Supported Media Types: application/json

Table 10-21 Parameters

Name Description
details In the case of errors, details are published with the error string
status See Migration Status Codes
links Detailed information about the link
href Links to API call or status API
action The HTTP call type
rel Possible values: self or Job Status. If the value is set to Job Status, you can use the href to get the status.
items List of IP addresses and CIDRs that are set as the allowlist for your environment.

Example of Response Body

The following shows an example of the response body in JSON format.

{
    "links": [
        {
            "rel": "self",
            "href": "https://<SERVICE_NAME>-<TENANT_NAME>.<SERVICE_TYPE>.<dcX>.oraclecloud.com/interop/rest/epmociservice/v2/ipallowlist",
            "data": null,
            "action": "GET"
        }
    ],
    "details": null,
    "status": 0,
    "items": [
        "ip_address1/24",
        "ip_address2",
        "ip_address3",
        "ip_address4",
        "ip_address5"
    ]
}