PingOne Platform APIs

Create Propagation Revision

 

POST {{apiPath}}/environments/{{envID}}/propagation/revisions

The POST {{apiPath}}/environments/{{envID}}/propagation/revisions endpoint creates a new propagation configuration that captures a snapshot of the current identity propagation plan, store, rule, and mapping settings associated with the specified environment resource.

This POST does not require a request body.

When you create a new revision, the create event automatically initiates identity store resynchronization. For large sets of identities, this process can take a while to complete.

Prerequisites

Headers

Authorization      Bearer {{accessToken}}

Content-Type      application/json

Body

raw ( application/json )

Example Request

  • cURL

  • C#

  • Go

  • HTTP

  • Java

  • jQuery

  • NodeJS

  • Python

  • PHP

  • Ruby

  • Swift

curl --location --globoff --request POST '{{apiPath}}/environments/{{envID}}/propagation/revisions' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{accessToken}}' \
--data ''
var options = new RestClientOptions("{{apiPath}}/environments/{{envID}}/propagation/revisions")
{
  MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer {{accessToken}}");
var body = @"";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main

import (
  "fmt"
  "strings"
  "net/http"
  "io"
)

func main() {

  url := "{{apiPath}}/environments/{{envID}}/propagation/revisions"
  method := "POST"

  payload := strings.NewReader(``)

  client := &http.Client {
  }
  req, err := http.NewRequest(method, url, payload)

  if err != nil {
    fmt.Println(err)
    return
  }
  req.Header.Add("Content-Type", "application/json")
  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))
}
POST /environments/{{envID}}/propagation/revisions HTTP/1.1
Host: {{apiPath}}
Content-Type: application/json
Authorization: Bearer {{accessToken}}
OkHttpClient client = new OkHttpClient().newBuilder()
  .build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
  .url("{{apiPath}}/environments/{{envID}}/propagation/revisions")
  .method("POST", body)
  .addHeader("Content-Type", "application/json")
  .addHeader("Authorization", "Bearer {{accessToken}}")
  .build();
Response response = client.newCall(request).execute();
var settings = {
  "url": "{{apiPath}}/environments/{{envID}}/propagation/revisions",
  "method": "POST",
  "timeout": 0,
  "headers": {
    "Content-Type": "application/json",
    "Authorization": "Bearer {{accessToken}}"
  },
};

$.ajax(settings).done(function (response) {
  console.log(response);
});
var request = require('request');
var options = {
  'method': 'POST',
  'url': '{{apiPath}}/environments/{{envID}}/propagation/revisions',
  'headers': {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer {{accessToken}}'
  }
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});
import requests
import json

url = "{{apiPath}}/environments/{{envID}}/propagation/revisions"

payload = ""
headers = {
  'Content-Type': 'application/json',
  'Authorization': 'Bearer {{accessToken}}'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
<?php
require_once 'HTTP/Request2.php';
$request = new HTTP_Request2();
$request->setUrl('{{apiPath}}/environments/{{envID}}/propagation/revisions');
$request->setMethod(HTTP_Request2::METHOD_POST);
$request->setConfig(array(
  'follow_redirects' => TRUE
));
$request->setHeader(array(
  'Content-Type' => 'application/json',
  'Authorization' => 'Bearer {{accessToken}}'
));
$request->setBody('');
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 "json"
require "net/http"

url = URI("{{apiPath}}/environments/{{envID}}/propagation/revisions")

http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["Authorization"] = "Bearer {{accessToken}}"

response = http.request(request)
puts response.read_body
var request = URLRequest(url: URL(string: "{{apiPath}}/environments/{{envID}}/propagation/revisions")!,timeoutInterval: Double.infinity)
request.addValue("application/json", forHTTPHeaderField: "Content-Type")
request.addValue("Bearer {{accessToken}}", forHTTPHeaderField: "Authorization")

request.httpMethod = "POST"

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

201 Created

{
    "id": "c008aae1-7c0c-11ef-b8cb-bfd7cfa8ceec",
    "environment": {
        "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
    },
    "previousRevision": {
        "id": "985412c0-c73a-11ec-a3b0-b176aaa81169"
    },
    "createdAt": "2024-09-26T13:39:27.502Z",
    "skipResync": false,
    "_links": {
        "latest": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/revisions/id:latest"
        },
        "create": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/revisions"
        },
        "previous": {
            "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/revisions/985412c0-c73a-11ec-a3b0-b176aaa81169"
        }
    },
    "_embedded": {
        "plans": [
            {
                "id": "3808bfca-b9de-42c8-abd5-06bbf82ad58a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "name": "Workday Use Case Plan",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/plans/3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                    }
                },
                "_embedded": {
                    "rules": [
                        {
                            "id": "5d3d1e01-bbca-4a3b-8261-8313169dc88d",
                            "environment": {
                                "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                            },
                            "createdAt": "2023-08-16T13:29:50.205Z",
                            "updatedAt": "2023-08-16T13:29:50.205Z",
                            "plan": {
                                "id": "3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                            },
                            "sourceStore": {
                                "id": "2cc6b2c8-2be7-4191-a75d-8632f4a965fe"
                            },
                            "targetStore": {
                                "id": "4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                            },
                            "name": "Workday Use Case Writeback Rule",
                            "description": "Workday use case writeback rule description",
                            "active": false,
                            "deprovision": false,
                            "parentRule": {
                                "id": "bca5efbf-c364-4fc4-871e-49e6eeba99a9"
                            },
                            "_links": {
                                "self": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/rules/5d3d1e01-bbca-4a3b-8261-8313169dc88d"
                                },
                                "targetStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                                },
                                "sourceStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/2cc6b2c8-2be7-4191-a75d-8632f4a965fe"
                                },
                                "plan": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/plans/3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                                }
                            },
                            "_embedded": {
                                "mappings": []
                            }
                        },
                        {
                            "id": "6bb7b3da-ed1e-419e-b46c-a99e2f0b97f1",
                            "environment": {
                                "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                            },
                            "createdAt": "2023-08-21T16:51:53.435Z",
                            "updatedAt": "2023-08-21T16:51:53.435Z",
                            "plan": {
                                "id": "3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                            },
                            "sourceStore": {
                                "id": "4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                            },
                            "targetStore": {
                                "id": "0a637ef7-8df6-4f91-ae92-25125117d72b"
                            },
                            "name": "Workday Use Case Rule",
                            "description": "Workday use case rule description",
                            "active": false,
                            "populationExpression": "population.id eq \"499ddc12-b031-4d1d-b93b-5c82e2e39040\"",
                            "deprovision": true,
                            "_links": {
                                "self": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/rules/6bb7b3da-ed1e-419e-b46c-a99e2f0b97f1"
                                },
                                "targetStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/0a637ef7-8df6-4f91-ae92-25125117d72b"
                                },
                                "sourceStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                                },
                                "plan": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/plans/3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                                }
                            },
                            "_embedded": {
                                "mappings": []
                            }
                        },
                        {
                            "id": "bca5efbf-c364-4fc4-871e-49e6eeba99a9",
                            "environment": {
                                "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                            },
                            "createdAt": "2023-08-16T13:29:43.214Z",
                            "updatedAt": "2023-08-16T13:29:43.214Z",
                            "plan": {
                                "id": "3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                            },
                            "sourceStore": {
                                "id": "4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                            },
                            "targetStore": {
                                "id": "e39ee58e-073a-4c14-a46c-36bc90342a59"
                            },
                            "name": "Workday Use Case Rule",
                            "description": "Workday use case rule description",
                            "active": false,
                            "populationExpression": "population.id eq \"2da38435-9143-4104-828c-0634f5b992d5\"",
                            "deprovision": true,
                            "_links": {
                                "self": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/rules/bca5efbf-c364-4fc4-871e-49e6eeba99a9"
                                },
                                "targetStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/e39ee58e-073a-4c14-a46c-36bc90342a59"
                                },
                                "sourceStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                                },
                                "plan": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/plans/3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                                }
                            },
                            "_embedded": {
                                "mappings": []
                            }
                        },
                        {
                            "id": "f38b2e51-1753-4693-9cef-1682eda9f949",
                            "environment": {
                                "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                            },
                            "createdAt": "2023-08-21T16:51:57.910Z",
                            "updatedAt": "2023-08-21T16:51:57.910Z",
                            "plan": {
                                "id": "3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                            },
                            "sourceStore": {
                                "id": "d7831c30-2b06-41ed-983f-e9a61e458deb"
                            },
                            "targetStore": {
                                "id": "4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                            },
                            "name": "Workday Use Case Writeback Rule",
                            "description": "Workday use case writeback rule description",
                            "active": false,
                            "deprovision": false,
                            "parentRule": {
                                "id": "6bb7b3da-ed1e-419e-b46c-a99e2f0b97f1"
                            },
                            "_links": {
                                "self": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/rules/f38b2e51-1753-4693-9cef-1682eda9f949"
                                },
                                "targetStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                                },
                                "sourceStore": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/d7831c30-2b06-41ed-983f-e9a61e458deb"
                                },
                                "plan": {
                                    "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/plans/3808bfca-b9de-42c8-abd5-06bbf82ad58a"
                                }
                            },
                            "_embedded": {
                                "mappings": []
                            }
                        }
                    ]
                }
            }
        ],
        "stores": [
            {
                "id": "02b56e18-2b86-40c6-af2f-2540c25b99e7",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-02-04T14:43:57.678Z",
                "updatedAt": "2022-02-04T14:43:57.678Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "PingOne",
                "status": "INACTIVE",
                "configuration": {
                    "ENVIRONMENT_ID": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6",
                    "REGION": "North America"
                },
                "name": "PingOneTest",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/02b56e18-2b86-40c6-af2f-2540c25b99e7"
                    }
                }
            },
            {
                "id": "0a1d7b40-8a69-4095-8f14-81c5c870d2ed",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-03-16T19:29:03.819Z",
                "updatedAt": "2022-03-16T19:29:03.819Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "AzureActiveDirectorySAML2",
                "status": "INACTIVE",
                "configuration": {
                    "REMOVE_USERS_PROV_OPT": true,
                    "DEPROVISION_USER_ACTION_PROV_OPT": "Disable",
                    "CREATE_USERS": true,
                    "UPDATE_NEW_USERS": true,
                    "UPDATE_USERS": true,
                    "DISABLE_USERS": true,
                    "DEPROVISION_USERS": true,
                    "REMOVE_ACTION": "Disable",
                    "TenantDomain": "tenant_domain",
                    "ClientId": "{{azureClientID}}",
                    "ClientSecret": "{{azureClientSecret}}",
                    "DefaultPassword": "{{azureDefaultPassword}}"
                },
                "name": "azureTest2",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/0a1d7b40-8a69-4095-8f14-81c5c870d2ed"
                    }
                }
            },
            {
                "id": "0a637ef7-8df6-4f91-ae92-25125117d72b",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2023-08-21T16:51:35.755Z",
                "updatedAt": "2023-08-21T16:51:35.755Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "PingOne",
                "status": "INACTIVE",
                "configuration": {
                    "ENVIRONMENT_ID": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6",
                    "REGION": "North America"
                },
                "name": "Workday Use Case Inbound Target PingOne",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/0a637ef7-8df6-4f91-ae92-25125117d72b"
                    }
                }
            },
            {
                "id": "13f3a0c7-9e91-4801-a566-8672eb2143c2",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-03-02T15:05:02.129Z",
                "updatedAt": "2022-03-02T15:05:02.129Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "scim",
                "status": "INACTIVE",
                "configuration": {
                    "AUTHENTICATION_METHOD": "None",
                    "USER_FILTER": "username Eq \"%s\"",
                    "UNIQUE_USER_IDENTIFIER": "userName",
                    "REMOVE_ACTION": "Disable",
                    "createNewUsers": true,
                    "updateNewUsers": true,
                    "disableNewUsers": true,
                    "USERS_RESOURCE": "/Users",
                    "SCIM_VERSION": "2.0",
                    "SCIM_URL": "https://example.com",
                    "AUTHORIZATION_TYPE": "Basic",
                    "BASIC_AUTH_USER": "{{scimBasicUserName}}",
                    "BASIC_AUTH_PASSWORD": "{{scimBasicPassword}}"
                },
                "name": "scim",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/13f3a0c7-9e91-4801-a566-8672eb2143c2"
                    }
                }
            },
            {
                "id": "2cc6b2c8-2be7-4191-a75d-8632f4a965fe",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2023-08-16T13:29:39.068Z",
                "updatedAt": "2023-08-16T13:29:39.068Z",
                "image": {},
                "type": "directory",
                "status": "INACTIVE",
                "name": "Workday Use Case Writeback Source directory",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/2cc6b2c8-2be7-4191-a75d-8632f4a965fe"
                    }
                }
            },
            {
                "id": "3277e244-ccc7-4d98-b313-22c38a5c7d35",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-01-13T21:31:35.985Z",
                "updatedAt": "2022-01-13T21:31:35.985Z",
                "image": {},
                "type": "Salesforce",
                "status": "INACTIVE",
                "configuration": {
                    "FREEZE_USER_FLAG": false,
                    "ENABLE_COMMUNITIES": true,
                    "PERMISSION_SET_MANAGEMENT": "Merge with permission sets in Salesforce",
                    "CREATE_NEW_USERS": true,
                    "UPDATE_NEW_USERS": true,
                    "DISABLE_USERS": true,
                    "PROVISION_DISABLED_USERS": true,
                    "SALESFORCE_DOMAIN": "https://example.com",
                    "CLIENT_ID": "{{salesforceClientId}}",
                    "CLIENT_SECRET": "{{salesforceClientSecret}}",
                    "OAUTH_ACCESS_TOKEN": "{{salesforceOauthAccessToken}}",
                    "OAUTH_REFRESH_TOKEN": "{{salesforceOauthRefreshToken}}"
                },
                "name": "test",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/3277e244-ccc7-4d98-b313-22c38a5c7d35"
                    }
                }
            },
            {
                "id": "3810dbfa-5ab8-4976-8ecf-e011aed758af",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-02-04T14:29:40.597Z",
                "updatedAt": "2022-02-04T14:29:40.597Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "Workday",
                "status": "INACTIVE",
                "configuration": {
                    "username": "{{workdayBasicUsername}}",
                    "password": "{{workdayBasicPassword}}",
                    "tenantId": "tenant_Id",
                    "subdomain": "subdomain",
                    "host": "subdomain.workday.com"
                },
                "name": "WorkdayTest",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/3810dbfa-5ab8-4976-8ecf-e011aed758af"
                    }
                }
            },
            {
                "id": "47db21cc-86b1-4cfa-9ca0-53c9d818b894",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-03-01T19:51:07.313Z",
                "updatedAt": "2022-03-01T19:51:07.313Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "AzureActiveDirectorySAML2",
                "status": "INACTIVE",
                "configuration": {
                    "REMOVE_USERS_PROV_OPT": true,
                    "DEPROVISION_USER_ACTION_PROV_OPT": "Disable",
                    "CREATE_USERS": true,
                    "UPDATE_USERS": true,
                    "DISABLE_USERS": true,
                    "DEPROVISION_USERS": true,
                    "REMOVE_ACTION": "Disable",
                    "TenantDomain": "tenant_domain",
                    "ClientId": "{{azureClientID}}",
                    "ClientSecret": "{{azureClientSecret}}",
                    "DefaultPassword": "{{azureDefaultPassword}}"
                },
                "name": "azureTest2",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/47db21cc-86b1-4cfa-9ca0-53c9d818b894"
                    }
                }
            },
            {
                "id": "487261b0-277f-48e1-8a84-cc731c4c4591",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-03-01T19:56:03.881Z",
                "updatedAt": "2022-03-01T19:56:03.881Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "AzureActiveDirectorySAML2",
                "status": "INACTIVE",
                "configuration": {
                    "REMOVE_USERS_PROV_OPT": true,
                    "DEPROVISION_USER_ACTION_PROV_OPT": "Disable",
                    "CREATE_USERS": true,
                    "UPDATE_USERS": true,
                    "DISABLE_USERS": true,
                    "DEPROVISION_USERS": true,
                    "REMOVE_ACTION": "Disable",
                    "TenantDomain": "tenant_domain",
                    "ClientId": "{{azureClientID}}",
                    "ClientSecret": "{{azureClientSecret}}",
                    "DefaultPassword": "{{azureDefaultPassword}}"
                },
                "name": "azureTest1",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/487261b0-277f-48e1-8a84-cc731c4c4591"
                    }
                }
            },
            {
                "id": "4cf2e9bf-9689-4fac-a277-1feea5a83ea6",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2023-08-16T13:29:30.235Z",
                "updatedAt": "2023-08-16T13:29:30.235Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "Workday",
                "status": "INACTIVE",
                "configuration": {
                    "username": "{{workdayBasicUsername}}",
                    "password": "{{workdayBasicPassword}}",
                    "tenantId": "tenant_Id",
                    "subdomain": "subdomain",
                    "host": "example.workday.com"
                },
                "name": "Workday Use Case Inbound Source Workday",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/4cf2e9bf-9689-4fac-a277-1feea5a83ea6"
                    }
                }
            },
            {
                "id": "9f95941f-9870-448c-9ff6-2a132e4b5d5a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-01-10T21:13:01.061Z",
                "updatedAt": "2022-01-10T21:13:01.061Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "Aquera",
                "status": "INACTIVE",
                "configuration": {
                    "AUTHENTICATION_METHOD": "None",
                    "USER_FILTER": "username Eq \"%s\"",
                    "UNIQUE_USER_IDENTIFIER": "userName",
                    "REMOVE_ACTION": "Disable",
                    "CREATE_NEW_USERS": true,
                    "UPDATE_NEW_USERS": true,
                    "DISABLE_NEW_USERS": true,
                    "USERS_RESOURCE": "/Users",
                    "SCIM_VERSION": "2.0",
                    "SCIM_URL": "https://example.com",
                    "AUTHORIZATION_TYPE": "Basic",
                    "BASIC_AUTH_USER": "{{aqueraBasicUsername}}",
                    "BASIC_AUTH_PASSWORD": "{{aqueraBasicPassword}}"
                },
                "name": "AqueraTest",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/9f95941f-9870-448c-9ff6-2a132e4b5d5a"
                    }
                }
            },
            {
                "id": "a7115f69-136d-4b5d-8b24-5c1c218147f5",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-01-10T17:32:21.502Z",
                "updatedAt": "2022-01-10T20:29:55.593Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "description": "Update a scim connection",
                "type": "scim",
                "configuration": {
                    "AUTHENTICATION_METHOD": "Basic Authentication",
                    "SCIM_URL": "https://scim.url",
                    "USERS_RESOURCE": "/users",
                    "SCIM_VERSION": "1.1",
                    "AUTHORIZATION_TYPE": "Basic",
                    "BASIC_AUTH_USER": "{{scimBasicUserName}}",
                    "BASIC_AUTH_PASSWORD": "{{scimBasicPassword}}"
                },
                "name": "scim",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/a7115f69-136d-4b5d-8b24-5c1c218147f5"
                    }
                }
            },
            {
                "id": "d7831c30-2b06-41ed-983f-e9a61e458deb",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2023-08-21T16:51:46.480Z",
                "updatedAt": "2023-08-21T16:51:46.480Z",
                "image": {},
                "type": "directory",
                "status": "INACTIVE",
                "name": "Workday Use Case Writeback Source directory",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/d7831c30-2b06-41ed-983f-e9a61e458deb"
                    }
                }
            },
            {
                "id": "da166d8e-eaa7-4251-8480-85448e095bc3",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2023-12-05T17:38:42.947Z",
                "updatedAt": "2023-12-05T17:38:42.947Z",
                "image": {},
                "type": "Zoom",
                "status": "ACTIVE",
                "configuration": {
                    "AUTHENTICATION_METHOD": "OAuth Bearer Token",
                    "CREATE_USERS": true,
                    "UPDATE_USERS": true,
                    "DEPROVISION_USERS": true,
                    "DISABLE_USERS": true,
                    "SCIM_URL": "https://api.zoom.us/scim2",
                    "OAUTH_TOKEN_URL": "https://zoom.us/oauth/token",
                    "OAUTH_ACCOUNT_ID": "{{zoomOauthAccountId}}",
                    "OAUTH_CLIENT_ID": "{{zoomOauthClientId}}",
                    "OAUTH_CLIENT_SECRET": "{{zoomOauthClientSecret}}",
                    "REMOVE_ACTION": "Delete"
                },
                "name": "zoom connection",
                "managed": true,
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/da166d8e-eaa7-4251-8480-85448e095bc3"
                    }
                }
            },
            {
                "id": "e39ee58e-073a-4c14-a46c-36bc90342a59",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2023-08-16T13:29:34.423Z",
                "updatedAt": "2023-08-16T13:29:34.423Z",
                "image": {
                    "href": "https://d1oekt4jpdthse.cloudfront.net/branding/market/cb933bfe-8282-405a-a780-0a19b97edc02.png"
                },
                "type": "PingOne",
                "status": "INACTIVE",
                "configuration": {
                    "ENVIRONMENT_ID": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6",
                    "REGION": "North America"
                },
                "name": "Workday Use Case Inbound Target PingOne",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/e39ee58e-073a-4c14-a46c-36bc90342a59"
                    }
                }
            },
            {
                "id": "f93f2766-e3bd-479b-830a-2c719d37542a",
                "environment": {
                    "id": "abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6"
                },
                "createdAt": "2022-07-19T14:01:19.959Z",
                "updatedAt": "2022-07-19T14:01:19.959Z",
                "image": {},
                "type": "directory",
                "status": "INACTIVE",
                "name": "PingOne Directory",
                "_links": {
                    "self": {
                        "href": "https://api.pingone.com/v1/environments/abfba8f6-49eb-49f5-a5d9-80ad5c98f9f6/propagation/stores/f93f2766-e3bd-479b-830a-2c719d37542a"
                    }
                }
            }
        ]
    }
}