Use this API to perform a full or partial update on a rule that has been created in the Risk Sevice.
10 Minute Cache
Vigilance AI has a 10 minute cache for loading rules. This means that any rules that are updated may not come into effect for up to 10 minutes.
Resource URL
https://<subdomain>.onelogin.com/api/2/risk/rules/<id>Header Parameters
Authorization required string | Set to Set The access token must have been generated using an API credential pair created using the scope required to call this API. This API can be called using any one of the following scopes: |
Resource Parameter
id required string | The ID of the rule to update. |
Request Parameters
id required string | The ID of the rule to update. |
Sample Request Body
{
"filters": ["123.123.123.123", "1.1.1.1"]
}
```html
<h2 id="sampleresponse">Sample Response</h2>
<div class="tab-group">
<ul class="tab-links">
<li class="t-link status-200 active" data-tab="1">200 OK</li>
<li class="t-link status-400 active" data-tab="2">400 Bad Request</li>
<li class="t-link status-401" data-tab="3">401 Unauthorized</li>
</ul>
<div class="tab-views">
<div class="t-view active" data-tab="1">
```json
{
"id": "132456789",
"name": "IP Blocklist for Guests",
"description": "Blocklist for guest account users",
"type": "blacklist",
"target": "location.ip",
"source": "guest-123",
"filters": ["123.123.123.123", "1.1.1.1"]
}