PingOne Platform APIs

Read Device Authentication Policies

 

GET {{apiPath}}/environments/{{envID}}/deviceAuthenticationPolicies

The GET {{apiPath}}/environments/{{envID}}/deviceAuthenticationPolicies operation returns all the device authentication policies for the environment.

Headers

Authorization      Bearer {{accessToken}}

Example Request

  • cURL

  • C#

  • Go

  • HTTP

  • Java

  • jQuery

  • NodeJS

  • Python

  • PHP

  • Ruby

  • Swift

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

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

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}}/deviceAuthenticationPolicies")!,timeoutInterval: Double.infinity)
request.addValue("Bearer {{accessToken}}", forHTTPHeaderField: "Authorization")

request.httpMethod = "GET"

let task = URLSession.shared.dataTask(with: request) { data, response, error in
  guard let data = data else {
    print(String(describing: error))
    return
  }
  print(String(data: data, encoding: .utf8)!)
}

task.resume()

Example Response

200 OK

{
    "_links": {
        "environment": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
        },
        "self": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies"
        }
    },
    "_embedded": {
        "deviceAuthenticationPolicies": [
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/9e2864ee-340f-0dd7-1944-0bd0750732d6"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/9e2864ee-340f-0dd7-1944-0bd0750732d6/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "9e2864ee-340f-0dd7-1944-0bd0750732d6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Default MFA Policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8ea4081f-f0e8-487a-83c6-5ab1d1a1bfff",
                            "push": {
                                "enabled": false
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": false
                            },
                            "pushTimeout": {
                                "duration": 40,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 10,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "restrictive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.220Z",
                "createdAt": "2022-03-06T10:32:49.095Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/13cbe279-1ea2-49de-af5a-1b153a663a7e"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/13cbe279-1ea2-49de-af5a-1b153a663a7e/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "13cbe279-1ea2-49de-af5a-1b153a663a7e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1717410507",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "ignoreUserLock": false,
                "updatedAt": "2025-04-30T12:55:01.961Z",
                "createdAt": "2024-06-03T10:28:27.975Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15337f49-4cff-4b6f-a338-0831ab815286"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/33163ff8-5803-46bf-a558-bd7aeb07d590"
                    }
                },
                "id": "15337f49-4cff-4b6f-a338-0831ab815286",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Policy name - updated after creation",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "fido2PolicyId": "33163ff8-5803-46bf-a558-bd7aeb07d590",
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.376Z",
                "createdAt": "2022-12-01T12:37:06.588Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15d0474a-9271-489f-9eb6-de48f3284d47"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15d0474a-9271-489f-9eb6-de48f3284d47/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "15d0474a-9271-489f-9eb6-de48f3284d47",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1738511919",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 60,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-02-02T15:58:40.516Z",
                "createdAt": "2025-02-02T15:58:40.516Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/1c15f5ab-5b4a-479a-a5b7-835ca16c25a6"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "1c15f5ab-5b4a-479a-a5b7-835ca16c25a6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy7",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": true,
                "updatedAt": "2024-09-19T09:15:25.392Z",
                "createdAt": "2022-04-12T14:19:57.490Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/20253636-865b-4def-98ba-8386fee8255f"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/20253636-865b-4def-98ba-8386fee8255f/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "20253636-865b-4def-98ba-8386fee8255f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Passwordless - Auto Generated",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "f42b3dcb-3ec2-4be3-97f2-fcc6f4ee6528",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": false
                            },
                            "deviceAuthorization": {
                                "enabled": false
                            },
                            "pushTimeout": {
                                "duration": 40,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 20,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "restrictive"
                        },
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": false
                            },
                            "deviceAuthorization": {
                                "enabled": false
                            },
                            "pushTimeout": {
                                "duration": 40,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 10,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "restrictive"
                        }
                    ]
                },
                "totp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "ignoreUserLock": true,
                "updatedAt": "2025-06-25T12:04:05.753Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3a4cf26a-1c27-4b6d-9ebc-173d4cf85d1b"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3a4cf26a-1c27-4b6d-9ebc-173d4cf85d1b/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "3a4cf26a-1c27-4b6d-9ebc-173d4cf85d1b",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - phasing out email - with notification policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-28T11:16:10.577Z",
                "createdAt": "2025-01-12T11:38:41.164Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/400f516c-7965-4402-94b8-0caf05ddd78e"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/400f516c-7965-4402-94b8-0caf05ddd78e/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "400f516c-7965-4402-94b8-0caf05ddd78e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - name updated after creation",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.553Z",
                "createdAt": "2023-03-13T11:13:21.820Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/5a0a0950-8a81-4739-b12a-f4d6a11c7a82"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "5a0a0950-8a81-4739-b12a-f4d6a11c7a82",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "mfa_policy_1",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "ignoreUserLock": false,
                "updatedAt": "2025-05-05T13:40:01.420Z",
                "createdAt": "2022-05-10T10:01:14.625Z",
                "default": true
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/61cf9806-1d18-4eda-92c0-109fc79d4495"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/61cf9806-1d18-4eda-92c0-109fc79d4495/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "61cf9806-1d18-4eda-92c0-109fc79d4495",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - phasing out email - updated 2",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-12-03T15:48:45.658Z",
                "createdAt": "2022-05-19T11:10:07.172Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/74c93d53-366c-4c8c-b4cf-c228933091cd"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "74c93d53-366c-4c8c-b4cf-c228933091cd",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Passwordless - Auto Generated 1",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.785Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/7793ae56-3db6-4ab6-be7b-df80100cbae3"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/7793ae56-3db6-4ab6-be7b-df80100cbae3/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "7793ae56-3db6-4ab6-be7b-df80100cbae3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - name updated",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.817Z",
                "createdAt": "2023-03-13T15:15:01.597Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8992b573-1c1b-4a39-8935-b3ec86b5c7ee"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8992b573-1c1b-4a39-8935-b3ec86b5c7ee/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "8992b573-1c1b-4a39-8935-b3ec86b5c7ee",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - phasing out email - updated",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8370dc35-a30d-45b6-9ff5-58aa943fca7d",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.886Z",
                "createdAt": "2023-07-02T10:06:19.991Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8bec1d08-c0fb-4d34-b472-2610199704c7"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "notificationsPolicy": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/notificationsPolicies/162ff6b3-43d1-4cde-86ae-425d22048b2e"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8bec1d08-c0fb-4d34-b472-2610199704c7/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "8bec1d08-c0fb-4d34-b472-2610199704c7",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1741177336",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "notificationsPolicy": {
                    "id": "162ff6b3-43d1-4cde-86ae-425d22048b2e"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 4,
                        "coolDown": {
                            "duration": 150,
                            "timeUnit": "SECONDS"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-03-05T12:22:16.162Z",
                "createdAt": "2025-03-05T12:22:16.162Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/a1d4a178-0baf-4774-906c-7342ae54fcd3"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "notificationsPolicy": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/notificationsPolicies/162ff6b3-43d1-4cde-86ae-425d22048b2e"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/a1d4a178-0baf-4774-906c-7342ae54fcd3/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "a1d4a178-0baf-4774-906c-7342ae54fcd3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1741178008",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "notificationsPolicy": {
                    "id": "162ff6b3-43d1-4cde-86ae-425d22048b2e"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-03-05T12:33:29.667Z",
                "createdAt": "2025-03-05T12:33:29.667Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/a3e7a1d1-90ea-4e63-aa81-23383ba1c004"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "notificationsPolicy": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/notificationsPolicies/162ff6b3-43d1-4cde-86ae-425d22048b2e"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/a3e7a1d1-90ea-4e63-aa81-23383ba1c004/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "a3e7a1d1-90ea-4e63-aa81-23383ba1c004",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "MFA policy - with specific notification policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "notificationsPolicy": {
                    "id": "162ff6b3-43d1-4cde-86ae-425d22048b2e"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-28T11:52:33.443Z",
                "createdAt": "2025-01-28T11:18:44.231Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/cd362823-a4d4-4fc2-98e8-b86ab96f0615"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "cd362823-a4d4-4fc2-98e8-b86ab96f0615",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy6",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": true,
                "updatedAt": "2024-09-19T09:15:26.008Z",
                "createdAt": "2022-12-01T11:47:51.426Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/d3ae54fe-4c7c-4d43-be57-a838e9abdb1f"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "d3ae54fe-4c7c-4d43-be57-a838e9abdb1f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Policy name - updated 2",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": true,
                "updatedAt": "2024-09-19T09:15:26.060Z",
                "createdAt": "2022-12-01T11:55:21.084Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/f0b2b3b2-72d3-4573-84d9-52a85479445c"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "f0b2b3b2-72d3-4573-84d9-52a85479445c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "MFA using SMS",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "whatsApp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "oathToken": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-02-03T12:16:25.041Z",
                "createdAt": "2022-05-19T11:10:52.838Z",
                "default": false
            }
        ]
    },
    "count": 19,
    "size": 19
}

Example Response

200 OK

{
    "_links": {
        "environment": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
        },
        "self": {
            "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies"
        }
    },
    "_embedded": {
        "deviceAuthenticationPolicies": [
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/9e2864ee-340f-0dd7-1944-0bd0750732d6"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/9e2864ee-340f-0dd7-1944-0bd0750732d6/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "9e2864ee-340f-0dd7-1944-0bd0750732d6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Default MFA Policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8ea4081f-f0e8-487a-83c6-5ab1d1a1bfff",
                            "push": {
                                "enabled": false
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": false
                            },
                            "pushTimeout": {
                                "duration": 40,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 10,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "restrictive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.220Z",
                "createdAt": "2022-03-06T10:32:49.095Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/12eef8a9-cd34-45cc-ab73-3d3bdf33142a"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/12eef8a9-cd34-45cc-ab73-3d3bdf33142a/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "12eef8a9-cd34-45cc-ab73-3d3bdf33142a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1671537273",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 1,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true,
                                "numberMatching": {
                                    "enabled": true
                                }
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 10,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 14,
                            "timeUnit": "HOURS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-23T15:00:26.662Z",
                "createdAt": "2022-12-20T11:54:34.233Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/13cbe279-1ea2-49de-af5a-1b153a663a7e"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/13cbe279-1ea2-49de-af5a-1b153a663a7e/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "13cbe279-1ea2-49de-af5a-1b153a663a7e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1717410507",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.327Z",
                "createdAt": "2024-06-03T10:28:27.975Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15337f49-4cff-4b6f-a338-0831ab815286"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/33163ff8-5803-46bf-a558-bd7aeb07d590"
                    }
                },
                "id": "15337f49-4cff-4b6f-a338-0831ab815286",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Policy name - updated after creation",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "fido2PolicyId": "33163ff8-5803-46bf-a558-bd7aeb07d590",
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.376Z",
                "createdAt": "2022-12-01T12:37:06.588Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15d0474a-9271-489f-9eb6-de48f3284d47"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15d0474a-9271-489f-9eb6-de48f3284d47/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "15d0474a-9271-489f-9eb6-de48f3284d47",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1738511919",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 60,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-02-02T15:58:40.516Z",
                "createdAt": "2025-02-02T15:58:40.516Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15e03117-7a2e-4f11-b510-3ae3e4c2c004"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/15e03117-7a2e-4f11-b510-3ae3e4c2c004/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "15e03117-7a2e-4f11-b510-3ae3e4c2c004",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1728290330",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-08T17:02:49.181Z",
                "createdAt": "2024-10-07T08:38:50.535Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/1c15f5ab-5b4a-479a-a5b7-835ca16c25a6"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "1c15f5ab-5b4a-479a-a5b7-835ca16c25a6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy7",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": true,
                "updatedAt": "2024-09-19T09:15:25.392Z",
                "createdAt": "2022-04-12T14:19:57.490Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/1e87f3ad-110f-49fc-b071-8abfc61d93bb"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/1e87f3ad-110f-49fc-b071-8abfc61d93bb/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "1e87f3ad-110f-49fc-b071-8abfc61d93bb",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1727168920",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-24T09:08:40.449Z",
                "createdAt": "2024-09-24T09:08:40.449Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/20253636-865b-4def-98ba-8386fee8255f"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/20253636-865b-4def-98ba-8386fee8255f/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "20253636-865b-4def-98ba-8386fee8255f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Passwordless - Auto Generated",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "f42b3dcb-3ec2-4be3-97f2-fcc6f4ee6528",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": false
                            },
                            "deviceAuthorization": {
                                "enabled": false
                            },
                            "pushTimeout": {
                                "duration": 40,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 20,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "restrictive"
                        },
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": false
                            },
                            "deviceAuthorization": {
                                "enabled": false
                            },
                            "pushTimeout": {
                                "duration": 40,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 10,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "restrictive"
                        }
                    ]
                },
                "totp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.412Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/24b2eb67-5d77-4b4f-a2eb-20d994dbc6b4"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/24b2eb67-5d77-4b4f-a2eb-20d994dbc6b4/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "24b2eb67-5d77-4b4f-a2eb-20d994dbc6b4",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1660132138",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "f42b3dcb-3ec2-4be3-97f2-fcc6f4ee6528",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.447Z",
                "createdAt": "2022-08-10T11:48:58.579Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3061b9fe-2170-41c2-a80d-2f40db69c588"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3061b9fe-2170-41c2-a80d-2f40db69c588/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "3061b9fe-2170-41c2-a80d-2f40db69c588",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "MFA policy created on 1724158838",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true,
                                "numberMatching": {
                                    "enabled": true
                                }
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-12T10:51:37.916Z",
                "createdAt": "2024-08-20T13:00:38.459Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3a4cf26a-1c27-4b6d-9ebc-173d4cf85d1b"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3a4cf26a-1c27-4b6d-9ebc-173d4cf85d1b/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "3a4cf26a-1c27-4b6d-9ebc-173d4cf85d1b",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - phasing out email - with notification policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-28T11:16:10.577Z",
                "createdAt": "2025-01-12T11:38:41.164Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3bd049fe-003a-4f87-bf59-4150113aec57"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/3bd049fe-003a-4f87-bf59-4150113aec57/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "3bd049fe-003a-4f87-bf59-4150113aec57",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1717410234",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.518Z",
                "createdAt": "2024-06-03T10:23:54.902Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/400f516c-7965-4402-94b8-0caf05ddd78e"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/400f516c-7965-4402-94b8-0caf05ddd78e/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "400f516c-7965-4402-94b8-0caf05ddd78e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - name updated after creation",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.553Z",
                "createdAt": "2023-03-13T11:13:21.820Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/407aea5b-3e86-4b0e-98b6-195d49b39c26"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/407aea5b-3e86-4b0e-98b6-195d49b39c26/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "407aea5b-3e86-4b0e-98b6-195d49b39c26",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1739962752",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 60,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-02-19T10:59:12.195Z",
                "createdAt": "2025-02-19T10:59:12.195Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/4a209c77-072b-4d4b-82bf-12158bd43cc7"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/4a209c77-072b-4d4b-82bf-12158bd43cc7/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "4a209c77-072b-4d4b-82bf-12158bd43cc7",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1675601281",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pairingKeyLifetime": {
                                "duration": 45,
                                "timeUnit": "MINUTES"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.596Z",
                "createdAt": "2023-02-05T12:48:04.974Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/4e31860c-ab11-4c2d-b74d-fbbf7e958711"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/4e31860c-ab11-4c2d-b74d-fbbf7e958711/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "4e31860c-ab11-4c2d-b74d-fbbf7e958711",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1726740543",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T10:09:04.646Z",
                "createdAt": "2024-09-19T10:09:04.646Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/546d2f36-61ce-4d22-ac7d-0f4972a684e3"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/546d2f36-61ce-4d22-ac7d-0f4972a684e3/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "546d2f36-61ce-4d22-ac7d-0f4972a684e3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1726489121",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.637Z",
                "createdAt": "2024-09-16T12:18:42.766Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/562a1e92-35aa-4c31-a461-9267da7047c8"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/562a1e92-35aa-4c31-a461-9267da7047c8/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "562a1e92-35aa-4c31-a461-9267da7047c8",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1726740649",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T10:10:49.724Z",
                "createdAt": "2024-09-19T10:10:49.724Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/56c028ca-78ab-4bb0-a4ed-9e175251a690"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/56c028ca-78ab-4bb0-a4ed-9e175251a690/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "56c028ca-78ab-4bb0-a4ed-9e175251a690",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1727095917",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-23T12:51:57.904Z",
                "createdAt": "2024-09-23T12:51:57.904Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/57743477-c6b8-45fc-ab11-9af7446d866c"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/57743477-c6b8-45fc-ab11-9af7446d866c/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "57743477-c6b8-45fc-ab11-9af7446d866c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1726489506",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.677Z",
                "createdAt": "2024-09-16T12:25:06.954Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/5a0a0950-8a81-4739-b12a-f4d6a11c7a82"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "5a0a0950-8a81-4739-b12a-f4d6a11c7a82",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "mfa_policy_1",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.694Z",
                "createdAt": "2022-05-10T10:01:14.625Z",
                "default": true
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/61cf9806-1d18-4eda-92c0-109fc79d4495"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/61cf9806-1d18-4eda-92c0-109fc79d4495/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "61cf9806-1d18-4eda-92c0-109fc79d4495",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - phasing out email - updated 2",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-12-03T15:48:45.658Z",
                "createdAt": "2022-05-19T11:10:07.172Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/702d420a-1aa7-4d11-9da3-8ad13c0620b5"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/702d420a-1aa7-4d11-9da3-8ad13c0620b5/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "702d420a-1aa7-4d11-9da3-8ad13c0620b5",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1687331798",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "EMAIL_THEN_SMS",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8370dc35-a30d-45b6-9ff5-58aa943fca7d",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.768Z",
                "createdAt": "2023-06-21T07:16:38.759Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/74c93d53-366c-4c8c-b4cf-c228933091cd"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "74c93d53-366c-4c8c-b4cf-c228933091cd",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Passwordless - Auto Generated 1",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.785Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/7793ae56-3db6-4ab6-be7b-df80100cbae3"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/7793ae56-3db6-4ab6-be7b-df80100cbae3/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "7793ae56-3db6-4ab6-be7b-df80100cbae3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - name updated",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.817Z",
                "createdAt": "2023-03-13T15:15:01.597Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/7e758618-e52f-4c87-89d1-931c18895afb"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/a8e89aed-80f9-4a56-8631-95a65583d20f"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/7e758618-e52f-4c87-89d1-931c18895afb/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "7e758618-e52f-4c87-89d1-931c18895afb",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1671537068",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pushLimit": {
                                "count": 5,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "a8e89aed-80f9-4a56-8631-95a65583d20f"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.850Z",
                "createdAt": "2022-12-20T11:51:08.918Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8992b573-1c1b-4a39-8935-b3ec86b5c7ee"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8992b573-1c1b-4a39-8935-b3ec86b5c7ee/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "8992b573-1c1b-4a39-8935-b3ec86b5c7ee",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy8 - phasing out email - updated",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8370dc35-a30d-45b6-9ff5-58aa943fca7d",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.886Z",
                "createdAt": "2023-07-02T10:06:19.991Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8bec1d08-c0fb-4d34-b472-2610199704c7"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "notificationsPolicy": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/notificationsPolicies/162ff6b3-43d1-4cde-86ae-425d22048b2e"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/8bec1d08-c0fb-4d34-b472-2610199704c7/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "8bec1d08-c0fb-4d34-b472-2610199704c7",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1741177336",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "notificationsPolicy": {
                    "id": "162ff6b3-43d1-4cde-86ae-425d22048b2e"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 4,
                        "coolDown": {
                            "duration": 150,
                            "timeUnit": "SECONDS"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-03-05T12:22:16.162Z",
                "createdAt": "2025-03-05T12:22:16.162Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/91c6f8f7-bcf2-4727-9b03-45d801b933d1"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/91c6f8f7-bcf2-4727-9b03-45d801b933d1/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "91c6f8f7-bcf2-4727-9b03-45d801b933d1",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1727265670",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 5,
                        "coolDown": {
                            "duration": 360,
                            "timeUnit": "SECONDS"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-03-05T11:54:42.589Z",
                "createdAt": "2024-09-25T12:01:10.892Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/a3e7a1d1-90ea-4e63-aa81-23383ba1c004"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "notificationsPolicy": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/notificationsPolicies/162ff6b3-43d1-4cde-86ae-425d22048b2e"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/a3e7a1d1-90ea-4e63-aa81-23383ba1c004/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "a3e7a1d1-90ea-4e63-aa81-23383ba1c004",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "MFA policy - with specific notification policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "notificationsPolicy": {
                    "id": "162ff6b3-43d1-4cde-86ae-425d22048b2e"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 48,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 10,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-01-28T11:52:33.443Z",
                "createdAt": "2025-01-28T11:18:44.231Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/aa3d4353-55d2-412b-ae0f-83237fa80fcc"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/aa3d4353-55d2-412b-ae0f-83237fa80fcc/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "aa3d4353-55d2-412b-ae0f-83237fa80fcc",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1687269169",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "EMAIL_THEN_SMS",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8370dc35-a30d-45b6-9ff5-58aa943fca7d",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:25.921Z",
                "createdAt": "2023-06-20T13:52:49.650Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/bf17406c-e195-464e-b9ec-e152069175c7"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/bf17406c-e195-464e-b9ec-e152069175c7/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "bf17406c-e195-464e-b9ec-e152069175c7",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__16_sep",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-11-21T11:20:06.441Z",
                "createdAt": "2024-09-16T12:25:19.709Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/cd362823-a4d4-4fc2-98e8-b86ab96f0615"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "cd362823-a4d4-4fc2-98e8-b86ab96f0615",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Environment Policy6",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": true,
                "updatedAt": "2024-09-19T09:15:26.008Z",
                "createdAt": "2022-12-01T11:47:51.426Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/cf99cf35-954b-47bb-b567-c7d51427bc36"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/cf99cf35-954b-47bb-b567-c7d51427bc36/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "cf99cf35-954b-47bb-b567-c7d51427bc36",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1687268928",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "EMAIL_THEN_SMS",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8370dc35-a30d-45b6-9ff5-58aa943fca7d",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:26.043Z",
                "createdAt": "2023-06-20T13:48:48.659Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/cfa87228-4168-45af-b07b-b8d3a301e5f4"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/cfa87228-4168-45af-b07b-b8d3a301e5f4/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "cfa87228-4168-45af-b07b-b8d3a301e5f4",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1728224271",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-10-06T14:17:51.419Z",
                "createdAt": "2024-10-06T14:17:51.419Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/d3ae54fe-4c7c-4d43-be57-a838e9abdb1f"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "securityKey": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "platform": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fidoPolicies/1cdae3bc-93bf-44dd-b999-b7abaa210082"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "d3ae54fe-4c7c-4d43-be57-a838e9abdb1f",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Policy name - updated 2",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "securityKey": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "platform": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "fidoPolicyId": "1cdae3bc-93bf-44dd-b999-b7abaa210082"
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": true,
                "updatedAt": "2024-09-19T09:15:26.060Z",
                "createdAt": "2022-12-01T11:55:21.084Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/d5fdce59-edee-4dcb-92b2-5c60b52365e0"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/d5fdce59-edee-4dcb-92b2-5c60b52365e0/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "d5fdce59-edee-4dcb-92b2-5c60b52365e0",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "3_june_policy",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:26.098Z",
                "createdAt": "2024-06-03T10:26:07.754Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/e0b742bf-1d8f-4fdd-a0c8-3962c47cc421"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/e0b742bf-1d8f-4fdd-a0c8-3962c47cc421/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "e0b742bf-1d8f-4fdd-a0c8-3962c47cc421",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1687269141",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "EMAIL_THEN_SMS",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "8370dc35-a30d-45b6-9ff5-58aa943fca7d",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-09-19T09:15:26.132Z",
                "createdAt": "2023-06-20T13:52:22.185Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/e9e34bed-35c1-4a37-aa8b-37671861496c"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/e9e34bed-35c1-4a37-aa8b-37671861496c/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "e9e34bed-35c1-4a37-aa8b-37671861496c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1738850707",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 8
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "uriParameters": {
                        "issuer": "Corporate spreadsheet app"
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 60,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-02-06T14:05:07.631Z",
                "createdAt": "2025-02-06T14:05:07.631Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/ed1a309f-25e1-4ab3-8f23-ea7d0e11cd9e"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "applications": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/ed1a309f-25e1-4ab3-8f23-ea7d0e11cd9e/applications"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "ed1a309f-25e1-4ab3-8f23-ea7d0e11cd9e",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "deviceAuthPolicy__1726988329",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "SMS_THEN_EMAIL",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": true,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    },
                    "applications": [
                        {
                            "id": "28e07e36-63d2-46d3-8743-dbdd51c58ee0",
                            "push": {
                                "enabled": true
                            },
                            "otp": {
                                "enabled": true
                            },
                            "autoEnrollment": {
                                "enabled": true
                            },
                            "deviceAuthorization": {
                                "enabled": true,
                                "extraVerification": "permissive"
                            },
                            "pushTimeout": {
                                "duration": 120,
                                "timeUnit": "SECONDS"
                            },
                            "pairingKeyLifetime": {
                                "duration": 24,
                                "timeUnit": "HOURS"
                            },
                            "pushLimit": {
                                "count": 4,
                                "timePeriod": {
                                    "duration": 20,
                                    "timeUnit": "MINUTES"
                                },
                                "lockDuration": {
                                    "duration": 30,
                                    "timeUnit": "MINUTES"
                                }
                            },
                            "pairingDisabled": false,
                            "integrityDetection": "permissive"
                        }
                    ]
                },
                "totp": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "promptForNicknameOnPairing": true,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": false,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2024-10-06T13:52:13.723Z",
                "createdAt": "2024-09-22T06:58:49.948Z",
                "default": false
            },
            {
                "_links": {
                    "self": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/deviceAuthenticationPolicies/f0b2b3b2-72d3-4573-84d9-52a85479445c"
                    },
                    "environment": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                    },
                    "fido2": {
                        "href": "https://api.pingone.eu/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/fido2Policies/8401cfde-1d39-4c7c-b886-d861614929e9"
                    }
                },
                "id": "f0b2b3b2-72d3-4573-84d9-52a85479445c",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "MFA using SMS",
                "authentication": {
                    "deviceSelection": "DEFAULT_TO_FIRST"
                },
                "newDeviceNotification": "NONE",
                "sms": {
                    "enabled": true,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "email": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "mobile": {
                    "enabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "totp": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 2,
                                "timeUnit": "MINUTES"
                            }
                        }
                    }
                },
                "voice": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "otp": {
                        "failure": {
                            "count": 3,
                            "coolDown": {
                                "duration": 0,
                                "timeUnit": "MINUTES"
                            }
                        },
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "MINUTES"
                        },
                        "otpLength": 6
                    }
                },
                "fido2": {
                    "enabled": false,
                    "pairingDisabled": false,
                    "failure": {
                        "count": 3,
                        "coolDown": {
                            "duration": 2,
                            "timeUnit": "MINUTES"
                        }
                    }
                },
                "rememberMe": {
                    "web": {
                        "enabled": true,
                        "lifeTime": {
                            "duration": 30,
                            "timeUnit": "DAYS"
                        }
                    }
                },
                "forSignOnPolicy": false,
                "updatedAt": "2025-02-03T12:16:25.041Z",
                "createdAt": "2022-05-19T11:10:52.838Z",
                "default": false
            }
        ]
    },
    "count": 42,
    "size": 42
}