Read Risk Policy Sets
Example Request
-
cURL
-
C#
-
Go
-
HTTP
-
Java
-
jQuery
-
NodeJS
-
Python
-
PHP
-
Ruby
-
Swift
curl --location --globoff '{{apiPath}}/environments/{{envID}}/riskPolicySets' \
--header 'Authorization: Bearer {{accessToken}}'
var options = new RestClientOptions("{{apiPath}}/environments/{{envID}}/riskPolicySets")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Get);
request.AddHeader("Authorization", "Bearer {{accessToken}}");
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "{{apiPath}}/environments/{{envID}}/riskPolicySets"
method := "GET"
client := &http.Client {
}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Authorization", "Bearer {{accessToken}}")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
GET /environments/{{envID}}/riskPolicySets HTTP/1.1
Host: {{apiPath}}
Authorization: Bearer {{accessToken}}
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
.url("{{apiPath}}/environments/{{envID}}/riskPolicySets")
.method("GET", body)
.addHeader("Authorization", "Bearer {{accessToken}}")
.build();
Response response = client.newCall(request).execute();
var settings = {
"url": "{{apiPath}}/environments/{{envID}}/riskPolicySets",
"method": "GET",
"timeout": 0,
"headers": {
"Authorization": "Bearer {{accessToken}}"
},
};
$.ajax(settings).done(function (response) {
console.log(response);
});
var request = require('request');
var options = {
'method': 'GET',
'url': '{{apiPath}}/environments/{{envID}}/riskPolicySets',
'headers': {
'Authorization': 'Bearer {{accessToken}}'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
import requests
url = "{{apiPath}}/environments/{{envID}}/riskPolicySets"
payload = {}
headers = {
'Authorization': 'Bearer {{accessToken}}'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('{{apiPath}}/environments/{{envID}}/riskPolicySets');
$request->setMethod(HTTP_Request2::METHOD_GET);
$request->setConfig(array(
'follow_redirects' => TRUE
));
$request->setHeader(array(
'Authorization' => 'Bearer {{accessToken}}'
));
try {
$response = $request->send();
if ($response->getStatus() == 200) {
echo $response->getBody();
}
else {
echo 'Unexpected HTTP status: ' . $response->getStatus() . ' ' .
$response->getReasonPhrase();
}
}
catch(HTTP_Request2_Exception $e) {
echo 'Error: ' . $e->getMessage();
}
require "uri"
require "net/http"
url = URI("{{apiPath}}/environments/{{envID}}/riskPolicySets")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Get.new(url)
request["Authorization"] = "Bearer {{accessToken}}"
response = http.request(request)
puts response.read_body
var request = URLRequest(url: URL(string: "{{apiPath}}/environments/{{envID}}/riskPolicySets")!,timeoutInterval: Double.infinity)
request.addValue("Bearer {{accessToken}}", forHTTPHeaderField: "Authorization")
request.httpMethod = "GET"
let task = URLSession.shared.dataTask(with: request) { data, response, error in
guard let data = data else {
print(String(describing: error))
return
}
print(String(data: data, encoding: .utf8)!)
}
task.resume()
Example Response
200 OK
{
"_links": {
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets"
}
},
"_embedded": {
"riskPolicySets": [
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/1284a6e1-1896-088f-0c81-68ab1bf150ef"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "1284a6e1-1896-088f-0c81-68ab1bf150ef",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Fallback Risk Policy",
"description": "The FallBack Risk Policy is triggered when conditioned policy is called, but none of the condition is met.",
"createdAt": "2025-04-21T10:35:05.034Z",
"updatedAt": "2025-04-21T10:35:05.034Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"fallback": true
},
"riskPolicies": [
{
"id": "a42eb946-5b6e-40fb-922b-2853bfa65e1a",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1284a6e1-1896-088f-0c81-68ab1bf150ef"
},
"name": "HIGH_AGGREGATED_SCORES_POLICY",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 75,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.ipVelocityByUser.level}",
"score": 75
},
{
"value": "${details.ipRisk.level}",
"score": 50
},
{
"value": "${details.geoVelocity.level}",
"score": 50
},
{
"value": "${details.botDetection.level}",
"score": 80
},
{
"value": "${details.suspiciousDevice.level}",
"score": 80
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 75
},
{
"value": "${details.newDevice.level}",
"score": 75
},
{
"value": "${details.userVelocityByIp.level}",
"score": 75
},
{
"value": "${details.adversaryInTheMiddle.level}",
"score": 80
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.trafficAnomaly.level}",
"score": 80
},
{
"value": "${details.anonymousNetwork.level}",
"score": 50
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-21T10:35:05.055Z",
"updatedAt": "2025-04-21T10:35:05.055Z"
},
{
"id": "a3759edb-af78-43e1-baea-4ef84020ee38",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1284a6e1-1896-088f-0c81-68ab1bf150ef"
},
"name": "MEDIUM_AGGREGATED_SCORES_POLICY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 40,
"maxScore": 75
},
"aggregatedScores": [
{
"value": "${details.ipVelocityByUser.level}",
"score": 75
},
{
"value": "${details.ipRisk.level}",
"score": 50
},
{
"value": "${details.geoVelocity.level}",
"score": 50
},
{
"value": "${details.botDetection.level}",
"score": 80
},
{
"value": "${details.suspiciousDevice.level}",
"score": 80
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 75
},
{
"value": "${details.newDevice.level}",
"score": 75
},
{
"value": "${details.userVelocityByIp.level}",
"score": 75
},
{
"value": "${details.adversaryInTheMiddle.level}",
"score": 80
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.trafficAnomaly.level}",
"score": 80
},
{
"value": "${details.anonymousNetwork.level}",
"score": 50
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-21T10:35:05.055Z",
"updatedAt": "2025-04-21T10:35:05.055Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
}
],
"source": {
"type": "DEFAULT"
},
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/1388ae06-89b8-48d7-be12-438daa802603"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "1388ae06-89b8-48d7-be12-438daa802603",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations 3",
"createdAt": "2025-04-21T08:24:22.331Z",
"updatedAt": "2025-04-21T10:35:05.233Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "f9eb274b-b46d-4778-b94d-655aae119fbd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "8e628457-1019-4da9-9b3d-cc581b748f37",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "90fa6674-df58-4e44-a51a-4e4e986b8c8e",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "20ebcaff-b3b6-42b8-be3e-c1cada9962dd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "39f07355-4e35-44ba-b1ba-d81a337b5f63",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "b4ba4905-e51b-462c-8c11-a212c056668f",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "e8347233-745c-46c4-ace0-bab62027184c",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
},
{
"id": "cbe23eed-9896-48d9-9886-c56228b2a66d",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "1388ae06-89b8-48d7-be12-438daa802603"
},
"name": "FALLBACK",
"result": {
"value": "",
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-21T10:35:05.233Z",
"updatedAt": "2025-04-21T10:35:05.233Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/18c670f7-6566-4609-acf6-d61491943ba3"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "18c670f7-6566-4609-acf6-d61491943ba3",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations 4",
"createdAt": "2025-04-21T09:16:29.544Z",
"updatedAt": "2025-04-21T10:35:05.263Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "122dcdfa-0a88-431a-a7bb-43b51670f140",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "8ae33148-5dba-481e-9ab5-840fe1f8aee0",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "6a479b2e-5388-4412-9a6b-964002fce6cf",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "350abb0d-aae9-4477-bbc6-52e026f105fd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "30ca1969-8219-415c-90af-a47a6951f300",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "025c0bcf-762c-418d-a30f-2ca469e13e33",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "90373163-9960-478c-826f-ce58ad0023a2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
},
{
"id": "2c2c46b9-5d73-43c0-ba53-546e2a3be048",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "18c670f7-6566-4609-acf6-d61491943ba3"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-21T10:35:05.263Z",
"updatedAt": "2025-04-21T10:35:05.263Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy without scores - for PingID users",
"createdAt": "2025-04-10T10:51:03.760Z",
"updatedAt": "2025-04-10T11:31:42.690Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "ffbb86e6-3910-4b9a-8710-6e82fc1c2115",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.690Z",
"updatedAt": "2025-04-10T11:31:42.690Z"
},
{
"id": "3862fcca-0ab0-4493-b461-77b69c4f7884",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.690Z",
"updatedAt": "2025-04-10T11:31:42.690Z"
},
{
"id": "2b1eb5c7-bc44-4c89-956e-140dd81dd872",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.690Z",
"updatedAt": "2025-04-10T11:31:42.690Z"
},
{
"id": "7aeb1a2a-508b-4c61-96db-15abfc6efe00",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.690Z",
"updatedAt": "2025-04-10T11:31:42.690Z"
},
{
"id": "13251408-570d-4ea9-aebc-7f2a0e4adea8",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.690Z",
"updatedAt": "2025-04-10T11:31:42.690Z"
},
{
"id": "b0464207-bc5c-44bc-a592-f0569bd08aa4",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "41b94c9e-42ca-413f-b8a4-8fe298f4e933"
},
"name": "FALLBACK",
"result": {
"value": "",
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-10T11:31:42.690Z",
"updatedAt": "2025-04-10T11:31:42.690Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations 6",
"createdAt": "2025-06-08T08:14:35.700Z",
"updatedAt": "2025-06-08T08:15:26.922Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "23843f03-5f40-40b9-a240-6767902083dd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "4a38154d-b328-4884-b740-c5251632321e",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "4f4f5176-152c-4c18-bd30-693baa417d62",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "1a8df08a-8799-480d-a196-09020539a4db",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA",
"mfaAuthenticationPolicyId": "a3e7a1d1-90ea-4e63-aa81-23383ba1c004"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "1224d2fa-f0f8-458b-81c5-d2b6b6276a3b",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "8cfc5ed9-f66f-4cb2-b66a-57c4522c062a",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "d7e73053-bc3c-4711-81e5-cdff46eaef8f",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
},
{
"id": "3eed6c85-0165-4b67-9462-c958f850f1f4",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "508045bc-9290-4cc1-ae39-77492dafbfd4"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-06-08T08:15:26.922Z",
"updatedAt": "2025-06-08T08:15:26.922Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/54ca1c65-fc52-417b-bc0f-c946226f0485"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "54ca1c65-fc52-417b-bc0f-c946226f0485",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Score-based policy 2",
"createdAt": "2025-04-22T11:15:43.132Z",
"updatedAt": "2025-04-23T17:20:15.830Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "1654bcd0-152e-4e80-b679-8188a7d448dd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "54ca1c65-fc52-417b-bc0f-c946226f0485"
},
"name": "ANONYMOUS_NETWORK_DETECTION",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"equals": "HIGH",
"value": "${details.anonymousNetwork.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-23T17:20:15.830Z",
"updatedAt": "2025-04-23T17:20:15.830Z"
},
{
"id": "3f108c30-d0d5-4525-8af2-23c8538860ba",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "54ca1c65-fc52-417b-bc0f-c946226f0485"
},
"name": "GEOVELOCITY_ANOMALY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"equals": "HIGH",
"value": "${details.geoVelocity.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-23T17:20:15.830Z",
"updatedAt": "2025-04-23T17:20:15.830Z"
},
{
"id": "88c03f8f-4008-4e2e-9c97-e88c739fd9d2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "54ca1c65-fc52-417b-bc0f-c946226f0485"
},
"name": "High scored policy",
"priority": 3,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-23T17:20:15.830Z",
"updatedAt": "2025-04-23T17:20:15.830Z"
},
{
"id": "41f6f0cc-58aa-40b9-94e0-cec219644c72",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "54ca1c65-fc52-417b-bc0f-c946226f0485"
},
"name": "Medium scored policy",
"priority": 4,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-23T17:20:15.830Z",
"updatedAt": "2025-04-23T17:20:15.830Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy without scores - for PingID users 4",
"createdAt": "2025-06-08T08:16:48.995Z",
"updatedAt": "2025-06-08T08:17:06.954Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "70796beb-f58d-45ad-9dd8-595ec2ae6f80",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:17:06.954Z",
"updatedAt": "2025-06-08T08:17:06.954Z"
},
{
"id": "f63f6f00-fd99-4b2c-803e-c80fad7c1f05",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:17:06.954Z",
"updatedAt": "2025-06-08T08:17:06.954Z"
},
{
"id": "c95a2427-b141-43ec-a9f5-eaef77aa0262",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:17:06.954Z",
"updatedAt": "2025-06-08T08:17:06.954Z"
},
{
"id": "069610d9-d76a-4248-9b34-a140ab762046",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA",
"mfaAuthenticationPolicyId": "a3e7a1d1-90ea-4e63-aa81-23383ba1c004"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:17:06.954Z",
"updatedAt": "2025-06-08T08:17:06.954Z"
},
{
"id": "f9ba7796-7866-4855-9c39-5854de68d14a",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T08:17:06.954Z",
"updatedAt": "2025-06-08T08:17:06.954Z"
},
{
"id": "2c99a0c9-6402-448d-b845-c415392ada2b",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "60bfe930-e8b5-4c44-a157-87989b1b509c"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-06-08T08:17:06.954Z",
"updatedAt": "2025-06-08T08:17:06.954Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations",
"createdAt": "2025-04-10T09:56:24.319Z",
"updatedAt": "2025-04-10T11:31:42.709Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "06c056bf-7489-4f25-9400-8ee3fb1634fd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "bfeef25e-48d6-4697-a3c0-880ed94abc81",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "59583f8f-2960-4c68-b143-db6277b5d4fd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "b040ea7a-5b0d-4dd6-bb71-7e82fc09be5c",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "9d682026-0c2f-4f2c-b904-e11fa3212564",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "52134292-04f1-4feb-ad42-64594478e9c7",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "ce222e40-40c6-4da9-9964-8b6ae1dd51fd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
},
{
"id": "faece2c2-5514-412f-ac63-be0088885234",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "6af4ef60-fb41-49a6-a203-93824fbcd5dc"
},
"name": "FALLBACK",
"result": {
"value": "",
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-10T11:31:42.709Z",
"updatedAt": "2025-04-10T11:31:42.709Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/77211c41-8231-4423-9686-46772405bbfa"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "77211c41-8231-4423-9686-46772405bbfa",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy without scores - for PingID users 2",
"createdAt": "2025-04-21T08:26:02.948Z",
"updatedAt": "2025-04-21T10:35:05.306Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "e7166b1b-a09f-445a-9617-1010404f7d44",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "77211c41-8231-4423-9686-46772405bbfa"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.306Z",
"updatedAt": "2025-04-21T10:35:05.306Z"
},
{
"id": "d73d565b-601f-434b-8211-1b2af84865a7",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "77211c41-8231-4423-9686-46772405bbfa"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.306Z",
"updatedAt": "2025-04-21T10:35:05.306Z"
},
{
"id": "8e8edec1-57bf-4513-9131-3562aa8dd160",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "77211c41-8231-4423-9686-46772405bbfa"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.306Z",
"updatedAt": "2025-04-21T10:35:05.306Z"
},
{
"id": "0acb23e2-b3cd-446a-bc25-37be5ea093e9",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "77211c41-8231-4423-9686-46772405bbfa"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.306Z",
"updatedAt": "2025-04-21T10:35:05.306Z"
},
{
"id": "30728f14-29f2-4a56-96f1-ade9d36ed506",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "77211c41-8231-4423-9686-46772405bbfa"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-21T10:35:05.306Z",
"updatedAt": "2025-04-21T10:35:05.306Z"
},
{
"id": "ea157de8-bd13-44fe-8cd1-c7645471a43e",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "77211c41-8231-4423-9686-46772405bbfa"
},
"name": "FALLBACK",
"result": {
"value": "",
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-21T10:35:05.306Z",
"updatedAt": "2025-04-21T10:35:05.306Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations 5",
"createdAt": "2025-05-13T12:44:33.937Z",
"updatedAt": "2025-05-14T14:50:06.751Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "2b545a92-c24d-4ab3-98b2-1ff48a6d38c3",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "a288a18c-7a80-4fb3-babf-13288e75fd69",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "3ac4cfff-f4f2-40a8-8bda-65e367c442e1",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "2d922986-bb8a-4472-a0e1-cc18d13ed034",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "af2a6121-0ade-4a3c-ba1a-76ffb91a7397",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "74a52ba0-662e-49fc-a75e-8bc9815a2cca",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "15605ff8-d103-415b-a38e-5ee4558eab4d",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
},
{
"id": "47d75851-4d8c-40cb-bf6e-0ee9896f8932",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8524d436-329d-4a8c-8422-1486f4bb5ab2"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-05-14T14:50:06.751Z",
"updatedAt": "2025-05-14T14:50:06.751Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/87143b61-0062-4cdf-9eed-234d15e46790"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "87143b61-0062-4cdf-9eed-234d15e46790",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Auth Web policy - CA_A_WAPIY",
"createdAt": "2023-06-07T13:48:24.785Z",
"updatedAt": "2023-06-07T13:48:24.785Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "a89ae2c7-e176-4e05-a843-ed36f3949a55",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "87143b61-0062-4cdf-9eed-234d15e46790"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 70,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.anonymousNetwork.level}",
"score": 50
},
{
"value": "${details.geoVelocity.level}",
"score": 50
},
{
"value": "${details.ipRisk.level}",
"score": 40
},
{
"value": "${details.ipVelocityByUser.level}",
"score": 70
},
{
"value": "${details.newDevice.level}",
"score": 70
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.userVelocityByIp.level}",
"score": 70
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 70
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2023-06-07T13:48:24.785Z",
"updatedAt": "2023-06-07T13:48:24.785Z"
},
{
"id": "9f387628-959a-4e1d-8c95-f8c505615e88",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "87143b61-0062-4cdf-9eed-234d15e46790"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 35,
"maxScore": 70
},
"aggregatedScores": [
{
"value": "${details.anonymousNetwork.level}",
"score": 50
},
{
"value": "${details.geoVelocity.level}",
"score": 50
},
{
"value": "${details.ipRisk.level}",
"score": 40
},
{
"value": "${details.ipVelocityByUser.level}",
"score": 70
},
{
"value": "${details.newDevice.level}",
"score": 70
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.userVelocityByIp.level}",
"score": 70
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 70
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2023-06-07T13:48:24.785Z",
"updatedAt": "2023-06-07T13:48:24.785Z"
}
],
"evaluatedPredictors": [
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/8893902f-e7b7-40fe-85ef-82e06f85266f"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "8893902f-e7b7-40fe-85ef-82e06f85266f",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Example - Weight Policy",
"description": "This is an example policy.",
"createdAt": "2024-04-16T12:17:46.705Z",
"updatedAt": "2025-04-09T11:13:00.124Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "d27c761f-4c26-4638-a22a-e380c7c5a6ae",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8893902f-e7b7-40fe-85ef-82e06f85266f"
},
"name": "ADVERSARY_IN_THE_MIDDLE",
"priority": 1,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.adversaryInTheMiddle.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-09T11:13:00.124Z",
"updatedAt": "2025-04-09T11:13:00.124Z"
},
{
"id": "7db95268-35a7-4d62-ab49-c789a5c6f53a",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8893902f-e7b7-40fe-85ef-82e06f85266f"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 70,
"maxScore": 100
},
"aggregatedWeights": [
{
"value": "${details.aggregatedWeights.geoVelocity}",
"weight": 4
},
{
"value": "${details.aggregatedWeights.ipVelocityByUser}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.trafficAnomalyCreatedFromAPI}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipRisk}",
"weight": 8
},
{
"value": "${details.aggregatedWeights.userBasedRiskBehavior}",
"weight": 10
}
],
"type": "AGGREGATED_WEIGHTS"
},
"createdAt": "2025-04-09T11:13:00.124Z",
"updatedAt": "2025-04-09T11:13:00.124Z"
},
{
"id": "09413a59-7fce-4549-bd20-108c88c795dc",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8893902f-e7b7-40fe-85ef-82e06f85266f"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 3,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 40,
"maxScore": 70
},
"aggregatedWeights": [
{
"value": "${details.aggregatedWeights.geoVelocity}",
"weight": 4
},
{
"value": "${details.aggregatedWeights.ipVelocityByUser}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.trafficAnomalyCreatedFromAPI}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipRisk}",
"weight": 8
},
{
"value": "${details.aggregatedWeights.userBasedRiskBehavior}",
"weight": 10
}
],
"type": "AGGREGATED_WEIGHTS"
},
"createdAt": "2025-04-09T11:13:00.124Z",
"updatedAt": "2025-04-09T11:13:00.124Z"
},
{
"id": "c5c4412e-3012-4fe4-a349-a564fbb964ea",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "8893902f-e7b7-40fe-85ef-82e06f85266f"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-09T11:13:00.124Z",
"updatedAt": "2025-04-09T11:13:00.124Z"
}
],
"evaluatedPredictors": [
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "fe36c631-6520-431b-a586-e680277a9f85"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/954928ac-a7d3-4e8c-a925-3d09b8d19bf2"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "954928ac-a7d3-4e8c-a925-3d09b8d19bf2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "test2",
"createdAt": "2022-11-10T17:06:23.894Z",
"updatedAt": "2022-11-10T17:06:23.894Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "6f127591-9179-487b-9ee8-55fdf9187157",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "954928ac-a7d3-4e8c-a925-3d09b8d19bf2"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 50,
"maxScore": 100
},
"aggregatedWeights": [
{
"value": "${details.aggregatedWeights.compAnonymousAndUserLocation}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.geoVelocity}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipRisk}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipVelocityByUser}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userLocationAnomaly}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userRiskBehavior}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userVelocityByIp}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userBasedRiskBehavior}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.anonOne}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.anonymousNetwork}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.secondcomposite}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.gepo4}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.fff}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.geo3}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ffff}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.newcustom}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.comptest2}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipvel3}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipvel4}",
"weight": 5
}
],
"type": "AGGREGATED_WEIGHTS"
},
"createdAt": "2022-11-10T17:06:23.894Z",
"updatedAt": "2022-11-10T17:06:23.894Z"
},
{
"id": "ebbf16fa-1d35-48c6-8a62-5ad4450eccbd",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "954928ac-a7d3-4e8c-a925-3d09b8d19bf2"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 10,
"maxScore": 50
},
"aggregatedWeights": [
{
"value": "${details.aggregatedWeights.compAnonymousAndUserLocation}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.geoVelocity}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipRisk}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipVelocityByUser}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userLocationAnomaly}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userRiskBehavior}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userVelocityByIp}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.userBasedRiskBehavior}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.anonOne}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.anonymousNetwork}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.secondcomposite}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.gepo4}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.fff}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.geo3}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ffff}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.newcustom}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.comptest2}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipvel3}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipvel4}",
"weight": 5
}
],
"type": "AGGREGATED_WEIGHTS"
},
"createdAt": "2022-11-10T17:06:23.894Z",
"updatedAt": "2022-11-10T17:06:23.894Z"
}
],
"evaluatedPredictors": [
{
"id": "5e2360c0-d7f2-4534-8b10-05785d048221"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "4049cc5a-e140-4a21-9a27-40709f19af12"
},
{
"id": "435650b7-1bee-06e5-328d-ad0a9e914f8c"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "392f8d98-1b57-4046-b3ce-e7c79dd458c8"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "cff0f83a-ac29-41a6-b807-02284bb70970"
},
{
"id": "deacda0a-1789-420b-9013-55ffee3e9c1d"
},
{
"id": "52ca24c9-48e3-4c4c-9b6b-e926c481e912"
},
{
"id": "a222d5ce-e864-42ca-9990-3619ba2f8d11"
},
{
"id": "bed572cf-4254-4817-aad4-e017adb657f7"
},
{
"id": "3bd54e17-4d0e-4f0f-a986-2193729b6a68"
},
{
"id": "e0717c09-2a66-4081-8da8-bca3a8ef90ac"
},
{
"id": "f9e0f14c-778d-4b17-8bc1-ebc4a0df90de"
},
{
"id": "4b988320-40b0-440a-9aef-50ae0efae92c"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/a2c47c78-39fd-4f2d-9633-1d61960893c9"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "a2c47c78-39fd-4f2d-9633-1d61960893c9",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Weight-based policy",
"description": "This is an example policy.",
"createdAt": "2022-07-20T11:33:08.012Z",
"updatedAt": "2024-07-10T15:45:12.948Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "09b0f370-e77e-43a2-b6a4-8e7789eb4506",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a2c47c78-39fd-4f2d-9633-1d61960893c9"
},
"name": "BOT",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"equals": "High",
"value": "${details.botDetection.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2024-07-10T15:45:12.948Z",
"updatedAt": "2024-07-10T15:45:12.948Z"
},
{
"id": "5a7e1711-62bb-4358-a5bb-c31a8f53bf5d",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a2c47c78-39fd-4f2d-9633-1d61960893c9"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 70,
"maxScore": 100
},
"aggregatedWeights": [
{
"value": "${details.aggregatedWeights.geoVelocity}",
"weight": 4
},
{
"value": "${details.aggregatedWeights.ipVelocityByUser}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.suspiciousDevice}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipRisk}",
"weight": 8
},
{
"value": "${details.aggregatedWeights.userRiskBehavior}",
"weight": 10
},
{
"value": "${details.aggregatedWeights.userBasedRiskBehavior}",
"weight": 10
}
],
"type": "AGGREGATED_WEIGHTS"
},
"createdAt": "2024-07-10T15:45:12.948Z",
"updatedAt": "2024-07-10T15:45:12.948Z"
},
{
"id": "38ecf122-66fc-47fe-8eee-0590b3b3a8d3",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a2c47c78-39fd-4f2d-9633-1d61960893c9"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 3,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 40,
"maxScore": 70
},
"aggregatedWeights": [
{
"value": "${details.aggregatedWeights.geoVelocity}",
"weight": 4
},
{
"value": "${details.aggregatedWeights.ipVelocityByUser}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.suspiciousDevice}",
"weight": 5
},
{
"value": "${details.aggregatedWeights.ipRisk}",
"weight": 8
},
{
"value": "${details.aggregatedWeights.userRiskBehavior}",
"weight": 10
},
{
"value": "${details.aggregatedWeights.userBasedRiskBehavior}",
"weight": 10
}
],
"type": "AGGREGATED_WEIGHTS"
},
"createdAt": "2024-07-10T15:45:12.948Z",
"updatedAt": "2024-07-10T15:45:12.948Z"
}
],
"evaluatedPredictors": [
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "435650b7-1bee-06e5-328d-ad0a9e914f8c"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations 21",
"createdAt": "2025-06-08T10:15:46.467Z",
"updatedAt": "2025-06-08T10:17:51.762Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "65087079-15b2-448e-a8c7-d25646df80c4",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "e127a00f-b99c-458b-b618-6128d5ee1df3",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "9716eb19-3b40-4936-a854-06b88adf7994",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "6f999756-8eac-41d5-83b2-e13cfca037c2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA",
"mfaAuthenticationPolicyId": "a3e7a1d1-90ea-4e63-aa81-23383ba1c004"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "06d94c40-22aa-4421-aa7e-ec20e56bf599",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "aef1aef5-2daf-4aff-8209-a89bbb7c8462",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "d265ed25-cd02-43b7-99a5-d517efbcf049",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
},
{
"id": "35c06e60-927d-48f0-9cfd-ffded1163ede",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "a5a076d4-4182-4aa5-8fbd-d2ce5502af3d"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-06-08T10:17:51.762Z",
"updatedAt": "2025-06-08T10:17:51.762Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy with mitigations 2",
"createdAt": "2025-04-10T11:48:56.930Z",
"updatedAt": "2025-04-10T13:47:00.208Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "07b4fcb8-ef5c-430f-aeb4-fa6ae3d03c29",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "a68002bf-94cc-4d11-b0f7-2fa7dfccc215",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "601f1730-8d4f-4b80-bc73-b8e49c9a2e11",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "fb5fe664-36fd-41a1-a43e-1f599947aa17",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "e9b47556-6766-4c44-ab3b-80e09c0f4cb6",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "027d56fa-f259-47ea-ab3b-552a762bb6dc",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "High scored policy",
"priority": 6,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 900,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "2335d595-2a28-46f5-a683-3f7f2aef1366",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "Medium scored policy",
"priority": 7,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 700,
"maxScore": 900
},
"aggregatedScores": [
{
"value": "${details.userLocationAnomaly.level}",
"score": 40
},
{
"value": "${details.anonymousNetwork.level}",
"score": 60
},
{
"value": "${details.ipRisk.level}",
"score": 40
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
},
{
"id": "372b6b21-cb17-4036-9f56-7f983a88794c",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "af9555b4-720e-4ea3-87bb-60469bc5e028"
},
"name": "FALLBACK",
"result": {
"value": "",
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-04-10T13:47:00.208Z",
"updatedAt": "2025-04-10T13:47:00.208Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy without scores - for PingID users 3",
"createdAt": "2025-05-14T14:44:11.555Z",
"updatedAt": "2025-05-14T14:50:06.793Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "ce6ba985-1411-4876-9a1d-88e12a61ecd7",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.793Z",
"updatedAt": "2025-05-14T14:50:06.793Z"
},
{
"id": "e3c45a82-5d26-4d21-8a75-67d22487f108",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.793Z",
"updatedAt": "2025-05-14T14:50:06.793Z"
},
{
"id": "0a552bb0-1fe1-4afc-b0ad-812273f6c415",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.793Z",
"updatedAt": "2025-05-14T14:50:06.793Z"
},
{
"id": "331ed654-2b8b-4544-8f72-bbf485954eec",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.793Z",
"updatedAt": "2025-05-14T14:50:06.793Z"
},
{
"id": "8f850338-5510-45fb-87d1-03680d1e196a",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-05-14T14:50:06.793Z",
"updatedAt": "2025-05-14T14:50:06.793Z"
},
{
"id": "edad1c1c-b66c-4e6b-83dd-efe8066cb893",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "dbbfd6dc-8c19-4cd9-86b3-dfcd3981ee23"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-05-14T14:50:06.793Z",
"updatedAt": "2025-05-14T14:50:06.793Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/deff0a82-4856-46ac-80b5-8e393e0efed0"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "deff0a82-4856-46ac-80b5-8e393e0efed0",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Auth Web policy - CA_A_WPFN",
"createdAt": "2023-07-24T13:55:30.587Z",
"updatedAt": "2023-07-24T13:55:30.587Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "fcb41626-c4cb-4803-b982-038f9a5887b5",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "deff0a82-4856-46ac-80b5-8e393e0efed0"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 75,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.anonymousNetwork.level}",
"score": 40
},
{
"value": "${details.botDetection.level}",
"score": 80
},
{
"value": "${details.geoVelocity.level}",
"score": 50
},
{
"value": "${details.ipRisk.level}",
"score": 40
},
{
"value": "${details.ipVelocityByUser.level}",
"score": 75
},
{
"value": "${details.newDevice.level}",
"score": 75
},
{
"value": "${details.suspiciousDevice.level}",
"score": 80
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.userVelocityByIp.level}",
"score": 75
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 75
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2023-07-24T13:55:30.587Z",
"updatedAt": "2023-07-24T13:55:30.587Z"
},
{
"id": "8aa35876-9b06-4eac-8dad-66175f679cc1",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "deff0a82-4856-46ac-80b5-8e393e0efed0"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 40,
"maxScore": 75
},
"aggregatedScores": [
{
"value": "${details.anonymousNetwork.level}",
"score": 40
},
{
"value": "${details.botDetection.level}",
"score": 80
},
{
"value": "${details.geoVelocity.level}",
"score": 50
},
{
"value": "${details.ipRisk.level}",
"score": 40
},
{
"value": "${details.ipVelocityByUser.level}",
"score": 75
},
{
"value": "${details.newDevice.level}",
"score": 75
},
{
"value": "${details.suspiciousDevice.level}",
"score": 80
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.userVelocityByIp.level}",
"score": 75
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 75
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2023-07-24T13:55:30.587Z",
"updatedAt": "2023-07-24T13:55:30.587Z"
}
],
"evaluatedPredictors": [
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
}
],
"source": {
"type": "CONFIGURATION_ASSISTANT",
"useCase": "WORKFORCE",
"integration": "PING_FEDERATE",
"sdk": {
"platforms": []
},
"version": "AP-4"
},
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/eb2769ed-bb27-473b-8134-95f9385a326f"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "eb2769ed-bb27-473b-8134-95f9385a326f",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Targeted policy without scores - for PingID users 223",
"createdAt": "2025-06-08T10:17:05.812Z",
"updatedAt": "2025-06-08T10:17:51.810Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"targets": {
"condition": {
"and": [
{
"list": [
"AUTHENTICATION",
"AUTHORIZATION"
],
"contains": "${event.flow.type}",
"type": "STRING_LIST"
},
{
"list": [
"Sales"
],
"contains": "${event.user.groups}",
"type": "GROUPS_INTERSECTION"
},
{
"list": [
"6b6f867b-d768-4c2c-a9b6-6816da00d824",
"845c9918-94d7-430c-b3d8-eafafc215fd9"
],
"contains": "${event.targetResource.id}",
"type": "STRING_LIST"
}
],
"type": "AND"
}
},
"riskPolicies": [
{
"id": "e5a359c7-f2cc-43f0-bccf-f4c4302ebea3",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "eb2769ed-bb27-473b-8134-95f9385a326f"
},
"name": "USER_LOCATION_ANOMALY",
"priority": 1,
"result": {
"mitigations": [
{
"action": "CUSTOM",
"customAction": "CustomActionForUserLocationAnomaly"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.userLocationAnomaly.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.810Z",
"updatedAt": "2025-06-08T10:17:51.810Z"
},
{
"id": "0edfdd58-7b42-45df-af49-f06b2d1d1042",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "eb2769ed-bb27-473b-8134-95f9385a326f"
},
"name": "VELOCITY",
"priority": 2,
"result": {
"mitigations": [
{
"action": "DENY_AND_SUSPEND"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.ipVelocityByUser.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.810Z",
"updatedAt": "2025-06-08T10:17:51.810Z"
},
{
"id": "f9b6a765-2ba7-4bb8-bf7d-7e7220c3e1d9",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "eb2769ed-bb27-473b-8134-95f9385a326f"
},
"name": "USER_RISK_BEHAVIOR",
"priority": 3,
"result": {
"mitigations": [
{
"action": "VERIFY"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Medium",
"value": "${details.userBasedRiskBehavior.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.810Z",
"updatedAt": "2025-06-08T10:17:51.810Z"
},
{
"id": "26f45974-a2ae-4cc8-9c3f-4072e0c46829",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "eb2769ed-bb27-473b-8134-95f9385a326f"
},
"name": "EMAIL_REPUTATION",
"priority": 4,
"result": {
"mitigations": [
{
"action": "MFA",
"mfaAuthenticationPolicyId": "a3e7a1d1-90ea-4e63-aa81-23383ba1c004"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "High",
"value": "${details.emailReputation.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.810Z",
"updatedAt": "2025-06-08T10:17:51.810Z"
},
{
"id": "a11f5ce7-7ce4-4eac-88bc-19abc01df6c2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "eb2769ed-bb27-473b-8134-95f9385a326f"
},
"name": "IP_REPUTATION",
"priority": 5,
"result": {
"mitigations": [
{
"action": "APPROVE"
}
],
"type": "MITIGATION"
},
"condition": {
"equals": "Low",
"value": "${details.ipRisk.level}",
"type": "VALUE_COMPARISON"
},
"createdAt": "2025-06-08T10:17:51.810Z",
"updatedAt": "2025-06-08T10:17:51.810Z"
},
{
"id": "3704990e-4f1a-4e6b-b4e2-676006e02ef7",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "eb2769ed-bb27-473b-8134-95f9385a326f"
},
"name": "FALLBACK",
"result": {
"mitigations": [
{
"action": "DENY"
}
],
"type": "MITIGATION_FALLBACK"
},
"createdAt": "2025-06-08T10:17:51.810Z",
"updatedAt": "2025-06-08T10:17:51.810Z"
}
],
"evaluatedPredictors": [
{
"id": "1e035d51-e328-02c3-1f77-61357f549356"
},
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "e735fd8b-e314-0d4a-05bd-2e37409b3245"
},
{
"id": "7579bcfa-cc13-064b-364e-151ff8bb918d"
},
{
"id": "29a7db1d-2f67-0cba-144a-ec425ac9b8de"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "7a6e027b-8d24-039b-055a-1d4994050d52"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
},
{
"id": "a0d4bd3d-253d-0ada-390c-ef231fa0af3f"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "feadbf9a-0bfe-0bd7-0fbb-420ee6705c17"
}
],
"default": false
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/f394426f-9b71-4e01-ac78-2956a2e92ac2"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "f394426f-9b71-4e01-ac78-2956a2e92ac2",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Score-based policy",
"createdAt": "2022-07-21T06:54:42.494Z",
"updatedAt": "2024-07-10T15:44:36.979Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "5e592676-6417-4b07-9858-1866dbbec55a",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "f394426f-9b71-4e01-ac78-2956a2e92ac2"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 75,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.deviceManagementPredictor.level}",
"score": 50
},
{
"value": "${details.ipvel3.level}",
"score": 50
},
{
"value": "${details.ipvel4.level}",
"score": 50
},
{
"value": "${details.newDevice.level}",
"score": 75
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 100
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2024-07-10T15:44:36.979Z",
"updatedAt": "2024-07-10T15:44:36.979Z"
},
{
"id": "2110a9de-6a32-4690-b268-93943cbabddb",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "f394426f-9b71-4e01-ac78-2956a2e92ac2"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 50,
"maxScore": 75
},
"aggregatedScores": [
{
"value": "${details.deviceManagementPredictor.level}",
"score": 50
},
{
"value": "${details.ipvel3.level}",
"score": 50
},
{
"value": "${details.ipvel4.level}",
"score": 50
},
{
"value": "${details.newDevice.level}",
"score": 75
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 100
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2024-07-10T15:44:36.979Z",
"updatedAt": "2024-07-10T15:44:36.979Z"
}
],
"evaluatedPredictors": [
{
"id": "4fa07881-f10f-4caa-aeb9-f82decd51bfb"
},
{
"id": "f9e0f14c-778d-4b17-8bc1-ebc4a0df90de"
},
{
"id": "4b988320-40b0-440a-9aef-50ae0efae92c"
},
{
"id": "41c79993-a200-0de0-22d0-2979c2790b18"
},
{
"id": "98de670b-1fc9-0299-1a0f-6cdd11729b80"
}
],
"triggers": [
{
"type": "POLICY_SET_STAGING",
"policySet": {
"id": "f7739395-0093-49fb-aace-8fd8998a866c"
},
"expiresAt": "2022-12-12T09:35:43.911Z"
}
],
"default": true
},
{
"_links": {
"self": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/riskPolicySets/f7739395-0093-49fb-aace-8fd8998a866c"
},
"environment": {
"href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
}
},
"id": "f7739395-0093-49fb-aace-8fd8998a866c",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"name": "Staging policy for testing changes to score-based policy",
"createdAt": "2022-09-13T09:35:43.032Z",
"updatedAt": "2022-09-13T09:35:43.032Z",
"defaultResult": {
"level": "LOW",
"type": "VALUE"
},
"riskPolicies": [
{
"id": "36fbc774-bd33-4beb-addd-29fdeeef7e8f",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "f7739395-0093-49fb-aace-8fd8998a866c"
},
"name": "HIGH_WEIGHTED_POLICY",
"priority": 1,
"result": {
"level": "HIGH",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 75,
"maxScore": 1000
},
"aggregatedScores": [
{
"value": "${details.ipRisk.level}",
"score": 50
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.userRiskBehavior.level}",
"score": 50
},
{
"value": "${details.userVelocityByIp.level}",
"score": 50
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 50
},
{
"value": "${details.anonOne.level}",
"score": 50
},
{
"value": "${details.anonymousNetwork.level}",
"score": 50
},
{
"value": "${details.secondcomposite.level}",
"score": 50
},
{
"value": "${details.gepo4.level}",
"score": 50
},
{
"value": "${details.fff.level}",
"score": 50
},
{
"value": "${details.geo3.level}",
"score": 50
},
{
"value": "${details.ffff.level}",
"score": 50
},
{
"value": "${details.newcustom.level}",
"score": 50
},
{
"value": "${details.comptest2.level}",
"score": 50
},
{
"value": "${details.ipvel3.level}",
"score": 50
},
{
"value": "${details.ipvel4.level}",
"score": 50
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2022-09-13T09:35:43.032Z",
"updatedAt": "2022-09-13T09:35:43.032Z"
},
{
"id": "04dc0076-7082-42d7-9ff2-a8b863ca1665",
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"policySet": {
"id": "f7739395-0093-49fb-aace-8fd8998a866c"
},
"name": "MEDIUM_WEIGHTED_POLICY",
"priority": 2,
"result": {
"level": "MEDIUM",
"type": "VALUE"
},
"condition": {
"between": {
"minScore": 50,
"maxScore": 75
},
"aggregatedScores": [
{
"value": "${details.ipRisk.level}",
"score": 50
},
{
"value": "${details.userLocationAnomaly.level}",
"score": 50
},
{
"value": "${details.userRiskBehavior.level}",
"score": 50
},
{
"value": "${details.userVelocityByIp.level}",
"score": 50
},
{
"value": "${details.userBasedRiskBehavior.level}",
"score": 50
},
{
"value": "${details.anonOne.level}",
"score": 50
},
{
"value": "${details.anonymousNetwork.level}",
"score": 50
},
{
"value": "${details.secondcomposite.level}",
"score": 50
},
{
"value": "${details.gepo4.level}",
"score": 50
},
{
"value": "${details.fff.level}",
"score": 50
},
{
"value": "${details.geo3.level}",
"score": 50
},
{
"value": "${details.ffff.level}",
"score": 50
},
{
"value": "${details.newcustom.level}",
"score": 50
},
{
"value": "${details.comptest2.level}",
"score": 50
},
{
"value": "${details.ipvel3.level}",
"score": 50
},
{
"value": "${details.ipvel4.level}",
"score": 50
}
],
"type": "AGGREGATED_SCORES"
},
"createdAt": "2022-09-13T09:35:43.032Z",
"updatedAt": "2022-09-13T09:35:43.032Z"
}
],
"evaluatedPredictors": [
{
"id": "368135d2-cd3c-01aa-1ba7-3fcf96c1d7a3"
},
{
"id": "4049cc5a-e140-4a21-9a27-40709f19af12"
},
{
"id": "435650b7-1bee-06e5-328d-ad0a9e914f8c"
},
{
"id": "5f98480d-7c48-0a3d-2989-5e27161d827f"
},
{
"id": "02124097-c66d-0e38-0475-926788edd1f5"
},
{
"id": "392f8d98-1b57-4046-b3ce-e7c79dd458c8"
},
{
"id": "ef4c6e2d-5bc1-0db8-313a-acfe3bc607c6"
},
{
"id": "cff0f83a-ac29-41a6-b807-02284bb70970"
},
{
"id": "deacda0a-1789-420b-9013-55ffee3e9c1d"
},
{
"id": "52ca24c9-48e3-4c4c-9b6b-e926c481e912"
},
{
"id": "a222d5ce-e864-42ca-9990-3619ba2f8d11"
},
{
"id": "bed572cf-4254-4817-aad4-e017adb657f7"
},
{
"id": "3bd54e17-4d0e-4f0f-a986-2193729b6a68"
},
{
"id": "e0717c09-2a66-4081-8da8-bca3a8ef90ac"
},
{
"id": "f9e0f14c-778d-4b17-8bc1-ebc4a0df90de"
},
{
"id": "4b988320-40b0-440a-9aef-50ae0efae92c"
}
],
"default": false
}
]
},
"count": 21,
"size": 21
}