PingOne Platform APIs

Read All Verify Policies

 

GET {{apiPath}}/environments/{{envID}}/verifyPolicies

Use the GET {{apiPath}}/environments/{{envID}}/verifyPolicies request to return all of the verify policies in the environment.

The request accepts a SCIM filter expression for the name property to retrieve a subset of all policies. Comparisons are case insensitive. The filter supports the SCIM attribute operators: eq (equal), ne (not equal), co (contains), sw (starts with), ew (ends with), and pr (present; not null or empty). Other attribute operators and logical operators are not supported.

The first example response is from a request that had no filter. The second example response is from a request that had the filter in the top row of the Example filters table.

Example filters

Text URL encoded

?filter=name eq "Verify everything"

?filter=name%20eq%20%22Verify%20everything%22

?filter=name ne "Verify everything"

?filter=name%20ne%20%22Verify%20everything%22

?filter=name sw "Def"

?filter=name%20sw%20%22Def%22

?filter=name ew "ication"

?filter=name%20ew%20%22ication%22

?filter=name co "fault"

?filter=name%20co%20%22fault%22

Headers

Authorization      Bearer {{accessToken}}

Example Request

  • cURL

  • C#

  • Go

  • HTTP

  • Java

  • jQuery

  • NodeJS

  • Python

  • PHP

  • Ruby

  • Swift

curl --location --globoff '{{apiPath}}/environments/{{envID}}/verifyPolicies' \
--header 'Authorization: Bearer {{accessToken}}'
var options = new RestClientOptions("{{apiPath}}/environments/{{envID}}/verifyPolicies")
{
  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}}/verifyPolicies"
  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}}/verifyPolicies 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}}/verifyPolicies")
  .method("GET", body)
  .addHeader("Authorization", "Bearer {{accessToken}}")
  .build();
Response response = client.newCall(request).execute();
var settings = {
  "url": "{{apiPath}}/environments/{{envID}}/verifyPolicies",
  "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}}/verifyPolicies',
  '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}}/verifyPolicies"

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}}/verifyPolicies');
$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}}/verifyPolicies")

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}}/verifyPolicies")!,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": {
        "defaultPolicy": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/f45a14af-7384-46c0-be75-5de082bf656f"
        },
        "environment": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
        },
        "self": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies"
        }
    },
    "_embedded": {
        "verifyPolicies": [
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/024f1f94-4141-47ae-bbae-f83cafd63ca6"
                    }
                },
                "id": "024f1f94-4141-47ae-bbae-f83cafd63ca6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Goverment Facial and Liveness Only",
                "description": "All Doc types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "HIGH"
                    },
                    "liveness": {
                        "threshold": "HIGH"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": true,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 10,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-09-13T23:09:30.510Z",
                "updatedAt": "2023-11-28T20:48:41.805Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/02eccce9-7b47-412e-836c-e2fccbf2808c"
                    }
                },
                "id": "02eccce9-7b47-412e-836c-e2fccbf2808c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Identity Verification",
                "description": "Verify Government ID and compare Selfie",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T16:57:10.685Z",
                "updatedAt": "2023-11-28T20:48:41.808Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/036c81e4-42ad-4407-a3ec-e3866c64e434"
                    }
                },
                "id": "036c81e4-42ad-4407-a3ec-e3866c64e434",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Goverment Only",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": "DEFAULT"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": "DEFAULT"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "HIGH"
                    },
                    "liveness": {
                        "threshold": "HIGH"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": true,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-07-14T09:12:26.711Z",
                "updatedAt": "2023-11-28T20:48:41.814Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/1cca72fc-238d-446e-b044-a23eff6710f9"
                    }
                },
                "id": "1cca72fc-238d-446e-b044-a23eff6710f9",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Data Collection Only",
                "description": "This is the description for the Data Collection Only",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "think_like_a_customer"
                        }
                    },
                    "comparison": {
                        "threshold": "HIGH"
                    },
                    "liveness": {
                        "threshold": "HIGH"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": true,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-24T22:32:36.467Z",
                "updatedAt": "2023-11-28T20:48:41.824Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/23240c29-4aed-47ed-a373-0d19e013b545"
                    }
                },
                "id": "23240c29-4aed-47ed-a373-0d19e013b545",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Email Only",
                "default": false,
                "governmentId": {
                    "verify": "DISABLED",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": "Sina"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-16T23:04:47.284Z",
                "updatedAt": "2022-06-16T23:15:26.311Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/24046312-d032-471c-a21a-8409724f726d"
                    }
                },
                "id": "24046312-d032-471c-a21a-8409724f726d",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "verifiableCredential": {
                    "verify": "DISABLED",
                    "protocol": "NATIVE"
                },
                "createdAt": "2024-03-26T15:54:38.308Z",
                "updatedAt": "2024-03-26T15:54:38.314Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/3b93bb8a-5c8b-4143-bb53-50440b631b4b"
                    }
                },
                "id": "3b93bb8a-5c8b-4143-bb53-50440b631b4b",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Goverment, Facial & Liveness Only",
                "description": "All Doc types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "OPTIONAL",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "OPTIONAL",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-06T22:31:55.165Z",
                "updatedAt": "2023-11-28T20:48:41.848Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/5e890a57-9ad1-4be6-9034-a367bdf10976"
                    }
                },
                "id": "5e890a57-9ad1-4be6-9034-a367bdf10976",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Goverment and Liveness",
                "description": "Only Liveness enabled",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-05-31T21:44:28.996Z",
                "updatedAt": "2023-11-28T20:48:41.857Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/6390f6ea-4379-4d57-92d8-52f288389026"
                    }
                },
                "id": "6390f6ea-4379-4d57-92d8-52f288389026",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "New Default",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": "DEFAULT"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": "DEFAULT"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-07-14T20:37:59.716Z",
                "updatedAt": "2023-11-28T20:48:41.858Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/6a0e36ed-d99a-4a5f-b5b5-030922a2f8f0"
                    }
                },
                "id": "6a0e36ed-d99a-4a5f-b5b5-030922a2f8f0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Reference Selfie Match",
                "description": "Facial Comparison",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-07-29T21:35:50.990Z",
                "updatedAt": "2023-11-28T20:48:41.862Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/732f0297-8a48-49aa-a787-c32392bf2b9d"
                    }
                },
                "id": "732f0297-8a48-49aa-a787-c32392bf2b9d",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Selfie Liveness",
                "description": "Only Liveness enabled",
                "default": false,
                "governmentId": {
                    "verify": "DISABLED",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-03T23:18:38.918Z",
                "updatedAt": "2022-06-03T23:18:38.921Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/89e96b23-d7d7-4e0b-a146-79287508552f"
                    }
                },
                "id": "89e96b23-d7d7-4e0b-a146-79287508552f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Reference Selfie - Liveness and facialComparison",
                "description": "Reference Selfie - Liveness and facialComparison",
                "default": false,
                "governmentId": {
                    "verify": "DISABLED",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "OPTIONAL",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "OPTIONAL",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-03T23:18:27.369Z",
                "updatedAt": "2022-06-03T23:18:27.372Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/971a3c1d-7b1e-460f-befa-7863eb79fbd3"
                    }
                },
                "id": "971a3c1d-7b1e-460f-befa-7863eb79fbd3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Selfie Goverment Only",
                "description": "Goverment Only",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": false
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-01T04:44:22.362Z",
                "updatedAt": "2023-11-28T20:48:41.887Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/af8c4de8-f807-453b-b598-02852f37feca"
                    }
                },
                "id": "af8c4de8-f807-453b-b598-02852f37feca",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Government ID Only",
                "description": "Only government ID required. No liveness or facial comparison",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": false
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-06T19:40:19.193Z",
                "updatedAt": "2023-11-28T20:48:41.895Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/bc1a9810-ad6b-4737-b37a-c580f48341c0"
                    }
                },
                "id": "bc1a9810-ad6b-4737-b37a-c580f48341c0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify Email and Phone",
                "description": "Only Email OTP enabled",
                "default": false,
                "governmentId": {
                    "verify": "DISABLED",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": false
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-06-06T22:59:04.552Z",
                "updatedAt": "2022-06-06T22:59:04.559Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/c5401a9b-d7d4-494c-98c6-f411a2ea2883"
                    }
                },
                "id": "c5401a9b-d7d4-494c-98c6-f411a2ea2883",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Default Verify Policy",
                "description": "Default Verify Policy based on Environment Capabilities",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": false
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "offline_pairing",
                            "variantName": "verify_otp"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-05-31T17:36:07.460Z",
                "updatedAt": "2023-11-28T20:48:41.909Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/deb9922a-1f87-4018-933a-183243087393"
                    }
                },
                "id": "deb9922a-1f87-4018-933a-183243087393",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "New Policy",
                "description": "optional_only",
                "default": false,
                "governmentId": {
                    "verify": "DISABLED",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": false
                },
                "facialComparison": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "DISABLED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "verifiableCredential": {
                    "verify": "DISABLED",
                    "protocol": "NATIVE"
                },
                "createdAt": "2023-11-01T21:21:50.798Z",
                "updatedAt": "2023-11-01T21:21:50.824Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/f45a14af-7384-46c0-be75-5de082bf656f"
                    }
                },
                "id": "f45a14af-7384-46c0-be75-5de082bf656f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "New Default Policy ",
                "description": "This is the description for New Default Policy",
                "default": true,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId": "false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "email": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "phone": {
                    "verify": "DISABLED",
                    "createMfaDevice": false,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 5,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification",
                            "variantName": ""
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "HIGH"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": true,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2023-02-16T17:40:09.673Z",
                "updatedAt": "2023-11-01T14:26:49.715Z"
            }
        ]
    },
    "size": 18
}

Example Response

200 OK

{
    "_links": {
        "environment": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
        },
        "self": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies"
        }
    },
    "_embedded": {
        "verifyPolicies": [
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/24046312-d032-471c-a21a-8409724f726d"
                    }
                },
                "id": "24046312-d032-471c-a21a-8409724f726d",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "verifiableCredential": {
                    "verify": "DISABLED",
                    "protocol": "NATIVE"
                },
                "createdAt": "2024-03-26T15:54:38.308Z",
                "updatedAt": "2024-03-26T15:54:38.314Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/32207ad6-2253-4106-99e7-3e52dd67a80a"
                    }
                },
                "id": "32207ad6-2253-4106-99e7-3e52dd67a80a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T14:06:01.472Z",
                "updatedAt": "2023-11-28T20:48:41.841Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/3cd84f30-48a6-4346-bf47-b95e35c68859"
                    }
                },
                "id": "3cd84f30-48a6-4346-bf47-b95e35c68859",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T14:01:39.528Z",
                "updatedAt": "2023-11-28T20:48:41.849Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/46d1e4bd-8793-4a79-8881-a665fec5c2b2"
                    }
                },
                "id": "46d1e4bd-8793-4a79-8881-a665fec5c2b2",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"false",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T13:43:49.247Z",
                "updatedAt": "2023-11-28T20:48:41.853Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/4bb2a899-bdef-4964-befc-681de62deae5"
                    }
                },
                "id": "4bb2a899-bdef-4964-befc-681de62deae5",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "REQUIRED",
                    "enrollment": true,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "HIGH"
                    },
                    "liveness": {
                        "threshold": "HIGH"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": true,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-09-28T20:10:40.530Z",
                "updatedAt": "2023-11-28T20:48:41.855Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/78aa2cbb-7260-44c5-84f0-077c54f694ee"
                    }
                },
                "id": "78aa2cbb-7260-44c5-84f0-077c54f694ee",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T14:06:42.940Z",
                "updatedAt": "2023-11-28T20:48:41.863Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/89ee6d78-f97c-4546-9b5d-a09c2b52bc8a"
                    }
                },
                "id": "89ee6d78-f97c-4546-9b5d-a09c2b52bc8a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "HIGH"
                    },
                    "liveness": {
                        "threshold": "HIGH"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": true,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-09-28T16:56:42.688Z",
                "updatedAt": "2023-11-28T20:48:41.878Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/ab664bc4-99c2-4e45-a34c-e5b0d7fece56"
                    }
                },
                "id": "ab664bc4-99c2-4e45-a34c-e5b0d7fece56",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T14:02:45.196Z",
                "updatedAt": "2023-11-28T20:48:41.891Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/cdfc6f4d-5c7d-4790-abd3-b502eff823b5"
                    }
                },
                "id": "cdfc6f4d-5c7d-4790-abd3-b502eff823b5",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T14:00:54.993Z",
                "updatedAt": "2023-11-28T20:48:41.912Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/cf032a0d-9e1f-4a8d-877a-b321dab70bdb"
                    }
                },
                "id": "cf032a0d-9e1f-4a8d-877a-b321dab70bdb",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T13:58:30.978Z",
                "updatedAt": "2023-11-28T20:48:41.913Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/fa4b37e1-01f5-4bd9-8c43-b35fd4238601"
                    }
                },
                "id": "fa4b37e1-01f5-4bd9-8c43-b35fd4238601",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "VERIFF",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "verifiableCredential": {
                    "verify": "DISABLED",
                    "protocol": "NATIVE"
                },
                "createdAt": "2024-03-26T15:57:33.031Z",
                "updatedAt": "2024-03-26T15:57:33.036Z"
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/verifyPolicies/fec91405-ae77-4f97-b9b9-5420d88e5f61"
                    }
                },
                "id": "fec91405-ae77-4f97-b9b9-5420d88e5f61",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Verify everything",
                "description": "All types required",
                "default": false,
                "governmentId": {
                    "verify": "REQUIRED",
                    "inspectionType": "AUTOMATIC",
                    "failExpiredId":"true",
                    "provider": {
                        "auto": "MITEK",
                        "manual": "MITEK"
                    },
                    "verifyAamva": true
                },
                "facialComparison": {
                    "verify": "REQUIRED",
                    "threshold": "MEDIUM"
                },
                "liveness": {
                    "verify": "REQUIRED",
                    "threshold": "HIGH"
                },
                "email": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "phone": {
                    "verify": "REQUIRED",
                    "createMfaDevice": true,
                    "otp": {
                        "attempts": {
                            "count": 5
                        },
                        "lifeTime": {
                            "duration": 10,
                            "timeUnit": "MINUTES"
                        },
                        "deliveries": {
                            "count": 3,
                            "cooldown": {
                                "duration": 30,
                                "timeUnit": "SECONDS"
                            }
                        },
                        "notification": {
                            "templateName": "email_phone_verification"
                        }
                    }
                },
                "voice": {
                    "verify": "DISABLED",
                    "enrollment": false,
                    "textDependent": {
                        "samples": 3,
                        "phrase": {
                            "id": "exceptional_experiences"
                        }
                    },
                    "comparison": {
                        "threshold": "MEDIUM"
                    },
                    "liveness": {
                        "threshold": "MEDIUM"
                    },
                    "referenceData": {
                        "retainOriginalRecordings": false,
                        "updateOnReenrollment": true,
                        "updateOnVerification": true
                    }
                },
                "transaction": {
                    "timeout": {
                        "duration": 30,
                        "timeUnit": "MINUTES"
                    },
                    "dataCollection": {
                        "timeout": {
                            "duration": 15,
                            "timeUnit": "MINUTES"
                        }
                    },
                    "dataCollectionOnly": false
                },
                "createdAt": "2022-08-04T16:48:18.835Z",
                "updatedAt": "2023-11-28T20:48:41.934Z"
            }
        ]
    },
    "size": 12
}