IP Range API in Risk Authentication( Add Trusted or Untrusted IP using Rest API)
search cancel

IP Range API in Risk Authentication( Add Trusted or Untrusted IP using Rest API)

book

Article ID: 235260

calendar_today

Updated On:

Products

CA Risk Authentication CA Advanced Authentication CA Advanced Authentication - Risk Authentication (RiskMinder / RiskFort)

Issue/Introduction

IP Range API, sample request to add IP's to trusted or untrusted IP list.

Environment

Release : 9.1

Component :RiskMinder(Arcot RiskFort)

Resolution

IPAddress added to Untrusted List using PUT request 

http://<host>:<port>/aa-restapi/ca/advancedauth/v1/admin/orgs/SSO/ruleset/DEFAULT/iplists/untrusted?$filter=(ACTION%20eq%20ADD)

[
  {
    "startIp": "10.10.10.10",
    "endIp": "10.10.10.11" 
  }

Confirmed that this was added using GET request
http://<host>:<port>/aa-restapi/ca/advancedauth/v1/admin/orgs/SSO/ruleset/DEFAULT/iplists?$filter=(LIST%20eq%20UNTRUSTED)

Response:
[{
        "startIp": "10.10.10.10",
        "endIp": "10.10.10.11",
        "useEndIpAsMask": false,
        "source": "",
        "useNewEndIpAsMask": false
    }
]

Once the IP address is added, Migrate to Production and Server cache need to be refreshed to have these IP address in effect.