Read All Direct-mapped Users
GET {{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers
The GET {{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers operation returns information about all users in the specified environment. The response is limited to a maximum of 200 results.
Query parameters
| Parameter | Description |
|---|---|
|
A SCIM query to select users. For information about SCIM syntax and operators, refer to Filtering collections. |
|
Maximum number of users to return. |
To filter the results when retrieving users, Read All Direct-mapped Users (search) is preferred over this request with query paramters.
Example Request
-
cURL
-
C#
-
Go
-
HTTP
-
Java
-
jQuery
-
NodeJS
-
Python
-
PHP
-
Ruby
-
Swift
curl --location --globoff '{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers' \
--header 'Authorization: Bearer {{accessToken}}'
var options = new RestClientOptions("{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers")
{
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 := "{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers"
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}}/v2/DirectMappedUsers HTTP/1.1
Host: {{scimPath}}
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("{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers")
.method("GET", body)
.addHeader("Authorization", "Bearer {{accessToken}}")
.build();
Response response = client.newCall(request).execute();
var settings = {
"url": "{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers",
"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': '{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers',
'headers': {
'Authorization': 'Bearer {{accessToken}}'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});
import requests
url = "{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers"
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('{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers');
$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("{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers")
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: "{{scimPath}}/environments/{{envID}}/v2/DirectMappedUsers")!,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
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:ListResponse"
],
"totalResults": 48,
"itemsPerPage": 48,
"Resources": [
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "328b2d99-59fd-41e7-8469-2172655fbbae",
"meta": {
"created": "2021-05-12T18:32:15.204Z",
"lastModified": "2023-02-16T13:36:36.098Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/328b2d99-59fd-41e7-8469-2172655fbbae"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "115 Randy Park",
"locality": "Cookshire-Eaton",
"countryCode": "CA"
},
"email": "hearthfield_berengere@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lastSignOn": {
"at": "2022-08-17T01:21:30.116Z",
"remoteIp": "174.1.62.19"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Hearthfield Bérengère",
"given": "Hearthfield",
"family": "Bérengère"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "hearthfield_bérengère",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "e5c0dde9-3d7c-4301-9284-e709aa0cf583",
"meta": {
"created": "2021-05-12T18:32:15.400Z",
"lastModified": "2021-05-12T18:32:15.400Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/e5c0dde9-3d7c-4301-9284-e709aa0cf583"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "5 Starling Crossing",
"locality": "Sainte-Anne-des-Plaines",
"countryCode": "CA"
},
"email": "wingar_helena@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Wingar Hélèna",
"given": "Wingar",
"family": "Hélèna"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "wingar_hélèna",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "455a0384-a0a2-4bc7-98a2-11fdac7b0df8",
"meta": {
"created": "2021-05-12T18:32:16.089Z",
"lastModified": "2021-05-12T18:32:16.089Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/455a0384-a0a2-4bc7-98a2-11fdac7b0df8"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "4972 Upham Drive",
"locality": "Berthierville",
"countryCode": "CA"
},
"email": "augar_maily@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Augar Maïly",
"given": "Augar",
"family": "Maïly"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "augar_maïly",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "67e7868e-4609-482b-8333-70f6342ee311",
"meta": {
"created": "2021-05-12T18:32:15.882Z",
"lastModified": "2021-05-12T18:32:15.882Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/67e7868e-4609-482b-8333-70f6342ee311"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "115 Randy Park",
"locality": "Cookshire-Eaton",
"countryCode": "CA"
},
"email": "mochar_estee@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Mochar Estée",
"given": "Mochar",
"family": "Estée"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "mochar_estée",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "0c507e67-4533-4870-b59b-6d0591ab87e0",
"meta": {
"created": "2021-05-12T18:32:15.591Z",
"lastModified": "2021-05-12T18:32:15.591Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/0c507e67-4533-4870-b59b-6d0591ab87e0"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "50 Springview Lane",
"locality": "Beaconsfield",
"countryCode": "CA"
},
"email": "cicerone_genevieve@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Cicerone Geneviève",
"given": "Cicerone",
"family": "Geneviève"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "cicerone_geneviève",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "f2f57453-d8a8-4e4c-9e17-a42c8e2f3129",
"meta": {
"created": "2021-05-12T18:32:16.281Z",
"lastModified": "2021-05-12T18:32:16.281Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/f2f57453-d8a8-4e4c-9e17-a42c8e2f3129"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "48 Randy Way",
"locality": "Summerside",
"countryCode": "CA"
},
"email": "volet_chloe@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Volet Chloé",
"given": "Volet",
"family": "Chloé"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "volet_chloé",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "6e6271f7-fd8e-4dba-ae20-a10b17aecd41",
"meta": {
"created": "2021-05-12T18:32:16.957Z",
"lastModified": "2021-05-12T18:32:16.957Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/6e6271f7-fd8e-4dba-ae20-a10b17aecd41"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "520 Kennedy Hill",
"locality": "Providence",
"region": "RI",
"countryCode": "US"
},
"email": "abbitt_kira@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Abbitt Kira",
"given": "Abbitt",
"family": "Kira"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "abbitt_kira",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "03becde9-ad5b-4e66-b144-dee6cd49d55a",
"meta": {
"created": "2021-05-12T18:32:16.665Z",
"lastModified": "2021-05-12T18:32:16.665Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/03becde9-ad5b-4e66-b144-dee6cd49d55a"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "93 Laurel Drive",
"locality": "Portland",
"region": "OR",
"countryCode": "US"
},
"email": "aarons_barthel@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Aarons Barthel",
"given": "Aarons",
"family": "Barthel"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "aarons_barthel",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "2ceb55e8-a9f0-4762-a510-1c8ca825e288",
"meta": {
"created": "2021-05-12T18:32:16.475Z",
"lastModified": "2021-05-12T18:32:16.475Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/2ceb55e8-a9f0-4762-a510-1c8ca825e288"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "1 Fieldstone Parkway",
"locality": "Hudson Bay",
"countryCode": "CA"
},
"email": "2030@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "姜 俊誉",
"given": "姜",
"family": "俊誉"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "姜_俊誉",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "c41e5eed-7276-4dc7-8541-ce7995f68ec5",
"meta": {
"created": "2021-05-12T18:32:17.158Z",
"lastModified": "2021-05-12T18:32:17.158Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/c41e5eed-7276-4dc7-8541-ce7995f68ec5"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "498 Farwell Point",
"locality": "Orange",
"region": "CA",
"countryCode": "US"
},
"email": "adamovicz_normy@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Adamovicz Normy",
"given": "Adamovicz",
"family": "Normy"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "adamovicz_normy",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "ebee91f2-4fb9-467d-819b-1b0390f2ba0b",
"meta": {
"created": "2021-05-12T18:32:17.359Z",
"lastModified": "2021-05-12T18:32:17.359Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/ebee91f2-4fb9-467d-819b-1b0390f2ba0b"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "9 Canary Way",
"locality": "Duluth",
"region": "MN",
"countryCode": "US"
},
"email": "aingell_clara@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Aingell Clara",
"given": "Aingell",
"family": "Clara"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "aingell_clara",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "3d19bfe0-ec4f-4406-ab79-2a2336674ab0",
"meta": {
"created": "2021-05-12T18:32:17.559Z",
"lastModified": "2021-05-12T18:32:17.559Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/3d19bfe0-ec4f-4406-ab79-2a2336674ab0"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "84 Longview Terrace",
"locality": "Kansas City",
"region": "MO",
"countryCode": "US"
},
"email": "albasiny_karla@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Albasiny Karla",
"given": "Albasiny",
"family": "Karla"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "albasiny_karla",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "d2e9eea8-baa0-4978-bb9a-b126de50f9b9",
"meta": {
"created": "2021-05-12T18:32:18.144Z",
"lastModified": "2021-05-12T18:32:18.144Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/d2e9eea8-baa0-4978-bb9a-b126de50f9b9"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "12799 Scofield Park",
"locality": "San Antonio",
"region": "TX",
"countryCode": "US"
},
"email": "anscombe_eve@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Anscombe Eve",
"given": "Anscombe",
"family": "Eve"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "anscombe_eve",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "1862235a-1373-4b11-b4ee-62d9c1b2f9b7",
"meta": {
"created": "2021-05-12T18:32:18.570Z",
"lastModified": "2021-05-12T18:32:18.570Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/1862235a-1373-4b11-b4ee-62d9c1b2f9b7"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "59 Luster Crossing",
"locality": "Harrisburg",
"region": "PA",
"countryCode": "US"
},
"email": "antoons_walton@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Antoons Walton",
"given": "Antoons",
"family": "Walton"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "antoons_walton",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "7aca35f6-5d66-428a-917e-c9d645a8fa01",
"meta": {
"created": "2021-05-12T18:32:17.949Z",
"lastModified": "2021-05-12T18:32:17.949Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/7aca35f6-5d66-428a-917e-c9d645a8fa01"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "146 Wayridge Street",
"locality": "Lexington",
"region": "KY",
"countryCode": "US"
},
"email": "andrieu_lief@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Andrieu Lief",
"given": "Andrieu",
"family": "Lief"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "andrieu_lief",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "fc381b52-63b0-4e8d-af67-bdb9bc64564a",
"meta": {
"created": "2021-05-12T18:32:17.753Z",
"lastModified": "2021-05-12T18:32:17.753Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/fc381b52-63b0-4e8d-af67-bdb9bc64564a"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "9241 Manitowish Point",
"locality": "Portland",
"region": "OR",
"countryCode": "US"
},
"email": "allen_burlie@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Allen Burlie",
"given": "Allen",
"family": "Burlie"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "allen_burlie",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "c114a134-2fbc-44fb-8e32-eef8dd900d34",
"meta": {
"created": "2021-05-12T18:32:18.775Z",
"lastModified": "2021-05-12T18:32:18.775Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/c114a134-2fbc-44fb-8e32-eef8dd900d34"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "3 Gerald Terrace",
"locality": "Oklahoma City",
"region": "OK",
"countryCode": "US"
},
"email": "argue_ashlie@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Argue Ashlie",
"given": "Argue",
"family": "Ashlie"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "argue_ashlie",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "57850a81-4b20-4b2e-b6ab-833f517ec98d",
"meta": {
"created": "2021-05-12T18:32:19.676Z",
"lastModified": "2021-05-12T18:32:19.775Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/57850a81-4b20-4b2e-b6ab-833f517ec98d"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "29 Forest Place",
"locality": "Noupoort",
"countryCode": "ZA"
},
"email": "tremberth_gisele@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Tremberth Gisèle",
"given": "Tremberth",
"family": "Gisèle"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "tremberth_gisèle",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "e4fe4223-fa02-40f1-8bed-f20a3611ecfe",
"meta": {
"created": "2021-05-12T18:32:19.899Z",
"lastModified": "2021-05-12T18:32:19.997Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/e4fe4223-fa02-40f1-8bed-f20a3611ecfe"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "2207 Arkansas Drive",
"locality": "Knysna",
"countryCode": "ZA"
},
"email": "romaint_audreanne@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Romaint Audréanne",
"given": "Romaint",
"family": "Audréanne"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "romaint_audréanne",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "da93720d-afff-4feb-9d0c-66dff041a850",
"meta": {
"created": "2021-05-12T18:32:19.428Z",
"lastModified": "2021-05-12T18:32:19.541Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/da93720d-afff-4feb-9d0c-66dff041a850"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "32 Sundown Junction",
"locality": "Chivhu",
"countryCode": "ZW"
},
"email": "1993821@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "李 俞凯",
"given": "李",
"family": "俞凯"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "李_俞凯",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "b054f740-4f75-4b76-8d81-03d9085b309a",
"meta": {
"created": "2021-05-12T18:32:21.067Z",
"lastModified": "2021-05-12T18:32:21.175Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/b054f740-4f75-4b76-8d81-03d9085b309a"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "64 Swallow Place",
"locality": "Cẩm Phả",
"countryCode": "VN"
},
"email": "mecco_marie-josée@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Mecco Marie-josée",
"given": "Mecco",
"family": "Marie-josée"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "mecco_marie-josée",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "024ab70c-6d86-4548-93f5-25a7dd94c76f",
"meta": {
"created": "2021-05-12T18:32:20.122Z",
"lastModified": "2021-05-12T18:32:20.223Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/024ab70c-6d86-4548-93f5-25a7dd94c76f"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "70151 Scofield Parkway",
"locality": "Bultfontein",
"countryCode": "ZA"
},
"email": "kinnaird_salomé@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Kinnaird Salomé",
"given": "Kinnaird",
"family": "Salomé"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "kinnaird_salomé",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "a312fef1-f93a-4713-b1d5-4c53ff1fbcdf",
"meta": {
"created": "2021-05-12T18:32:20.617Z",
"lastModified": "2021-05-12T18:32:20.720Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/a312fef1-f93a-4713-b1d5-4c53ff1fbcdf"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "52 American Ash Alley",
"locality": "Pongola",
"countryCode": "ZA"
},
"email": "康_明美@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "康 明美",
"given": "康",
"family": "明美"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "康_明美",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "45fad821-a2d0-4f1a-8356-9f3aad466ae5",
"meta": {
"created": "2021-05-12T18:32:20.852Z",
"lastModified": "2021-05-12T18:32:20.947Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/45fad821-a2d0-4f1a-8356-9f3aad466ae5"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "4 Dapin Avenue",
"locality": "Ghayl Bā Wazīr",
"countryCode": "YE"
},
"email": "copas_marie-josée@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Copas Marie-josée",
"given": "Copas",
"family": "Marie-josée"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "copas_marie-josée",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "5a9fbf8f-8256-44ed-905e-6a8067b521fb",
"meta": {
"created": "2021-05-12T18:32:21.298Z",
"lastModified": "2021-05-12T18:32:21.407Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/5a9fbf8f-8256-44ed-905e-6a8067b521fb"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "68515 Nobel Circle",
"locality": "Quận Năm",
"countryCode": "VN"
},
"email": "romi_wá@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Romi Wá",
"given": "Romi",
"family": "Wá"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "romi_wá",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "3ea42482-a329-4ced-80dd-2b9ff6b7878b",
"meta": {
"created": "2021-05-12T18:32:20.343Z",
"lastModified": "2021-05-12T18:32:20.491Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/3ea42482-a329-4ced-80dd-2b9ff6b7878b"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "5 Ridgeway Drive",
"locality": "Mogwase",
"countryCode": "ZA"
},
"email": "lorkin_athéna@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Lorkin Athéna",
"given": "Lorkin",
"family": "Athéna"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "lorkin_athéna",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "d9f431b5-0180-4189-886e-082d7acb7e73",
"meta": {
"created": "2021-05-12T18:32:19.024Z",
"lastModified": "2021-05-12T18:32:19.024Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/d9f431b5-0180-4189-886e-082d7acb7e73"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "577 Forest Pass",
"locality": "Washington",
"region": "DC",
"countryCode": "US"
},
"email": "arnot_cathee@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Arnot Cathee",
"given": "Arnot",
"family": "Cathee"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "arnot_cathee",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "3bf901b0-9538-4797-b561-ca949c9588b8",
"meta": {
"created": "2021-05-12T18:32:19.229Z",
"lastModified": "2021-05-12T18:32:19.229Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/3bf901b0-9538-4797-b561-ca949c9588b8"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "97162 Buell Drive",
"locality": "Honolulu",
"region": "HI",
"countryCode": "US"
},
"email": "aronin_annamaria@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Aronin Annamaria",
"given": "Aronin",
"family": "Annamaria"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "aronin_annamaria",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "d02321a0-2830-4795-af59-164d5b7aa7ed",
"meta": {
"created": "2021-05-12T18:32:22.007Z",
"lastModified": "2021-05-12T18:32:22.108Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/d02321a0-2830-4795-af59-164d5b7aa7ed"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "4728 Vahlen Park",
"locality": "Đình Lập",
"countryCode": "VN"
},
"email": "荣_远帆@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "荣 远帆",
"given": "荣",
"family": "远帆"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "荣_远帆",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "f867cd6f-d814-462f-94fa-83fa828dabad",
"meta": {
"created": "2021-05-12T18:32:21.771Z",
"lastModified": "2021-05-12T18:32:21.871Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/f867cd6f-d814-462f-94fa-83fa828dabad"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "243 Rigney Place",
"locality": "A Yun Pa",
"countryCode": "VN"
},
"email": "battersby_estève@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Battersby Estève",
"given": "Battersby",
"family": "Estève"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "battersby_estève",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "61e51f7d-1195-4182-a77b-a076deed219e",
"meta": {
"created": "2021-05-12T18:32:22.234Z",
"lastModified": "2021-05-12T18:32:22.331Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/61e51f7d-1195-4182-a77b-a076deed219e"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "85 Eliot Hill",
"locality": "Kyzyldzhar",
"countryCode": "UZ"
},
"email": "keaves_zhì@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Keaves Zhì",
"given": "Keaves",
"family": "Zhì"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "keaves_zhì",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "5cc112d2-35cb-4f53-8226-5b692b54dcbc",
"meta": {
"created": "2021-05-12T18:32:21.535Z",
"lastModified": "2021-05-12T18:32:21.639Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/5cc112d2-35cb-4f53-8226-5b692b54dcbc"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "196 Eagan Pass",
"locality": "Thị Trấn Phù Yên",
"countryCode": "VN"
},
"email": "romanelli_michèle@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Romanelli Michèle",
"given": "Romanelli",
"family": "Michèle"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "romanelli_michèle",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "f4438757-d541-4c58-a9a3-536cd03c0de6",
"meta": {
"created": "2021-05-12T18:32:22.687Z",
"lastModified": "2021-05-12T18:32:22.789Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/f4438757-d541-4c58-a9a3-536cd03c0de6"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "5 Wayridge Parkway",
"locality": "Palmitas",
"countryCode": "UY"
},
"email": "vlasenko_Åslög@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Vlasenko Åslög",
"given": "Vlasenko",
"family": "Åslög"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "vlasenko_Åslög",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "5f7582a1-b1ae-41a9-8f55-eb8a728965eb",
"meta": {
"created": "2021-05-12T18:32:22.458Z",
"lastModified": "2021-05-12T18:32:22.559Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/5f7582a1-b1ae-41a9-8f55-eb8a728965eb"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "033 Clemons Lane",
"locality": "Oqtosh",
"countryCode": "UZ"
},
"email": "brimelow_tán@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Brimelow Tán",
"given": "Brimelow",
"family": "Tán"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "brimelow_tán",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "06ef092c-9bbf-4870-9bdb-d10b474c8029",
"meta": {
"created": "2021-05-12T18:32:22.915Z",
"lastModified": "2021-05-12T18:32:23.020Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/06ef092c-9bbf-4870-9bdb-d10b474c8029"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "8804 Mesta Pass",
"locality": "Belén",
"countryCode": "UY"
},
"email": "tees_cinéma@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Tees Cinéma",
"given": "Tees",
"family": "Cinéma"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "tees_cinéma",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "4a9d3806-e939-4baa-a68a-243fe5db9aff",
"meta": {
"created": "2021-05-12T18:32:23.392Z",
"lastModified": "2021-05-12T18:32:23.490Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/4a9d3806-e939-4baa-a68a-243fe5db9aff"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "9 Rieder Terrace",
"locality": "Tatariv",
"countryCode": "UA"
},
"email": "keitley_léa@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Keitley Léa",
"given": "Keitley",
"family": "Léa"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "keitley_léa",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "1d5eca17-c2ca-43db-ae59-179e2e6e47b3",
"meta": {
"created": "2021-05-12T18:32:23.153Z",
"lastModified": "2021-05-12T18:32:23.253Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/1d5eca17-c2ca-43db-ae59-179e2e6e47b3"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "7 Merrick Road",
"locality": "Batiovo",
"countryCode": "UA"
},
"email": "sheehy_nuó@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Sheehy Nuó",
"given": "Sheehy",
"family": "Nuó"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "sheehy_nuó",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "4ab9e48d-f9e0-42da-8205-4cfe3a12f45d",
"meta": {
"created": "2021-05-12T18:32:18.351Z",
"lastModified": "2021-11-05T16:19:50.065Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/4ab9e48d-f9e0-42da-8205-4cfe3a12f45d"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "3640 4th Park",
"locality": "Birmingham",
"region": "AL",
"countryCode": "US"
},
"email": "kbentley+antonik@pingidentity.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Antonik Adham",
"given": "Antonik",
"family": "Adham"
},
"population": {
"id": "0353b962-cf0b-4149-8d1b-084e33814924"
},
"username": "antonik_adham",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "e5d747ae-aae6-4c31-beaa-f61ca7f1fb73",
"meta": {
"created": "2021-05-12T18:32:23.637Z",
"lastModified": "2021-05-12T18:32:23.734Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/e5d747ae-aae6-4c31-beaa-f61ca7f1fb73"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "03583 Walton Junction",
"locality": "Kostyantynivka",
"countryCode": "UA"
},
"email": "enterle_agnès@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Enterle Agnès",
"given": "Enterle",
"family": "Agnès"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "enterle_agnès",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "e7db2d19-29f6-44e8-99ce-12a0321aba0d",
"meta": {
"created": "2021-05-12T18:32:23.866Z",
"lastModified": "2021-05-12T18:32:23.966Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/e7db2d19-29f6-44e8-99ce-12a0321aba0d"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"address": {
"streetAddress": "44 Packers Point",
"locality": "Uman’",
"countryCode": "UA"
},
"email": "schmidt_maéna@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"formatted": "Schmidt Maéna",
"given": "Schmidt",
"family": "Maéna"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "schmidt_maéna",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "60303b38-7b6d-4ba6-b26b-56de898fc919",
"meta": {
"created": "2021-10-08T18:01:04.363Z",
"lastModified": "2021-10-08T18:02:46.429Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/60303b38-7b6d-4ba6-b26b-56de898fc919"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"email": "do-not-send@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"given": "Test",
"family": "ApplicationUser"
},
"population": {
"id": "0b7795ac-c589-4311-82bd-b1a9caff7a6a"
},
"username": "app_user_1633716064",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "6cbd9261-4ec4-4912-a219-d0f00e6096e2",
"meta": {
"created": "2022-05-04T12:33:09.853Z",
"lastModified": "2023-03-21T14:22:10.641Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/6cbd9261-4ec4-4912-a219-d0f00e6096e2"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"email": "kbentley@pingidentity.com",
"emailVerified": false,
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"given": "kevin"
},
"population": {
"id": "89a7de36-c2ce-48d6-b453-9d7a7dd4dc3a"
},
"username": "kb",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "7c4d48fb-322f-4f0f-b4a3-7bf303377903",
"meta": {
"created": "2022-05-10T13:52:31.833Z",
"lastModified": "2022-05-10T13:52:31.833Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/7c4d48fb-322f-4f0f-b4a3-7bf303377903"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"email": "elmerfudd@example.com",
"enabled": true,
"identityProvider": {
"id": "5609001a-96db-422a-9507-2aa9905b21f5",
"type": "FACEBOOK"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"given": "Elmer",
"family": "Fudd"
},
"population": {
"id": "f5d70107-ee11-481c-a73d-f3d812808d76"
},
"username": "elmerfudd",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "1234134c-c5ae-492d-b5a5-3dc0235f7b8a",
"meta": {
"created": "2022-09-15T22:19:03.856Z",
"lastModified": "2022-09-15T22:19:05.245Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/1234134c-c5ae-492d-b5a5-3dc0235f7b8a"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"email": "do-not-send@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lastSignOn": {
"at": "2022-09-15T22:19:05.230Z",
"remoteIp": "73.153.46.187"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"given": "Test",
"family": "CustomResourceUser"
},
"population": {
"id": "288d1bd5-57c9-4425-b7be-495dc9c2ce06"
},
"username": "CustomResource_user_1663280344",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "a1dad115-5d2f-469d-9c02-de0523402995",
"meta": {
"created": "2023-01-24T15:34:00.960Z",
"lastModified": "2023-07-24T14:01:12.135Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/a1dad115-5d2f-469d-9c02-de0523402995"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"email": "marysample@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lastSignOn": {
"at": "2022-08-17T01:21:30.116Z",
"remoteIp": "174.1.62.19"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"given": "Mary",
"family": "Sample"
},
"population": {
"id": "6cf4ca75-0a3e-4e05-a151-bf7d761ae6f6"
},
"username": "marysample",
"verifyStatus": "ENABLED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "d98e9d08-96f5-43d6-a6ae-884e7ded31b5",
"meta": {
"created": "2023-03-21T17:07:28.994Z",
"lastModified": "2023-03-21T17:13:11.494Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/d98e9d08-96f5-43d6-a6ae-884e7ded31b5"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"email": "myEmail@example.com",
"enabled": true,
"identityProvider": {
"type": "PING_ONE"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"name": {
"given": "Test",
"family": "SimpleLoginUser"
},
"population": {
"id": "f758f55b-1d76-49b4-b867-381a37779b72"
},
"username": "simplelogin_user_1679418449",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "636dadca-d453-4459-bfa0-313fb78ffb35",
"meta": {
"created": "2023-11-06T15:24:06.688Z",
"lastModified": "2023-11-06T15:30:30.048Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/636dadca-d453-4459-bfa0-313fb78ffb35"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"enabled": true,
"identityProvider": {
"id": "5609001a-96db-422a-9507-2aa9905b21f5",
"type": "FACEBOOK"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"population": {
"id": "f5d70107-ee11-481c-a73d-f3d812808d76"
},
"username": "non-admin",
"verifyStatus": "NOT_INITIATED"
},
{
"schemas": [
"urn:pingidentity:schemas:2.0:DirectMappedUser"
],
"id": "de850ddc-8eb4-4f8d-8c19-122158fefab3",
"meta": {
"created": "2023-11-09T15:17:20.756Z",
"lastModified": "2023-11-09T15:17:20.756Z",
"resourceType": "User",
"location": "https://scim-api.pingone.com/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/v2/DirectMappedUsers/de850ddc-8eb4-4f8d-8c19-122158fefab3"
},
"environment": {
"id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
},
"account": {
"canAuthenticate": true,
"status": "OK"
},
"enabled": true,
"identityProvider": {
"id": "5609001a-96db-422a-9507-2aa9905b21f5",
"type": "FACEBOOK"
},
"lifecycle": {
"status": "ACCOUNT_OK"
},
"mfaEnabled": false,
"population": {
"id": "f5d70107-ee11-481c-a73d-f3d812808d76"
},
"username": "kbNew",
"verifyStatus": "NOT_INITIATED"
}
]
}