diff --git a/dereferenced/deref-sailpoint-api.v2024.json b/dereferenced/deref-sailpoint-api.v2024.json index 7fd23f6b..fba0e24a 100644 --- a/dereferenced/deref-sailpoint-api.v2024.json +++ b/dereferenced/deref-sailpoint-api.v2024.json @@ -166419,7 +166419,7 @@ "applicationAuth": [] } ], - "description": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nYou can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). \nTo do so, follow these steps:\n\n1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. \n\n2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. \n\n3. Use [Set Identity's Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password:\n\n```java\nimport javax.crypto.Cipher;\nimport java.security.KeyFactory;\nimport java.security.PublicKey;\nimport java.security.spec.X509EncodedKeySpec;\nimport java util.Base64;\n\nString encrypt(String publicKey, String toEncrypt) throws Exception {\n byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey);\n byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\"));\n return Base64.getEncoder().encodeToString(encryptedBytes);\n}\n\nprivate byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception {\n PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes));\n String transformation = \"RSA/ECB/PKCS1Padding\";\n Cipher cipher = Cipher.getInstance(transformation);\n cipher.init(1, key);\n return cipher.doFinal(toEncryptBytes);\n}\n``` \n\nIn this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. \n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", + "description": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nTo generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command:\n\n```bash\necho \"myPassword\" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64\n```\n\nIn this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint.\n\nTo successfully run this command, you must have OpenSSL installed on your machine. If OpenSSL is unavailable, consider using the Virtual Appliance (VA), which has OpenSSL pre-installed and configured.\n\nIf you are using a Windows machine, refer to this [guide](https://tecadmin.net/install-openssl-on-windows/) for instructions on installing OpenSSL.\n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", "requestBody": { "required": true, "content": { diff --git a/dereferenced/deref-sailpoint-api.v2024.yaml b/dereferenced/deref-sailpoint-api.v2024.yaml index f2d9b46d..92fa4365 100644 --- a/dereferenced/deref-sailpoint-api.v2024.yaml +++ b/dereferenced/deref-sailpoint-api.v2024.yaml @@ -125788,38 +125788,17 @@ paths: >**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.** - You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). - To do so, follow these steps: + To generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command: - 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. - - 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. - - 3. Use [Set Identity's Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: - - ```java - import javax.crypto.Cipher; - import java.security.KeyFactory; - import java.security.PublicKey; - import java.security.spec.X509EncodedKeySpec; - import java util.Base64; + ```bash + echo "myPassword" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64 + ``` - String encrypt(String publicKey, String toEncrypt) throws Exception { - byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); - byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes("UTF-8")); - return Base64.getEncoder().encodeToString(encryptedBytes); - } + In this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint. - private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { - PublicKey key = KeyFactory.getInstance("RSA").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); - String transformation = "RSA/ECB/PKCS1Padding"; - Cipher cipher = Cipher.getInstance(transformation); - cipher.init(1, key); - return cipher.doFinal(toEncryptBytes); - } - ``` + To successfully run this command, you must have OpenSSL installed on your machine. If OpenSSL is unavailable, consider using the Virtual Appliance (VA), which has OpenSSL pre-installed and configured. - In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. + If you are using a Windows machine, refer to this [guide](https://tecadmin.net/install-openssl-on-windows/) for instructions on installing OpenSSL. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. requestBody: diff --git a/dereferenced/deref-sailpoint-api.v3.json b/dereferenced/deref-sailpoint-api.v3.json index 21243034..4a050a13 100644 --- a/dereferenced/deref-sailpoint-api.v3.json +++ b/dereferenced/deref-sailpoint-api.v3.json @@ -166464,7 +166464,7 @@ "applicationAuth": [] } ], - "description": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nYou can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). \nTo do so, follow these steps:\n\n1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. \n\n2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. \n\n3. Use [Set Identity's Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password:\n\n```java\nimport javax.crypto.Cipher;\nimport java.security.KeyFactory;\nimport java.security.PublicKey;\nimport java.security.spec.X509EncodedKeySpec;\nimport java util.Base64;\n\nString encrypt(String publicKey, String toEncrypt) throws Exception {\n byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey);\n byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\"));\n return Base64.getEncoder().encodeToString(encryptedBytes);\n}\n\nprivate byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception {\n PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes));\n String transformation = \"RSA/ECB/PKCS1Padding\";\n Cipher cipher = Cipher.getInstance(transformation);\n cipher.init(1, key);\n return cipher.doFinal(toEncryptBytes);\n}\n``` \n\nIn this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. \n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", + "description": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nTo generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command:\n\n```bash\necho \"myPassword\" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64\n```\n\nIn this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint.\n\nTo successfully run this command, you must have OpenSSL installed on your machine. If OpenSSL is unavailable, consider using the Virtual Appliance (VA), which has OpenSSL pre-installed and configured.\n\nIf you are using a Windows machine, refer to this [guide](https://tecadmin.net/install-openssl-on-windows/) for instructions on installing OpenSSL.\n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", "requestBody": { "required": true, "content": { diff --git a/dereferenced/deref-sailpoint-api.v3.yaml b/dereferenced/deref-sailpoint-api.v3.yaml index ecb4b060..83f3260f 100644 --- a/dereferenced/deref-sailpoint-api.v3.yaml +++ b/dereferenced/deref-sailpoint-api.v3.yaml @@ -125375,38 +125375,17 @@ paths: >**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.** - You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). - To do so, follow these steps: + To generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command: - 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. - - 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. - - 3. Use [Set Identity's Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: - - ```java - import javax.crypto.Cipher; - import java.security.KeyFactory; - import java.security.PublicKey; - import java.security.spec.X509EncodedKeySpec; - import java util.Base64; + ```bash + echo "myPassword" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64 + ``` - String encrypt(String publicKey, String toEncrypt) throws Exception { - byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); - byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes("UTF-8")); - return Base64.getEncoder().encodeToString(encryptedBytes); - } + In this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint. - private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { - PublicKey key = KeyFactory.getInstance("RSA").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); - String transformation = "RSA/ECB/PKCS1Padding"; - Cipher cipher = Cipher.getInstance(transformation); - cipher.init(1, key); - return cipher.doFinal(toEncryptBytes); - } - ``` + To successfully run this command, you must have OpenSSL installed on your machine. If OpenSSL is unavailable, consider using the Virtual Appliance (VA), which has OpenSSL pre-installed and configured. - In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. + If you are using a Windows machine, refer to this [guide](https://tecadmin.net/install-openssl-on-windows/) for instructions on installing OpenSSL. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. requestBody: diff --git a/postman/collections/sailpoint-api-beta.json b/postman/collections/sailpoint-api-beta.json index ff0a2e36..008de89c 100644 --- a/postman/collections/sailpoint-api-beta.json +++ b/postman/collections/sailpoint-api-beta.json @@ -5,7 +5,7 @@ "description": "Use this API to create and manage metadata attributes for your Access Model.\nAccess Model Metadata allows you to add contextual information to your ISC Access Model items using pre-defined metadata for risk, regulations, privacy levels, etc., or by creating your own metadata attributes to reflect the unique needs of your organization. This release of the API includes support for entitlement metadata. Support for role and access profile metadata will be introduced in a subsequent release.\n\nCommon usages for Access Model metadata include:\n\n- Organizing and categorizing access items to make it easier for your users to search for and find the access rights they want to request, certify, or manage.\n\n- Providing richer information about access that is being acted on to allow stakeholders to make better decisions when approving, certifying, or managing access rights.\n\n- Identifying access that may requires additional approval requirements or be subject to more frequent review.\n", "item": [ { - "id": "3899d5a2-cb18-46f7-899b-68e2c2608992", + "id": "72652f22-3616-4770-9454-db6c52a40959", "name": "List Access Model Metadata Attributes", "request": { "name": "List Access Model Metadata Attributes", @@ -45,7 +45,7 @@ }, "response": [ { - "id": "af20b014-3242-4462-a282-96a16f247dc0", + "id": "099d7994-d600-4735-8be0-8ab4b227e61e", "name": "OK", "originalRequest": { "url": { @@ -99,7 +99,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a24dd54e-7d53-4202-82ac-40238843af80", + "id": "39e3b1b2-9240-49ed-95fc-1ded86a5abb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153,7 +153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00131eb7-561d-44e9-846f-46ca2754315f", + "id": "a02027b4-70a0-48d8-b96b-a965add99450", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207,7 +207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1624caa-8a1a-4432-bab4-8cade6777b64", + "id": "aa0482c0-c639-4399-ad16-d89b4b05906a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -261,7 +261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1dbfff8-c4c6-4e81-9df5-3c64d9f42e7a", + "id": "d482b2b6-50da-4bb8-b14f-a9e7924fc983", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -315,7 +315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d9076e8-afb5-4a42-a3cf-9f1427606e3b", + "id": "e420e041-32d2-400d-bec6-8b5124a9734c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -375,7 +375,7 @@ } }, { - "id": "f776cd59-5fae-4a11-9696-d7c910cf8682", + "id": "80e5a909-999d-488a-b7ba-1213329e147b", "name": "Get Access Model Metadata Attribute", "request": { "name": "Get Access Model Metadata Attribute", @@ -417,7 +417,7 @@ }, "response": [ { - "id": "75034fbb-031a-4d04-a253-e1254f5b93f0", + "id": "179dff56-880c-4a36-ac35-ac676586c93a", "name": "OK", "originalRequest": { "url": { @@ -462,7 +462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1a44cf9-2f1b-4beb-8ce4-367eb2265a37", + "id": "37b41662-f46c-4718-a419-21f2045f549f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -507,7 +507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc74b41e-564c-4a0b-91ce-239e27ec11bc", + "id": "a094608d-d4fa-473c-b25f-f4bde624c898", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -552,7 +552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf54d7a5-0352-48a2-8643-2c1469b4dd48", + "id": "3174acd1-386a-4630-b0c6-2f86f9934024", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -597,7 +597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c79fa86-ea9e-42cb-a469-565cd1eae8c1", + "id": "1282ce96-5dac-4858-8f02-c7c5818ee027", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -642,7 +642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36b9094d-34c4-4608-ad4b-c46ca0dbd10e", + "id": "957dbc81-6c6e-43a0-b911-68c917432479", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -693,7 +693,7 @@ } }, { - "id": "b93b3be6-9e4a-4838-86a7-3cb68676f3a1", + "id": "8b7ebeb6-8b9a-494d-9d22-b43cd1b717ff", "name": "List Access Model Metadata Values", "request": { "name": "List Access Model Metadata Values", @@ -736,7 +736,7 @@ }, "response": [ { - "id": "41e0a667-f474-4f96-af1f-e0b35022831b", + "id": "5eddceaf-6a56-4350-89e9-4cab468bd6ca", "name": "OK", "originalRequest": { "url": { @@ -782,7 +782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54aebca0-f2a7-4798-8ef2-993caff48635", + "id": "2bd88748-b342-4816-9029-6466e5c6bd88", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -828,7 +828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827ccc1e-358b-4bed-8b2d-b5062da47d92", + "id": "afdddfae-5206-49b0-87b9-5816b31b7c8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -874,7 +874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e729f77-ac9f-475c-bcc2-130881e892ed", + "id": "fab247c1-0492-401a-ac3e-cae777e18586", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -920,7 +920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1139a491-7e7d-415f-9c36-8d0bcd8f30c3", + "id": "d076a228-4be9-4a5f-b264-72838171fa0e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -966,7 +966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785e301b-79f7-486d-8c2b-8fdfe6b23a17", + "id": "e7affb29-dbaa-407b-8023-5b5a99bff257", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1018,7 +1018,7 @@ } }, { - "id": "e8f64d35-9dfb-459f-8b9a-76e9c2238ef2", + "id": "2a181066-46c9-4226-9d96-c8d3fff1cdca", "name": "Get Access Model Metadata Value", "request": { "name": "Get Access Model Metadata Value", @@ -1072,7 +1072,7 @@ }, "response": [ { - "id": "03394bf0-6f0b-4934-82f9-1f0384c4fe0a", + "id": "c4f67c79-38c6-4626-9acc-6dc831aad724", "name": "OK", "originalRequest": { "url": { @@ -1119,7 +1119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61b0679c-48c8-4717-8dce-28141f2309dc", + "id": "3d88ff24-6ae0-4c3c-80ad-779744f00b25", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1166,7 +1166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5601ae03-b4ff-47bb-8795-76092e02c1c7", + "id": "057ae2cb-290b-416b-ba12-6c451956f4ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1213,7 +1213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "340887c4-28a1-4853-a813-91cd7a2db038", + "id": "87bf38a9-3485-4611-8bac-9604185f6a31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1260,7 +1260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "585dd1e9-9441-4ee8-95c3-b204d4820046", + "id": "967a40cb-8f3a-44c4-afc2-4cb74fcc1da8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1307,7 +1307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e636a51e-c2ea-4eb9-bba0-81092aedad4c", + "id": "dee8cb0e-a332-4bee-8b15-467afca75eed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1366,7 +1366,7 @@ "description": "Use this API to implement and customize access profile functionality.\nWith this functionality in place, administrators can create access profiles and configure them for use throughout Identity Security Cloud, enabling users to get the access they need quickly and securely.\n\nAccess profiles group entitlements, which represent access rights on sources.\n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nAccess profiles are the most important units of access in Identity Security Cloud. Identity Security Cloud uses access profiles in many features, including the following:\n\n- Provisioning: When you use the Provisioning Service, lifecycle states and roles both grant access to users in the form of access profiles.\n\n- Certifications: You can approve or revoke access profiles in certification campaigns, just like entitlements.\n\n- Access Requests: You can assign access profiles to applications, and when a user requests access to the app associated with an access profile and someone approves the request, access is granted to both the application and its associated access profile.\n\n- Roles: You can group one or more access profiles into a role to quickly assign access items based on an identity's role.\n\nIn Identity Security Cloud, administrators can use the Access drop-down menu and select Access Profiles to view, configure, and delete existing access profiles, as well as create new ones.\nAdministrators can enable and disable an access profile, and they can also make the following configurations:\n\n- Manage Entitlements: Manage the profile's access by adding and removing entitlements.\n\n- Access Requests: Configure access profiles to be requestable and establish an approval process for any requests that the access profile be granted or revoked.\nDo not configure an access profile to be requestable without first establishing a secure access request approval process for the access profile.\n\n- Multiple Account Options: Define the logic Identity Security Cloud uses to provision access to an identity with multiple accounts on the source.\n\nRefer to [Managing Access Profiles](https://documentation.sailpoint.com/saas/help/access/access-profiles.html) for more information about access profiles.\n", "item": [ { - "id": "15b991c1-7ac4-4458-9927-5447bfa33f6f", + "id": "413ac28a-e19c-47b7-bf48-34cb7dc67801", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -1468,7 +1468,7 @@ }, "response": [ { - "id": "1669c8b2-0d89-49be-9090-d316be646e96", + "id": "121e4b5d-9e59-4d7d-b26a-9feb31a93834", "name": "List of access profiles.", "originalRequest": { "url": { @@ -1584,7 +1584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bee13001-1ecf-4dfa-b5b3-b9eb2594c7d3", + "id": "6b883738-a228-43f3-82b4-99780697d4a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1700,7 +1700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "118a35b9-5c2a-4630-9b92-f2e780a01d56", + "id": "934247a2-0410-4d38-9caa-d8af820f787e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1816,7 +1816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "473390d3-4459-41b7-be84-8d037cff7605", + "id": "fb50c2b7-5cc2-4d70-a7ba-75bfd44df8d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1932,7 +1932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a62c704a-89db-459e-960a-56101eff72a7", + "id": "2e4d8adb-2740-41f3-a844-06608c8f0af3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2048,7 +2048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d9bd14c-640e-4041-941e-20d18af6944c", + "id": "94dbaaa8-56a9-4016-8daf-c3e4c326b370", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2170,7 +2170,7 @@ } }, { - "id": "1718e59b-b32f-4814-b0c1-85cd67f6c38f", + "id": "3a2ee020-998e-44dc-9a4e-83e1423a2bdb", "name": "Create Access Profile", "request": { "name": "Create Access Profile", @@ -2212,7 +2212,7 @@ }, "response": [ { - "id": "b2cb2c51-3875-41e0-bd92-0b3aee63df36", + "id": "604c3644-d270-4a5b-a6ac-57e276ce7745", "name": "Access profile created.", "originalRequest": { "url": { @@ -2268,7 +2268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc7d43b3-8218-471a-8e19-24742d684f56", + "id": "9a5c6399-ffb5-4d7b-816b-4dfe3b6a0f39", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2324,7 +2324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43f3f244-0ed3-48ed-acdf-f0df0729be9b", + "id": "4f1ecdc8-1f86-4bb8-9f9e-ca64869a825f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2380,7 +2380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dac5939-8f3c-43ff-9e71-44d43d17767e", + "id": "726c05ad-4886-46ee-bd75-272bd1b06ccb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2436,7 +2436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e1861db-648a-42e0-972a-a11e8ebd85a9", + "id": "6a9174ab-585b-4333-a0fd-0171aff140d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2492,7 +2492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d9a871f-2062-41d8-b651-b40522e24d65", + "id": "20b62936-dbac-47b0-ac16-b0167d2a3c2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2554,7 +2554,7 @@ } }, { - "id": "fa9922d5-5664-496d-b379-0a054f4e665f", + "id": "2522b360-fb53-4625-8f3b-70573a5c4a7f", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -2595,7 +2595,7 @@ }, "response": [ { - "id": "d9b6b726-1b17-4bd9-a90a-648ab4dde3f8", + "id": "6f2d9ac1-b167-40dd-b8a2-398a0b1adcb9", "name": "An AccessProfile", "originalRequest": { "url": { @@ -2639,7 +2639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b31c4f6c-04cd-46a2-a54f-9f85a3b8a11d", + "id": "df230475-e4ce-4768-9740-f5c5b9dbc82d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2683,7 +2683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd8c44ba-89e1-4322-bd03-6d368c922bca", + "id": "56f1c985-de69-402b-adc2-69bcf49b54e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2727,7 +2727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05cfd282-2c07-48ee-88c3-0524f6f95578", + "id": "b058f437-4a72-4993-ae86-07ad796506ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2771,7 +2771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f2a9b81-6277-4265-ace0-f6ebeeae5c31", + "id": "7275425f-b39e-409a-90c9-1aa935be334d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2815,7 +2815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c61f5360-d60f-4704-bddf-6d71cf670bb7", + "id": "a66ec13c-7942-49cb-bee9-601c2933f52e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2865,7 +2865,7 @@ } }, { - "id": "e19f26d0-5c4e-4357-8944-49e41075588d", + "id": "0c679835-9c8a-4797-b7fe-4fdcdb203783", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -2919,7 +2919,7 @@ }, "response": [ { - "id": "5afd0a50-7c37-4075-9735-b95684845a7f", + "id": "80f2ba18-417d-4b6d-87de-270a56f5573a", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2976,7 +2976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4bcc57e-3730-491e-af66-b24232a03e07", + "id": "e9a6f71d-0255-4f16-a895-a18b013cc48f", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3033,7 +3033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf927c27-052a-4755-8014-ac6165123b30", + "id": "1396259e-6bf2-4cfe-949a-e77a6ee13cf0", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3090,7 +3090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c66e49a1-9a5a-48ad-98b5-9fa305ee8fa5", + "id": "ca74cbba-a4dc-4aec-bcf9-eaa680bfa07e", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3147,7 +3147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13d4ca71-8546-4688-ac74-5513e0464351", + "id": "f8141900-d546-401c-9ce3-7d0aa1fb850a", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3204,7 +3204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe37cbaf-2f07-4cf4-8d9f-7db7d07db145", + "id": "d4b6bd4d-e05a-4985-8c98-94a77f8260e3", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3261,7 +3261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c751499-65cd-4873-985c-0608be3189be", + "id": "ef4148ca-8cc8-409c-8011-f7c8f11bb491", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3318,7 +3318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60b6c3e9-f365-4bba-8134-6f27e5644907", + "id": "3a2bf505-07d5-429e-8759-ac5bf4952ddc", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3375,7 +3375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a54348-a54d-4f5a-8043-5fbe6dc54c60", + "id": "c931cd97-e4ba-4cff-b0a7-9eb495a6130f", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3432,7 +3432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc22dc9-ec75-4d86-9826-2dc06d9aec42", + "id": "ef5efd2f-7aab-4d17-acbe-41737a18fe00", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3489,7 +3489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb59905f-0500-44b2-83ef-097ac700109c", + "id": "b9a52f94-3e64-4a53-930c-e289d07cffb2", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3546,7 +3546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f51a3f3d-3ebb-4746-97ef-eed30dfebf47", + "id": "459fc33d-f468-416c-b533-9e54eb1db3f9", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3603,7 +3603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d355b8-9274-4cdb-a0ea-c0fb1c9b1d86", + "id": "59f81e46-96c8-4385-8e80-10b6493c1e5a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -3660,7 +3660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22b0a7ce-eddf-4b83-bfc5-26383901ba28", + "id": "4477998e-254a-4b1d-ad55-1bee50b93913", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3717,7 +3717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2647b83e-a4d0-404d-a877-dd7e937f3c74", + "id": "403a38c4-9a4e-4294-b80e-aa464a727622", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3774,7 +3774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92018328-149f-4b00-9121-aca12ce7b7e0", + "id": "ff6d44db-dc84-40db-8356-5766e2d5c5b8", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3831,7 +3831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43055218-dee9-47fc-ba04-b7cf4c3763b6", + "id": "7145d2f3-a23b-436a-9e55-7d2c16a61256", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3888,7 +3888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcbcda82-db5b-4744-ad53-407623eab124", + "id": "d53a0f0e-61bf-4796-a09b-eb6978faef9d", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3945,7 +3945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "040c22a4-fac6-4252-b85d-4b8ae7ad1316", + "id": "4e19bff2-4d18-443e-bc81-11b4ac6e7bbd", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4002,7 +4002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eeb9bc6-4044-4f80-905e-19779bca60a4", + "id": "8c428534-9397-4394-852d-95c037da87b6", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4059,7 +4059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e7973c2-f13d-4d04-9be1-d49200d66a5f", + "id": "44ef4b21-92a7-4998-8740-3fd2f067172c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -4116,7 +4116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ddd4b72-bdbc-45af-a2c2-2b2e96bfa9d8", + "id": "8c6fe5c9-6845-44a3-b40e-b16f824a314c", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -4173,7 +4173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "159083a1-94ff-4e5f-b805-57cc89ae867b", + "id": "ab09b555-a7ee-419b-b8c9-5aa562e5a9b4", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4230,7 +4230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5330f15a-704c-4ec0-a8c8-d3d799f92bd9", + "id": "4454d4d3-fb83-4241-877a-e4b3dbff6fed", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4293,7 +4293,7 @@ } }, { - "id": "32ed6001-bff7-4fd2-bf4f-c406e9aa1ba6", + "id": "daa7e879-cf94-4916-a7f8-db60c980c20a", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -4334,7 +4334,7 @@ }, "response": [ { - "id": "35db718a-f818-4983-b154-dda4e590fb78", + "id": "80f258dd-1ad1-4e0c-941e-3f398e7c3534", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -4368,7 +4368,7 @@ "_postman_previewlanguage": "text" }, { - "id": "445302d1-59d9-4958-8c9b-4aa0ceb8022e", + "id": "a3267d7a-82d2-4ce5-9dfd-de24b2d0229f", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -4412,7 +4412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80a5e138-f237-4f0f-a880-c7cfe40d0c76", + "id": "b79fa3b5-3996-4d6c-ab0e-54d1311db92c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4456,7 +4456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25ce66ae-c13e-4eeb-8e02-a85c114a3b94", + "id": "14c9ca98-7072-4ed6-a7dd-8e0d20f6a39d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4500,7 +4500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df8f22f0-fcdf-44a7-9006-4d648b94f5ba", + "id": "b435b001-b800-444b-abe8-69b64255d086", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4544,7 +4544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa1c2217-df12-4711-bcb5-04327d0221ca", + "id": "808681f4-8993-4bd3-b5f0-d60944c81f33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4594,7 +4594,7 @@ } }, { - "id": "a857ad4c-2a41-4d9b-af28-dc01814b1b5d", + "id": "bf0d73a2-e65e-4928-91c8-1dc681c68207", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -4637,7 +4637,7 @@ }, "response": [ { - "id": "2f548ae6-c2e0-42de-891b-00628d80ca96", + "id": "b90ac705-637f-4a9c-b891-c52a8ff0aa0a", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -4694,7 +4694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cac84122-2c62-4389-9615-955cfa0082e5", + "id": "95dcffc5-cb5c-43da-ac97-fdbb660108ad", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -4751,7 +4751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f67187-ae1a-4fb2-afd2-9b6653f8ff92", + "id": "357f38d8-c080-4d69-b884-8d8747adf213", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4808,7 +4808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7324936-e0fe-4b44-b7c7-489eff353727", + "id": "042978c2-3dac-408c-bd99-7be92b1ba7ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4865,7 +4865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a9fc175-f2aa-4279-82e2-675caaa91026", + "id": "a57e88fc-7b81-4d73-9c37-e30abd34a301", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4922,7 +4922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3245fda9-e2f5-4f8f-a0ca-e63fecf31c7b", + "id": "c9cbf5fb-10a0-4e98-a0cc-e793a856b012", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4979,7 +4979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53350a2a-35ae-4b2a-a0be-9ae151a4dc7d", + "id": "c77d2281-1d95-4ba1-be53-17bbfb863be5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5042,7 +5042,7 @@ } }, { - "id": "f570ab52-ebfe-495a-a55a-17cb34ab3543", + "id": "809453b1-0e84-4c38-b2f7-5d419e236394", "name": "Update Access Profile(s) requestable field.", "request": { "name": "Update Access Profile(s) requestable field.", @@ -5085,7 +5085,7 @@ }, "response": [ { - "id": "15ac86df-3349-41a6-a786-87400cfd4baf", + "id": "a85c2472-b045-4e55-91d0-bb98482c96bb", "name": "List of updated and not updated Access Profiles.", "originalRequest": { "url": { @@ -5142,7 +5142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ed37a3f-ac62-448a-80b1-426f712c91b7", + "id": "c9395091-4e2f-4a6b-b1de-8c057eb2eefe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5199,7 +5199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94dba927-70fa-4030-ad43-ba3d3b5c69d3", + "id": "590a2129-de4c-4cda-8774-9dd8ca7ca5c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5256,7 +5256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53da176f-82c2-4c17-a62b-28418f72392b", + "id": "648878fa-333b-4ea6-9a69-fdd8b683e2d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5313,7 +5313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05fcdc29-e255-4f0e-8679-342374a128d6", + "id": "b1d1be25-156f-4d8a-b3ba-433bbd67c361", "name": "Precondition Failed - Returned in response if API/Feature not enabled for an organization.", "originalRequest": { "url": { @@ -5370,7 +5370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4657760-d106-491d-9f64-fc60def01b4f", + "id": "56432609-e94d-411a-8407-0a9b61b60179", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5427,7 +5427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c68f0975-ddea-425d-853a-e78de34a63b0", + "id": "9299943d-1df6-4a9f-b12a-b1f59268e63e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5490,7 +5490,7 @@ } }, { - "id": "b785165c-92a1-4caa-926e-b60f90816b86", + "id": "be92ced8-de9b-4005-90b6-b7c735a514ce", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -5578,7 +5578,7 @@ }, "response": [ { - "id": "af3e5cfd-c8e8-4dc2-a7fa-46fd30f5b1a6", + "id": "ac322647-1bdc-48fc-b1c1-341db56225e9", "name": "List of entitlements.", "originalRequest": { "url": { @@ -5669,7 +5669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebf0c783-2384-43e4-9604-8cfd6a00aa1d", + "id": "d76f7751-a658-451f-8043-36ba8dddc82f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5760,7 +5760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d9d27b-e15d-44f0-a7d5-7e23da59d0d6", + "id": "8b56a779-f1e8-454e-b2e9-7cebafaef37b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5851,7 +5851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "853b94c8-2c4d-43e1-8245-a32b56e17f4a", + "id": "5ce0df5f-ba28-4520-beb7-805113ca6749", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5942,7 +5942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb41632-f476-41f9-887e-4aff89df612d", + "id": "65eb349e-90fa-4c39-a001-0c3c34c7fe9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6033,7 +6033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d89095fa-9425-4a28-8217-d5d44e5db0c2", + "id": "6b1b8b34-26f4-457f-9a9a-3f8cbaa99d5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6136,7 +6136,7 @@ "description": "Use this API to implement and customize access request approval functionality.\nWith this functionality in place, administrators can delegate qualified users to review users' requests for access or managers' requests to revoke team members' access to applications, entitlements, or roles.\nThis enables more qualified users to review access requests and the others to spend their time on other tasks.\n\nIn Identity Security Cloud, users can request access to applications, entitlements, and roles, and managers can request that team members' access be revoked.\nFor applications and entitlements, administrators can set access profiles to require approval from the access profile owner, the application owner, the source owner, the requesting user's manager, or a governance group for access to be granted or revoked.\nFor roles, administrators can also set roles to allow access requests and require approval from the role owner, the requesting user's manager, or a governance group for access to be granted or revoked.\nIf the administrator designates a governance group as the required approver, any governance group member can approve the requests.\n\nWhen a user submits an access request, Identity Security Cloud sends the first required approver in the queue an email notification, based on the access request configuration's approval and reminder escalation configuration.\n\nIn Approvals in Identity Security Cloud, required approvers can view pending access requests under the Requested tab and approve or deny them, or the approvers can reassign the requests to different reviewers for approval.\nIf the required approver approves the request and is the only reviewer required, Identity Security Cloud grants or revokes access, based on the request.\nIf multiple reviewers are required, Identity Security Cloud sends the request to the next reviewer in the queue, based on the access request configuration's approval reminder and escalation configuration.\nThe required approver can then view any completed access requests under the Reviewed tab.\n\nRefer to [Access Requests](https://documentation.sailpoint.com/saas/help/requests/index.html) for more information about access request approvals.\n", "item": [ { - "id": "cfed46a8-5c09-47d1-9936-e458299b6042", + "id": "9ca27fda-d1c8-4abe-817d-d866bcb49b60", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -6160,7 +6160,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6196,7 +6196,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6205,7 +6205,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6221,7 +6221,7 @@ }, "response": [ { - "id": "de5f192f-a07d-481c-aafb-fb534a2be87d", + "id": "3a458af3-e175-4991-af68-935bc76ee773", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -6240,7 +6240,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6276,7 +6276,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6285,7 +6285,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6320,7 +6320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e16cba-31ed-442c-84f9-e41e66ff876c", + "id": "56b7e421-c216-4242-afe5-38285737bda4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6339,7 +6339,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6375,7 +6375,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6384,7 +6384,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6419,7 +6419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2b13297-c0e4-4443-93b0-b3586753406f", + "id": "a7954a35-1100-414f-9235-ce1166fa47ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6438,7 +6438,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6474,7 +6474,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6483,7 +6483,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6518,7 +6518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0965b242-85ad-4205-8053-7a208e23f574", + "id": "2452dc62-e043-4272-8cb0-5d703aa5aa79", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6537,7 +6537,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6573,7 +6573,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6582,7 +6582,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6617,7 +6617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a39ea7ea-64a7-4472-9435-dcc9fafc21c6", + "id": "ac5b6c2e-1f60-4bb1-ad57-f9d102ebf1a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6636,7 +6636,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6672,7 +6672,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6681,7 +6681,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6722,7 +6722,7 @@ } }, { - "id": "fef5a320-6c10-4dd8-9079-00887077fa64", + "id": "ae3af1bb-9057-4970-bfc9-bf5a87f0c66d", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -6746,7 +6746,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6782,7 +6782,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6791,7 +6791,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6807,7 +6807,7 @@ }, "response": [ { - "id": "c397dc3d-c691-4407-a3f0-aaa66012e75a", + "id": "f7976a02-8f5f-46fb-816c-dd24ac8162b6", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -6826,7 +6826,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6862,7 +6862,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6871,7 +6871,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -6906,7 +6906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4dc3132-6128-4408-9290-105ea6a6ab52", + "id": "74abd916-52a8-422e-b042-61976984bfe6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6925,7 +6925,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6961,7 +6961,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -6970,7 +6970,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -7005,7 +7005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9630a3cf-c985-451d-a702-af77a44954b0", + "id": "f0dade36-d30d-4294-b204-c1306cf4d883", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7024,7 +7024,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -7060,7 +7060,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -7069,7 +7069,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -7104,7 +7104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f00f637-41cd-4481-aa88-a4b77917cbc5", + "id": "4d6a1e1f-8b98-476d-b94a-5526481293ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7123,7 +7123,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -7159,7 +7159,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -7168,7 +7168,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -7203,7 +7203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9304dd65-6b2c-4e23-b10c-9572bfc29e1a", + "id": "4cce638b-2782-46e3-9ea3-8e5fe18392eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7222,7 +7222,7 @@ "type": "text/plain" }, "key": "owner-id", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -7258,7 +7258,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -7267,7 +7267,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -7308,7 +7308,7 @@ } }, { - "id": "e37b0ca1-5310-4d19-80da-3d3287904d3c", + "id": "1096419c-185b-4cb0-95fe-85a8fb413fac", "name": "Approve Access Request Approval", "request": { "name": "Approve Access Request Approval", @@ -7363,7 +7363,7 @@ }, "response": [ { - "id": "807ed87a-e31b-40bb-ae89-5a0ac8099671", + "id": "e814403e-b9ec-48c4-b1cc-e641499ec828", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7421,7 +7421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "132a4dc4-b276-4012-998c-019ff0f010a4", + "id": "f05d7e1d-beca-4666-8e9e-c19da71680b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7479,7 +7479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b25f96f4-55a5-4d6b-b29d-959da8d65614", + "id": "bf3d855b-568b-4ff8-84b1-101a6edc4326", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7537,7 +7537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115525ca-97e6-4b1d-b6c3-7c804d64d1b9", + "id": "ac8d1141-5c0e-4a6d-928d-93188259c273", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7595,7 +7595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336e1f1d-e35c-4c04-8a06-79a2f47e64e9", + "id": "e1755ec8-f927-4af2-bfb6-32af891d9051", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -7653,7 +7653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e4dd897-f302-4b77-b622-d483cd165056", + "id": "897eaf7d-14e3-4731-a7a9-d5f335bb0439", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7711,7 +7711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01d5e426-d8fd-402f-ba61-d4ca66b206e8", + "id": "1669226c-437e-43f2-a1c5-ba1e8011a522", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7775,7 +7775,7 @@ } }, { - "id": "ae5cebbe-a32c-4fe4-bc91-588b8878dbeb", + "id": "87f1b086-01cb-413c-a3ab-590030d33f01", "name": "Reject Access Request Approval", "request": { "name": "Reject Access Request Approval", @@ -7830,7 +7830,7 @@ }, "response": [ { - "id": "00acc2a0-2c4f-46d6-9ab3-993c23a89b40", + "id": "8c126906-b875-4782-9c41-18737f7fdfd3", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7888,7 +7888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8e4fb35-4150-4185-af64-7dba2a2e048a", + "id": "400c4f1e-0340-49db-9c61-1611c50a95f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7946,7 +7946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d2ca0d6-c15a-48ca-bde8-f051ed2ab108", + "id": "26866b26-5608-40d8-8142-7cbaee96d43d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8004,7 +8004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e389d51d-fdf5-4cce-828b-fb04626a5647", + "id": "e8f1fc27-69eb-487d-8019-3f1f85d10423", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8062,7 +8062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cef6e64-1455-477e-8a16-e5820e4350f6", + "id": "73bf59bd-8577-4403-ac78-8b8bb58eea54", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -8120,7 +8120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6ed9c88-b565-4389-8068-7b655570d287", + "id": "3c0134cb-3882-47e8-9cb5-9dfb88bf077b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8178,7 +8178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18a820bc-3702-4b77-8509-e4104b0e7b5a", + "id": "9a6dd8a3-013d-4700-84a9-b2670ca0635b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8242,7 +8242,7 @@ } }, { - "id": "926fff3c-deec-4db4-9ba7-d21daeb87766", + "id": "9d7da85f-3797-4eb8-b5cc-fa13412a0699", "name": "Forward Access Request Approval", "request": { "name": "Forward Access Request Approval", @@ -8286,7 +8286,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8297,7 +8297,7 @@ }, "response": [ { - "id": "23ac0237-5086-41f8-9be8-9f2a665abda1", + "id": "c94a454d-6cdc-4670-87cb-a1c919ad98a8", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -8333,7 +8333,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8355,7 +8355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b5b038d-e559-48e1-888b-6629002ab5e7", + "id": "5b3bc563-15db-4389-869d-b9cca5ee3117", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8391,7 +8391,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8413,7 +8413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8bdd318-a573-43b8-b885-126fc8b22e4e", + "id": "824a49d0-c523-4964-9103-47f653e3b506", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8449,7 +8449,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8471,7 +8471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a6a4000-650b-4843-9dd8-3d568fc6ffd5", + "id": "1082e908-2420-470b-bb2c-e2e3b04e36e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8507,7 +8507,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8529,7 +8529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad1d0f1-ad30-4de6-a1a8-c243c516614f", + "id": "b5574776-58bb-4636-9daf-81f1d3adbb9a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -8565,7 +8565,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8587,7 +8587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717cfab2-f418-4b80-b683-9aae6209b741", + "id": "54e4dbc0-6411-4cf9-8207-7ad9e281337e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8623,7 +8623,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8645,7 +8645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a093339a-0be7-4deb-90fc-68cddc124bae", + "id": "a664c749-6c5b-4fa9-ba6b-2b9754c7329a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8681,7 +8681,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"newOwnerId\": \"officia consectetur aliquip\",\n \"comment\": \"culpa enim\"\n}", + "raw": "{\n \"newOwnerId\": \"labore l\",\n \"comment\": \"minim fugiat quis officia non\"\n}", "options": { "raw": { "headerFamily": "json", @@ -8709,7 +8709,7 @@ } }, { - "id": "905444ba-557c-49b8-8545-e98e9569b377", + "id": "b17a690e-bb98-4f93-b841-03a66c8f2b2c", "name": "Get Access Requests Approvals Number", "request": { "name": "Get Access Requests Approvals Number", @@ -8758,7 +8758,7 @@ }, "response": [ { - "id": "da5a0566-74c6-486e-b75f-9796a18993e0", + "id": "1aab1883-9602-46d6-914a-bd33c84a8bde", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -8816,12 +8816,12 @@ "value": "application/json" } ], - "body": "{\n \"pending\": -52534536,\n \"approved\": 64115000,\n \"rejected\": 6784477\n}", + "body": "{\n \"pending\": 66411107,\n \"approved\": 37173805,\n \"rejected\": 84150254\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ec3c58c4-b5db-4efd-8c95-be890b2beb30", + "id": "0045b3a2-729c-433e-84bc-9c5089350f0e", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -8884,7 +8884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78fd930b-6e5b-464c-8474-7977be0577ab", + "id": "c4ab8fb0-7de2-4ff8-a16d-b90d188a070d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8947,7 +8947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42ea56d0-33b0-4942-b09c-8ef48e559089", + "id": "6ac90780-c576-498b-acb0-16acf5defb4d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9010,7 +9010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1973631f-f77d-4ed1-bdec-65f815370f3f", + "id": "193cc82b-c627-4dd6-a84e-ebcd08090284", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9073,7 +9073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8b403a5-bba2-4fea-8604-f327de352d3c", + "id": "7fd2f1b7-a694-40b7-89d5-800c74ffbb69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9148,7 +9148,7 @@ "description": "Use this API to implement access request identity metrics functionality.\nWith this functionality in place, access request reviewers can see relevant details about the requested access item and associated source activity. \nThis allows reviewers to see how many of the identities who share a manager with the access requester have this same type of access and how many of them have had activity in the related source. \nThis additional context about whether the access has been granted before and how often it has been used can help those approving access requests make more informed decisions.\n", "item": [ { - "id": "750f1809-26dd-4b82-a694-cb9201b7554b", + "id": "133d2bf3-6283-4be3-8106-9ce67ca6f974", "name": "Return access request identity metrics", "request": { "name": "Return access request identity metrics", @@ -9213,7 +9213,7 @@ }, "response": [ { - "id": "0a6166b6-d995-4f1b-8e83-72b4dea9d417", + "id": "47e7691c-392d-414a-a52c-b77c38a3d5d0", "name": "Summary of the resource access and source activity for the direct reports of the provided manager.", "originalRequest": { "url": { @@ -9261,7 +9261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbf758e0-5899-43f1-a6e4-2d3380404044", + "id": "a0188540-75f1-433e-a082-8b213814af10", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9309,7 +9309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e72fb395-1b49-4619-b6e1-c59226f0b10a", + "id": "4a72c14b-4d54-4bc9-9a9d-9e1658f590f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9357,7 +9357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa9a2ea4-2154-4cf8-a05d-1b612c250707", + "id": "d500b728-e151-4889-b0b0-ffb62523c2c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9405,7 +9405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a84f4830-6a09-4686-a96b-04d02a98e645", + "id": "623e2294-4146-4354-8e3b-00bad2401e7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9453,7 +9453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffd5731f-9439-44f9-b044-c11de2b8a303", + "id": "e6518d91-70c6-4159-aca8-c2921b6a8692", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9513,7 +9513,7 @@ "description": "Use this API to implement and customize access request functionality.\nWith this functionality in place, users can request access to applications, entitlements, or roles, and managers can request that team members' access be revoked.\nThis allows users to get access to the tools they need quickly and securely, and it allows managers to take away access to those tools.\n\nIdentity Security Cloud's Access Request service allows end users to request access that requires approval before it can be granted to users and enables qualified users to review those requests and approve or deny them.\n\nIn the Request Center in Identity Security Cloud, users can view available applications, roles, and entitlements and request access to them.\nIf the requested tools requires approval, the requests appear as 'Pending' under the My Requests tab until the required approver approves, rejects, or cancels them.\n\nUsers can use My Requests to track and/or cancel the requests.\n\nIn My Team on the Identity Security Cloud Home, managers can submit requests to revoke their team members' access.\nThey can use the My Requests tab under Request Center to track and/or cancel the requests.\n\nRefer to [Requesting Access](https://documentation.sailpoint.com/saas/user-help/requests/requesting_access.html) for more information about access requests.\n", "item": [ { - "id": "6e6a5818-ea5b-48bb-a629-21322bb8ecd1", + "id": "5c633f9c-d507-4131-8598-131887c6a9dc", "name": "Submit Access Request", "request": { "name": "Submit Access Request", @@ -9555,7 +9555,7 @@ }, "response": [ { - "id": "f53ffeda-8b78-4cda-a41a-8e0154104a5b", + "id": "c0daa421-959d-4703-a383-8c5d33d6b020", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -9611,7 +9611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a20783-e01c-40c1-a7a6-e8431a46af66", + "id": "673eba94-20a4-4b25-be91-b5048fa1263e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9667,7 +9667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e29e36c-a53a-4d0a-a493-452119062599", + "id": "1c1409a6-2fac-4317-96b2-3d7f01cf62eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9723,7 +9723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3265a5e0-5279-46d8-a5e2-05beb0cbd6fa", + "id": "db731337-b391-403a-9989-4e24f4ef337d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9779,7 +9779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1cf5a61-1622-409a-8746-5c94e0cc420e", + "id": "1317aa32-979c-4860-ab7a-ecf8d47c7d21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9835,7 +9835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f98e31c3-81b4-4989-b559-8c3de9e25c66", + "id": "27be4eaf-a5e7-4392-8da0-db3c3d2dff25", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9897,7 +9897,7 @@ } }, { - "id": "ab26a906-6bbf-4e80-a315-71719b1bf405", + "id": "d3aed231-9931-4724-be7e-e332a264e467", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -9940,7 +9940,7 @@ }, "response": [ { - "id": "d0044a10-9c7a-41ea-9ae8-cb747fc33512", + "id": "ecf48147-ddb5-4602-b6ea-78a6ca92404b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -9997,7 +9997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f9c98d6-4d5c-40fc-9e0b-bb754fdd28d0", + "id": "029078cc-8d75-43aa-9d5b-fc822eff7a3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10054,7 +10054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44c3fe72-9548-44ae-b750-757861ff54ef", + "id": "dc35fe5b-6aad-4458-9b9b-53a57760b59f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10111,7 +10111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a44d093-0eaa-406a-b914-64bc612968ea", + "id": "23c9a8f5-fcfa-443b-a7c0-5b18107d8afe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10168,7 +10168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ba21ad-5e53-4f5f-8031-78dc17b40267", + "id": "6aed23c7-7581-4d3f-b7df-3dc88b4d64b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -10225,7 +10225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c1e8000-ae4f-448a-b8d9-59cdc3b390a6", + "id": "292714f6-7639-4663-acdb-4c2684f927ca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10282,7 +10282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e2c6ff9-437e-4e80-8053-05313a8f27ce", + "id": "6c4fe386-2f1b-4ab9-91b5-1e314db1c914", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10345,7 +10345,7 @@ } }, { - "id": "77614843-4dee-4446-828b-9d21f5961eba", + "id": "6bdc4833-53be-4ce5-9ad6-517c98dbf80f", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -10388,7 +10388,7 @@ }, "response": [ { - "id": "a028bcfd-0192-4fd8-82f9-f17281aac77e", + "id": "cff05f1f-8393-4b5b-b293-80c6584652d5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -10445,7 +10445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73676f03-dace-453c-9d2c-3ab2841d5f9f", + "id": "22bcd81a-459e-4605-8f5c-a07e00cc76be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10502,7 +10502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0a3911b-3b20-46fd-a1d6-b29ad85c6214", + "id": "ec5dcf53-c6be-4838-ab74-b0269559fe2e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10559,7 +10559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c02b7e03-8154-4479-ace4-9e5b0c1c5314", + "id": "418d9e6e-c338-4200-9357-2c0bb9768ee5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10616,7 +10616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9cb8a96-d4b7-4830-950a-919c13d1bd94", + "id": "c13ee8c9-373e-40b8-82ca-3b6f864e8dc3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10673,7 +10673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0247b344-ff9b-4e46-b2bd-a6c867a788e0", + "id": "c0dc5734-7246-4524-9eb4-273996a89cd3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10736,7 +10736,7 @@ } }, { - "id": "20cb6452-a473-4f00-bfe5-cec510770de3", + "id": "b0b5d91c-ab36-4928-9cee-3018d38bef82", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -10765,7 +10765,7 @@ }, "response": [ { - "id": "28c82c42-c80c-49f8-88e3-210fc6ffa58b", + "id": "c75fee72-2801-4cdf-b368-71776e584cfe", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -10808,7 +10808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fbb049e-50fa-4664-b03b-14712580571e", + "id": "f212cd80-ffc9-4119-8621-e6bb747eb0c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10851,7 +10851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "532691d7-fe93-4d1e-b548-984773e7cd82", + "id": "a6eb95b9-e60b-47b0-a41c-d12b7f7426c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10894,7 +10894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca15c78-ed4e-4fe9-8964-cddb402d4db8", + "id": "cff0546b-35fd-4158-bfa7-280bd435786f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10937,7 +10937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aacda4d-c0a1-4103-a42b-1be8a46652d2", + "id": "a0ae3a6e-63aa-4216-aba0-f8ebfbece5f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10980,7 +10980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ccdf651-6c53-4227-a199-f207ee4c3ff0", + "id": "cff87222-21c2-4e72-b4bb-49ed8345e7b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11029,7 +11029,7 @@ } }, { - "id": "8f4bf286-e064-4213-a685-037a8e9b3c3a", + "id": "4770b609-9a88-41dd-9868-2fe71ef34f78", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -11071,7 +11071,7 @@ }, "response": [ { - "id": "5cdd2a1e-f5bc-4699-8368-762c1fe83f2f", + "id": "93b08b56-66b1-4bc2-a9a8-70bbeb669109", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -11127,7 +11127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa9093c8-de11-4865-a9ef-554231a0eff6", + "id": "c8bd0160-38a6-40a4-b42f-b566004e192b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11183,7 +11183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fa20604-e373-4e4f-88b6-cf2d76797a5c", + "id": "bdb56f84-ab0b-45e1-ba04-11f27a3094ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11239,7 +11239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827db337-598b-4e25-8083-c84aaa9ea538", + "id": "89347a0b-3fbf-4a4d-9cee-86cf7d7c9e65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11295,7 +11295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e17f2b4d-4b35-4fa0-ac7f-9780f9e22005", + "id": "85ed1b50-9f34-43b6-a3d5-871694bcc875", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11351,7 +11351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60306ace-1bcd-45f3-9ca6-a3933a35579f", + "id": "d095a6f4-fcd8-4b53-afe9-48aaa0a2fb3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11413,7 +11413,7 @@ } }, { - "id": "df85e659-9af6-4dc0-bffd-f72301edfb11", + "id": "15b3c536-87d0-40a9-b875-67f1996545bb", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -11533,7 +11533,7 @@ }, "response": [ { - "id": "4e27f50b-f735-4a40-a1dc-d6aba258291a", + "id": "692f849b-5734-45fc-a104-a6d26f7ee968", "name": "List of requested item statuses.", "originalRequest": { "url": { @@ -11667,7 +11667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "555feb72-fd37-4524-b12b-4bf3dcad9764", + "id": "fa8634de-8d48-42b1-ba32-32b3482a858f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11801,7 +11801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4a30d23-4c51-4cf5-860c-3b7ffbc2952a", + "id": "f315cbf6-8295-4c52-ae3f-56f22f059af6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11935,7 +11935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e15b3ed8-2fb1-4310-9052-aca9557b6d8c", + "id": "5ad737db-ecdc-4391-a2ef-f5dc9441b288", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12069,7 +12069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02dd7ad6-c55c-4bda-af0c-a2e7ede71ec1", + "id": "b17bcb31-d0c8-4f79-894c-ca629419bb9a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12203,7 +12203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3670427f-6558-4457-a682-ad32859a7dd0", + "id": "3e40b369-e4a5-419c-a7ff-ca4d66c1db1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12349,7 +12349,7 @@ "description": "Use this API to implement account activity tracking functionality.\nWith this functionality in place, users can track source account activity in Identity Security Cloud, which greatly improves traceability in the system.\n\nAn account activity refers to a log of each action performed on a source account. This is useful for auditing the changes that occur on an account throughout its life.\nIn Identity Security Cloud's Search, users can search for account activities and select the activity's row to get an overview of the activity's account action and view its progress, its involved sources, and its most basic metadata, such as the identity requesting the option and the recipient.\n\nAccount activity includes most actions Identity Security Cloud completes on source accounts. Users can search in Identity Security Cloud for the following account action types:\n\n- Access Request: These include any access requests the source account is involved in.\n\n- Account Attribute Updates: These include updates to a single attribute on an account on a source.\n\n- Account State Update: These include locking or unlocking actions on an account on a source.\n\n- Certification: These include actions removing an entitlement from an account on a source as a result of the entitlement's revocation during a certification.\n\n- Cloud Automated `Lifecyclestate`: These include automated lifecycle state changes that result in a source account's correlated identity being assigned to a different lifecycle state.\nIdentity Security Cloud replaces the `Lifecyclestate` variable with the name of the lifecycle state it has moved the account's identity to.\n\n- Identity Attribute Update: These include updates to a source account's correlated identity attributes as the result of a provisioning action.\nWhen you update an identity attribute that also updates an identity's lifecycle state, the cloud automated `Lifecyclestate` event also displays.\nAccount Activity does not include attribute updates that occur as a result of aggregation.\n\n- Identity Refresh: These include correlated identity refreshes that occur for an account on a source whenever the account's correlated identity profile gets a new role or updates.\nThese also include refreshes that occur whenever Identity Security Cloud assigns an application to the account's correlated identity based on the application's being assigned to All Users From Source or Specific Users From Source.\n\n- Lifecycle State Refresh: These include the actions that took place when a lifecycle state changed. This event only occurs after a cloud automated `Lifecyclestate` change or a lifecycle state change.\n\n- Lifecycle State Change: These include the account activities that result from an identity's manual assignment to a null lifecycle state.\n\n- Password Change: These include password changes on sources.\n\nRefer to [Account Activity](https://documentation.sailpoint.com/saas/help/search/index.html#account-activity) for more information about account activities.\n", "item": [ { - "id": "5e1c3c7e-4b88-4ec7-aa0c-865b64abce0b", + "id": "dd3679f5-5337-4a05-ab72-a38928c17839", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -12372,7 +12372,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12381,7 +12381,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12390,7 +12390,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12399,7 +12399,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12435,7 +12435,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12444,7 +12444,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -12460,7 +12460,7 @@ }, "response": [ { - "id": "11763ebe-2fec-49f8-b540-9f39f2eeb241", + "id": "7cd557ab-0308-4c23-a097-11076be5a334", "name": "List of account activities", "originalRequest": { "url": { @@ -12478,7 +12478,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12487,7 +12487,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12496,7 +12496,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12505,7 +12505,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12541,7 +12541,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12550,7 +12550,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -12580,12 +12580,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"Duisfe\": \"Ut dolore laborum\"\n },\n \"cancelable\": true,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"irurea\": \"nisi ullamc\",\n \"ullamcobc2\": \"cupidatat magna\"\n },\n \"cancelable\": true,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"id_6\": \"occaecat est dolor minim\",\n \"consecteturd\": \"sed exercitation\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"enim_da_\": \"officia aute\",\n \"cupidatat_3c3\": \"sit ipsum culpa sed\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d37b743-88eb-4d49-adfe-2dc9efe5e607", + "id": "2f1c7887-f450-458f-8f12-14e5e291d80e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12603,7 +12603,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12612,7 +12612,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12621,7 +12621,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12630,7 +12630,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12666,7 +12666,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12675,7 +12675,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -12710,7 +12710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23ded0f7-43e1-4ead-a6f6-898e35ea5dbe", + "id": "e969017b-0d0a-4872-8b7b-11e9718720c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12728,7 +12728,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12737,7 +12737,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12746,7 +12746,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12755,7 +12755,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12791,7 +12791,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12800,7 +12800,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -12835,7 +12835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc4333fb-569c-46d9-9313-4092d3a5a3e2", + "id": "fbf1e716-6cac-4a7d-9d88-5f02d2ad0151", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12853,7 +12853,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12862,7 +12862,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12871,7 +12871,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12880,7 +12880,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12916,7 +12916,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12925,7 +12925,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -12960,7 +12960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "465ff844-0df1-4e20-80a3-2b5c7b9e9ddd", + "id": "952df952-24d6-46a3-870e-d0d6e6288dae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12978,7 +12978,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12987,7 +12987,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -12996,7 +12996,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13005,7 +13005,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13041,7 +13041,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13050,7 +13050,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -13085,7 +13085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d70f822-f48f-40a5-a88f-a87e9b69f16c", + "id": "5071f4e1-d627-46c4-aae2-36e1a0204925", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13103,7 +13103,7 @@ "type": "text/plain" }, "key": "requested-for", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13112,7 +13112,7 @@ "type": "text/plain" }, "key": "requested-by", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13121,7 +13121,7 @@ "type": "text/plain" }, "key": "regarding-identity", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13130,7 +13130,7 @@ "type": "text/plain" }, "key": "type", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13166,7 +13166,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -13175,7 +13175,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -13216,7 +13216,7 @@ } }, { - "id": "7a3bbdb5-b5af-4c49-a3e8-c466432aff04", + "id": "485607e5-bebf-4e82-8dd1-26275ef14921", "name": "Get Account Activity", "request": { "name": "Get Account Activity", @@ -13257,7 +13257,7 @@ }, "response": [ { - "id": "5ed4a635-8841-4f11-b53d-0a0ad352710d", + "id": "15ff4a8b-3482-4b76-b476-0e1d252344c3", "name": "An account activity object", "originalRequest": { "url": { @@ -13296,12 +13296,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"exercitation_593\": \"officia proident eu est consequa\"\n },\n \"cancelable\": true,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"name\": \"2c9180835d2e5168015d32f890ca1581\",\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"completed\": \"2018-10-19T13:49:37.385Z\",\n \"completionStatus\": \"SUCCESS\",\n \"type\": \"appRequest\",\n \"requesterIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"targetIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"errors\": [\n \"sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds.\"\n ],\n \"warnings\": null,\n \"items\": [\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n },\n {\n \"id\": \"48c545831b264409a81befcabb0e3c5a\",\n \"name\": \"48c545831b264409a81befcabb0e3c5a\",\n \"requested\": \"2017-07-11T18:45:37.098Z\",\n \"approvalStatus\": \"PENDING\",\n \"provisioningStatus\": \"PENDING\",\n \"requesterComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"reviewerIdentitySummary\": {\n \"id\": \"ff80818155fe8c080155fe8d925b0316\",\n \"name\": \"SailPoint Services\",\n \"identityId\": \"c15b9f5cca5a4e9599eaa0e64fa921bd\",\n \"completed\": true\n },\n \"reviewerComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n },\n \"operation\": \"ADD\",\n \"attribute\": \"detectedRoles\",\n \"value\": \"Treasury Analyst [AccessProfile-1529010191212]\",\n \"nativeIdentity\": \"Sandie.Camero\",\n \"sourceId\": \"2c91808363ef85290164000587130c0c\",\n \"accountRequestInfo\": {\n \"requestedObjectId\": \"2c91808563ef85690164001c31140c0c\",\n \"requestedObjectName\": \"Treasury Analyst\",\n \"requestedObjectType\": \"ACCESS_PROFILE\"\n },\n \"clientMetadata\": {\n \"customKey1\": \"custom value 1\",\n \"customKey2\": \"custom value 2\"\n },\n \"removeDate\": \"2020-07-11T00:00:00Z\"\n }\n ],\n \"executionStatus\": \"COMPLETED\",\n \"clientMetadata\": {\n \"ine_\": \"adipisicing ex et reprehenderit\"\n },\n \"cancelable\": false,\n \"cancelComment\": {\n \"commenterId\": \"2c918084660f45d6016617daa9210584\",\n \"commenterName\": \"Adam Kennedy\",\n \"body\": \"Et quam massa maximus vivamus nisi ut urna tincidunt metus elementum erat.\",\n \"date\": \"2017-07-11T18:45:37.098Z\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8c1bbed3-3009-4c8f-8a7c-80358026bdf2", + "id": "a295b0a3-7079-4abb-8099-89f2cc1e110a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13345,7 +13345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cd38171-2866-4c9d-9400-d1876cdb2087", + "id": "60f86cf8-0bb9-4e31-a647-0391d7f1a916", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13389,7 +13389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f8c6099-a872-4402-a637-b87c71e0eeee", + "id": "1858dade-d82c-4ad8-a9b0-1c4abb19c0b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13433,7 +13433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2bbc3e8-e0ba-47e1-8847-8b5975623c11", + "id": "e590d786-b64b-4520-b9af-eb967cccc410", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13477,7 +13477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8cbbdaf-ca59-42c2-8c20-43d7e75f1db0", + "id": "e3e5a6ee-880a-4932-9eb9-b2107ea83766", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13521,7 +13521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6736ff1-1017-4ff2-9df5-61b860b48b67", + "id": "66cecc1d-7648-4281-ab24-c8b82b30ee77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13577,7 +13577,7 @@ "description": "Use this API to implement account aggregation progress tracking functionality.\nWith this functionality in place, administrators can view in-progress account aggregations, their statuses, and their relevant details.\n\nAn account aggregation refers to the process Identity Security Cloud uses to gather and load account data from a source into Identity Security Cloud.\n\nWhenever Identity Security Cloud is in the process of aggregating a source, it adds an entry to the Aggregation Activity Log, along with its relevant details.\nTo view aggregation activity, administrators can select the Connections drop-down menu, select Sources, and select the relevant source, select its Import Data tab, and select Account Aggregation.\nIn Account Aggregation, administrators can view the account aggregations' statuses and details in the Account Activity Log.\n\nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about account aggregations.\n", "item": [ { - "id": "9772dc3a-0565-4445-935f-0c53266b4356", + "id": "b0b24124-aedd-435c-8d70-57f6fa1d774b", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -13619,7 +13619,7 @@ }, "response": [ { - "id": "25a725e2-2afc-4bca-8a77-6a01818c8169", + "id": "c1a8ec4a-b2f9-4213-b834-124a7837e603", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -13664,7 +13664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67000688-b051-4cd8-84c9-edad2844eb5e", + "id": "a896a149-0753-4aac-b49e-9596a99564b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13709,7 +13709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b825e3df-7623-4f50-a17c-adbcaf411beb", + "id": "b97067f9-e552-4940-8d67-ea4cb3b4a09f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13754,7 +13754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a20a994c-5e9d-484f-9e0f-8356d77941cc", + "id": "3f10d373-f0ab-4bb2-94ab-dfe76d19a35c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13799,7 +13799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139ca81f-f7e3-4049-a234-33612d340412", + "id": "8cd0b19a-92a8-4b46-a80d-f238dc1d62c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13844,7 +13844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8c8a1db-5043-41b7-ac3b-ce91611ccb1e", + "id": "8ad3b1a7-5b51-4284-ae39-8d6c39564e4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13901,7 +13901,7 @@ "description": "Use this API to implement account usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.\nThis allows organizations to get the information they need to start optimizing and securing source account usage.\n", "item": [ { - "id": "553d9b6e-f9f7-4633-aead-d6be1c26c43d", + "id": "47969ba6-2499-499f-a1a6-e8f26dfe48aa", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -13980,7 +13980,7 @@ }, "response": [ { - "id": "25e48c24-b92f-43bd-8434-0481668add93", + "id": "6eb0954f-e875-40a8-8bf8-ecaeefe7f6bb", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -14062,7 +14062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94074203-a795-4538-90cb-c51222598724", + "id": "08d9b53e-59e1-4f82-8109-6b30176acc2f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14144,7 +14144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8484a79a-2ae7-486e-b5db-f3406026bcf6", + "id": "7b23804b-5a9d-42b7-88aa-1a39a06bc586", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14226,7 +14226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8239c5d1-33d7-462c-833f-24c3160474f2", + "id": "16d90306-d3dd-422e-a9fc-f97895f28a40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14308,7 +14308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0259170-dd65-47dc-9c83-48d3d7f5f603", + "id": "f2dc5603-a6c8-48c3-a758-ce337ce6f3de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14390,7 +14390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecdb572f-7e47-45c3-ae6b-e88b4613add7", + "id": "b678ec82-bddd-4bf6-b516-2612fac8987b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14484,7 +14484,7 @@ "description": "Use this API to implement and customize account functionality.\nWith this functionality in place, administrators can manage users' access across sources in Identity Security Cloud.\n\nIn Identity Security Cloud, an account refers to a user's account on a supported source.\nThis typically includes a unique identifier for the user, a unique password, a set of permissions associated with the source and a set of attributes. Identity Security Cloud loads accounts through the creation of sources in Identity Security Cloud.\n\nAdministrators can correlate users' identities with the users' accounts on the different sources they use.\nThis allows Identity Security Cloud to govern the access of identities and all their correlated accounts securely and cohesively.\n\nTo view the accounts on a source and their correlated identities, administrators can use the Connections drop-down menu, select Sources, select the relevant source, and select its Account tab.\n\nTo view and edit source account statuses for an identity in Identity Security Cloud, administrators can use the Identities drop-down menu, select Identity List, select the relevant identity, and select its Accounts tab.\nAdministrators can toggle an account's Actions to aggregate the account, enable/disable it, unlock it, or remove it from the identity.\n\nAccounts can have the following statuses:\n\n- Enabled: The account is enabled. The user can access it.\n\n- Disabled: The account is disabled, and the user cannot access it, but the identity is not disabled in Identity Security Cloud. This can occur when an administrator disables the account or when the user's lifecycle state changes.\n\n- Locked: The account is locked. This may occur when someone has entered an incorrect password for the account too many times.\n\n- Pending: The account is currently updating. This status typically lasts seconds.\n\nAdministrators can select the source account to view its attributes, entitlements, and the last time the account's password was changed.\n\nRefer to [Managing User Accounts](https://documentation.sailpoint.com/saas/help/common/users/user_access.html#managing-user-accounts) for more information about accounts.\n", "item": [ { - "id": "6aeda41f-ecea-4be7-9b2b-76f5e1e223c1", + "id": "3a31e495-d6e5-4da6-b7bf-1a3186118b54", "name": "Accounts List", "request": { "name": "Accounts List", @@ -14568,7 +14568,7 @@ }, "response": [ { - "id": "171929c5-29ac-41c5-8463-fc9ffdd8f47f", + "id": "90297307-71c8-4629-9d22-013b2cde4a9a", "name": "SlimAccounts", "originalRequest": { "url": { @@ -14666,7 +14666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b6aa68-3427-4d68-b792-4f46150e34cc", + "id": "772eaf92-47d1-4946-9fdb-c08dcd94cc5f", "name": "FullAccounts", "originalRequest": { "url": { @@ -14764,7 +14764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eff50d7d-9b0d-4a29-91b0-4eb2a10d9b86", + "id": "9371e95b-efdc-467b-a8ff-48f0340be784", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14862,7 +14862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fb5ddb3-909e-4a53-9a59-056e9a1ee77f", + "id": "344cd545-0308-4a56-b6a9-bc31a4946cf3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14960,7 +14960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ca03843-e22b-4ab7-9c12-0fcb43e5b608", + "id": "daf96cdf-5867-4ac2-87cc-823366883bef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15058,7 +15058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47e97928-f4de-4e9b-aefe-4f4eb73a8472", + "id": "b17794d1-1016-4922-8489-59991d1c2c92", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15156,7 +15156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26554c90-a62a-4e3c-ba5b-01abf35db1f8", + "id": "109be9a6-fbcb-43e3-922f-6fcdb872c6ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15260,7 +15260,7 @@ } }, { - "id": "29c716a8-fc6f-4560-95e7-eb426cc87744", + "id": "3d8b1bcd-bcd8-4876-9b04-f23a3ea7ad37", "name": "Create Account", "request": { "name": "Create Account", @@ -15302,7 +15302,7 @@ }, "response": [ { - "id": "f548a75f-e657-48b8-b0b1-f2d5afcb11ac", + "id": "31bc7d95-dd59-46e4-b7d9-574986a6244a", "name": "Async task details", "originalRequest": { "url": { @@ -15358,7 +15358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc5bb8c-dccc-4861-863b-0dfa663457c4", + "id": "c538d6b4-36c1-48a7-9374-81ba6768fca8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15414,7 +15414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a25e61ed-be6f-42bd-a477-2c5e95579bb7", + "id": "23ff6878-bd40-43af-8aa0-597c374357b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15470,7 +15470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4df567d-63d6-450d-b9a9-84b93a12cb72", + "id": "60f2fb34-45a4-4e90-be6a-47a5c59f837a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15526,7 +15526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "897fdd77-8646-4e65-a985-1729672a5275", + "id": "806f30de-72e5-42ee-87bb-ab000832c136", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15582,7 +15582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc1edc78-ecac-4271-9f0c-0544bb149ff2", + "id": "1c5facb2-ee60-467d-b92d-14f9f7cdc2a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15644,7 +15644,7 @@ } }, { - "id": "df3c1b0c-0662-49ba-aa24-1050d4b687cf", + "id": "4a1656cc-9d3f-4e66-90cb-84278a556284", "name": "Account Details", "request": { "name": "Account Details", @@ -15685,7 +15685,7 @@ }, "response": [ { - "id": "05e4a971-a967-4890-9a14-958158cbcd97", + "id": "36821030-3b43-4f3c-b846-62e5bd3cb1ef", "name": "Account object.", "originalRequest": { "url": { @@ -15729,7 +15729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abc9b550-345c-4b0d-b29a-6e360393759d", + "id": "57ec9693-2626-404f-b086-f352059e190d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15773,7 +15773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48118c3d-b685-4e87-b000-7934104c890f", + "id": "d00b482d-c8b3-4b49-8479-c8b844e72e52", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15817,7 +15817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6963e42e-9ee5-4781-966e-faf7f9b99ca6", + "id": "3ea9ac77-cbd8-4770-a421-d3ee21037545", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15861,7 +15861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f93a659-77ac-48ec-a614-2c5a1fe6ad07", + "id": "a0fb959d-6b3a-438c-9207-5a3f90880529", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15905,7 +15905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25633f7e-5b2b-4232-9258-722b98da57b3", + "id": "08ba9882-753f-4e2f-a1d6-e9d77569559e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15949,7 +15949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffd6cf71-488a-42dd-bfdf-9c2f13aed1ba", + "id": "9e51718c-5da5-43dc-b821-a8b88ab18b06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15999,7 +15999,7 @@ } }, { - "id": "d314f956-68a7-408d-bbcf-782ac36b4501", + "id": "1c7acfcb-6d51-4a83-a1dc-5c0bfd43599e", "name": "Update Account", "request": { "name": "Update Account", @@ -16053,7 +16053,7 @@ }, "response": [ { - "id": "98aef108-769f-4d40-9213-aadb0c6199c0", + "id": "18626436-8435-4c61-aa0f-5c9a9c299379", "name": "Accepted. Update request accepted and is in progress.", "originalRequest": { "url": { @@ -16110,7 +16110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "682a4ac5-2733-4d48-8ec4-411fe28ef5fb", + "id": "4fcca426-e875-4fea-8048-ef851566cf72", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16167,7 +16167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d02202c2-3076-4930-b4b1-25ac8c973e70", + "id": "3a4a68ee-6828-496b-9501-5cb0d59f780f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16224,7 +16224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f23bce1-580b-4d49-8cfe-ec2b03e4a44b", + "id": "f3d836dc-3f5c-42a6-8d95-207c34e5e72d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16281,7 +16281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "611de0ba-1b1f-42f5-b5e4-d03c30655d9c", + "id": "d5418fe1-3648-4798-aae5-5a4119c3d661", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16338,7 +16338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e37ec738-ca61-44a1-8106-5bcc8fdfe325", + "id": "954dfa6b-dfd8-4cc6-9fb7-8d9e1ccbc6c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16395,7 +16395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae9867ac-b5ce-4ec8-b990-a535cf0bed77", + "id": "41d231c4-9aaa-47dd-a435-d9e950177b4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16458,7 +16458,7 @@ } }, { - "id": "eb800ab0-d069-432d-bfcb-f044f59f12d1", + "id": "a22a4743-3da9-41d2-bccc-48ebb843f128", "name": "Update Account", "request": { "name": "Update Account", @@ -16512,7 +16512,7 @@ }, "response": [ { - "id": "36d723a7-c987-4d95-86c5-cba4d4c14d2d", + "id": "41558066-6541-4e0f-aec2-6cb713c37930", "name": "Async task details.", "originalRequest": { "url": { @@ -16569,7 +16569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e3fdb2-43df-4d6b-b359-a6fbbdb1c74f", + "id": "d764ca4b-c537-42b1-acd7-a4e92b5819ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16626,7 +16626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51df271f-9018-400b-9f07-d98002118695", + "id": "ed46753a-249d-4484-931d-58cccb89d071", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16683,7 +16683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae77c8f-f56c-4864-9f22-0a69c89dc2b4", + "id": "418623a9-5f71-4443-b083-dc03a06e9858", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16740,7 +16740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f011c87f-0440-498e-b5c8-0682bcafae0d", + "id": "5da560b3-c066-4300-adc2-06db395ec70f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16797,7 +16797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7be9ff65-b7bc-489c-b6fa-c7237f75ab29", + "id": "91ee9faf-aeb2-418a-a45f-4dfafab72d39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16854,7 +16854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9e710d-fa9e-42b2-92c8-27a0c4967713", + "id": "d00de9c2-a792-4d52-a201-3c5c27c2ef76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16917,7 +16917,7 @@ } }, { - "id": "1649cbf6-c1df-457c-b1a4-a3e3b533cd68", + "id": "7b56b4a5-fc7e-4fd4-a8dc-2facf04d7d54", "name": "Delete Account", "request": { "name": "Delete Account", @@ -16958,7 +16958,7 @@ }, "response": [ { - "id": "7f450b11-e17c-4713-9b54-19e9ac5c8275", + "id": "aaf2dc05-913b-47a8-b91f-184abfb610c8", "name": "Async task details.", "originalRequest": { "url": { @@ -17002,7 +17002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b0369dc-1c93-43bf-83f6-be6c4cdb85b7", + "id": "3593d5f3-1e34-4da9-ae92-1b001219d918", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17046,7 +17046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "998e433c-0fa9-4916-b650-ce5d9ff65c5e", + "id": "18e53b95-adb2-43b5-bf03-238055b9d811", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17090,7 +17090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5316f649-8393-43fe-967d-a321bcb49094", + "id": "45d2ddaf-a79d-4104-8369-e9f06874450a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17134,7 +17134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37b436dc-eb1f-4b52-8c4d-544fe9f2a09f", + "id": "c9361397-ea73-4080-8bf1-09fe4c931708", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17178,7 +17178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab90dc26-0288-4ed7-b93c-f8c142b19771", + "id": "2030042f-baf2-4f70-a1c5-9e32cb9546f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17222,7 +17222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87d2df8e-7778-4703-92e1-afefc608f8b5", + "id": "ca1e6775-9f94-4b89-ae08-a9807896465a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17272,7 +17272,7 @@ } }, { - "id": "8227c0a8-680e-4bf1-a405-174d6baf4cf7", + "id": "5fa358cd-90f0-483c-96d0-f91eee36fe8f", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -17342,7 +17342,7 @@ }, "response": [ { - "id": "b87ef14b-e270-47e9-93a7-cf26801ffc04", + "id": "c96f816e-85e9-40d6-a33f-e7bbfaeac2bf", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -17415,7 +17415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ba4f814-7d68-4197-8dca-8129bf1a1938", + "id": "1d8a854d-dc67-4e5b-b206-214f4658a926", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17488,7 +17488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a0387c3-b7f7-4191-8dfe-7f01e2a7b225", + "id": "9eae3b9c-c849-49e0-a068-d7d5ac8574d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17561,7 +17561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9494aa19-d2f6-479f-a778-f957af98c4e3", + "id": "cf547808-7059-4d07-a951-779978a4e545", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17634,7 +17634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2791a6f-ff33-487c-885a-afaf2d0d0c53", + "id": "fa0b66fe-e102-4986-b19a-ed624f5a7a68", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17707,7 +17707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8194a01a-e47c-4977-8cd5-121367323297", + "id": "6477536c-5802-48bb-9adc-57fb3e6082d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17780,7 +17780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c1db294-5c0d-40ae-a3f8-54085b15f9f7", + "id": "7bab43e3-c8ba-4806-a7bf-aaa21080b5df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17859,7 +17859,7 @@ } }, { - "id": "ce178066-fb39-4c45-b1c9-c91f7484670c", + "id": "8e3bac7b-66f6-4f21-97ba-91b8d304557c", "name": "Reload Account", "request": { "name": "Reload Account", @@ -17901,7 +17901,7 @@ }, "response": [ { - "id": "806a9208-1520-4167-a5ec-20e95d658ebb", + "id": "d45fcf58-b045-4f95-b308-c2fc7b4a8ae3", "name": "Async task details", "originalRequest": { "url": { @@ -17946,7 +17946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91922153-da3b-4b55-9e48-d46bebd6fd6f", + "id": "a898ed1a-4cd7-43db-8b18-aabc0595b248", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17991,7 +17991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f4486a8-2618-4485-94ef-2b231f3f4858", + "id": "6e025b6b-9988-4975-a458-155488d63720", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18036,7 +18036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb291d24-a3b7-492c-b1df-bb76c13d0c49", + "id": "4d59e5e2-cc01-4aab-adb3-c701b57a6663", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18081,7 +18081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53908574-64d0-42c1-a092-f11e92d04258", + "id": "21064b4e-ff9f-42b6-a654-0d0c7d2ef24b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18126,7 +18126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c8d1b1-4acc-4708-9142-25f1210d9512", + "id": "f83410c5-f488-40e1-9801-fb89e20e05ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18171,7 +18171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42c25334-4d3b-46b0-bf3a-7f68e907ee8c", + "id": "27ed7a6a-edd5-4016-a449-ad73dc762e58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18222,7 +18222,7 @@ } }, { - "id": "bf29d75b-e18f-46f4-bb14-89b43012b7b3", + "id": "9f6180ad-36d5-437f-b1f6-7c7c6437d53d", "name": "Enable Account", "request": { "name": "Enable Account", @@ -18277,7 +18277,7 @@ }, "response": [ { - "id": "3764001a-8300-445e-87c5-d49da1556136", + "id": "8020c438-dfc0-4149-90b2-cadc22893c1f", "name": "Async task details", "originalRequest": { "url": { @@ -18335,7 +18335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc0e79bb-40d4-4a4e-98fd-f2c946e832cb", + "id": "b508c33a-e047-4790-98bf-950637a21d74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18393,7 +18393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0795f3a-6ddd-468c-b5dd-0b89bf58d4e7", + "id": "78c025a2-d2aa-4ceb-a182-a4ceda893577", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18451,7 +18451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d57c1410-e716-4563-9043-645d2cf7813f", + "id": "5bd475c4-75a8-4145-aa24-4af4036e8c77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18509,7 +18509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca82b93-305f-428f-916c-97e4df26c1cd", + "id": "3e7e6da5-2ad2-45ea-bace-b0554998cb94", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18567,7 +18567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9534eea5-1d8c-474e-bb0e-0c9ceb38a70d", + "id": "e68fbb67-0961-49fd-a413-7e9cca3a884e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18625,7 +18625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82d59431-8bb3-4984-8f96-5c047103f4d3", + "id": "d1c400aa-1db2-4742-861e-191c09907b99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18689,7 +18689,7 @@ } }, { - "id": "53dc664f-990d-4730-af73-ef47e5b7ff61", + "id": "82af7245-18f5-4c9b-b8a8-dca887c960a8", "name": "Disable Account", "request": { "name": "Disable Account", @@ -18744,7 +18744,7 @@ }, "response": [ { - "id": "97d03a03-dc45-489a-b1bf-8336f23d9688", + "id": "d78a9ceb-57a7-4f4b-b6f6-dd992dd02f8d", "name": "Async task details", "originalRequest": { "url": { @@ -18802,7 +18802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d21dde1-ad60-45c6-89f5-127ba4927b32", + "id": "44b9a1b1-eb8e-4fa9-b507-a8240012c34e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18860,7 +18860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f4aa734-aca2-4c96-b2f7-2f10126e2685", + "id": "daeefa4c-9d07-43c2-a7f0-17b37f28f20c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18918,7 +18918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "922c0f68-b0b6-4656-b37f-3dce486ae3b6", + "id": "320ec8ee-0d2c-431a-9a10-aeafcefd2af7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18976,7 +18976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a51f1f-b194-483d-aca3-2f9ec9f04d31", + "id": "1d752ea3-b20d-4cc2-a276-e54ec305f9fd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19034,7 +19034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "babc9547-384a-48eb-b4cb-07d39aac2174", + "id": "faba0214-2048-4988-83c7-e1545d107130", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19092,7 +19092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ccf2a0c-470b-4396-97f0-5d323c7c0219", + "id": "f9e8e7c1-badc-48c4-b8b6-ded09844d71f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19156,7 +19156,7 @@ } }, { - "id": "25fa2d6d-ad3e-4357-b6f8-747db661c130", + "id": "65dc8e0a-2903-4fea-a031-5922efe84fab", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -19211,7 +19211,7 @@ }, "response": [ { - "id": "f1550f51-eb30-4054-93c1-5545b9a14625", + "id": "617d4254-7d20-4494-a3c8-ee16638e5186", "name": "Async task details", "originalRequest": { "url": { @@ -19269,7 +19269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdae0d4b-c636-43b2-bf76-f03bbf865eed", + "id": "1faf39d5-c166-4797-a74d-bd737fdfb51c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19327,7 +19327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e93e4137-e16d-4348-8f91-73eb5e135a00", + "id": "0fa17e56-e051-4a64-be97-272394cfe731", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19385,7 +19385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a6b2aa-a160-49b0-b328-0ce11654f428", + "id": "c6b641f3-1cdd-4d8e-b653-60b2c0665d4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19443,7 +19443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f393845-ff33-47bf-9777-fca873200c7b", + "id": "511f2260-99c6-4ab3-8088-2bf7b61d146e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19501,7 +19501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cc78d39-2265-455c-b355-bb071cb79cf8", + "id": "0168f458-06ef-4c5b-9ba8-15cfbab6f578", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19559,7 +19559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb1e35cd-e746-4102-8a88-dfd590286d36", + "id": "5fcec518-162b-4f66-b892-d9e32f6e8568", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19623,7 +19623,7 @@ } }, { - "id": "c52feb35-c8f4-42e6-9f6f-c5284aa6d562", + "id": "af18b9ed-89d0-4d4d-af12-ce80f5d191cf", "name": "Remove Account", "request": { "name": "Remove Account", @@ -19665,7 +19665,7 @@ }, "response": [ { - "id": "98b0918e-ca13-4ce5-a964-13d24ad28c8a", + "id": "03412bce-2b5c-4f61-b0ce-99b55d1bb57b", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -19710,7 +19710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6586e867-2731-4b68-acc5-a15fefae4d13", + "id": "81f81fb9-e7cc-4ca3-9859-16e7e211fd1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19755,7 +19755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b44fa8b-d2a0-4abe-88bb-ed3b82d69faa", + "id": "bca78aa6-9130-4098-98aa-35d49651f864", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19800,7 +19800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d23ebe39-9c71-4e11-ac7c-4742a97cfd1c", + "id": "b2b1bd8e-ebb1-4de9-b092-583af3d33854", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19845,7 +19845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9766dc5-e1c5-43f8-8993-f798081c2c58", + "id": "df10970c-125f-437d-8a2c-f073c319cc6b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19890,7 +19890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80a8b258-7717-4a45-985e-e24dc81558e3", + "id": "257f18c1-dbc6-4b5b-bd54-36d32eddb124", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19941,7 +19941,7 @@ } }, { - "id": "3a4cf47e-f323-46bf-a1a7-530ae0c8ad8e", + "id": "18464653-c680-4073-9fb8-406de1850c56", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -19983,7 +19983,7 @@ }, "response": [ { - "id": "874792b7-1c2e-49e3-bfae-22c726797d1e", + "id": "467918d1-8afa-4526-83cf-ecf11d364f47", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20028,7 +20028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "167ec25f-d624-40c8-863b-3da2ef91da82", + "id": "033c682c-2260-4bc3-bc6e-b8d37320d9ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20073,7 +20073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0504740d-5365-4b7a-891e-3a14ded9cf13", + "id": "2b46bca8-35e6-4b46-a873-c4fa0406f364", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20118,7 +20118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae5fdb7d-2ea2-4c9a-a3d9-978ce3397fc0", + "id": "6ae86f39-503e-4850-8e80-d554fe46cf29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20163,7 +20163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c4ef072-fb4a-4662-836b-ef72da89a1ad", + "id": "0fbc0e7c-179f-45e1-9a5f-c4d3e70746fa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20208,7 +20208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9330d914-1290-4d33-95a0-30910f0788d7", + "id": "361ceef7-4d87-4850-915d-2f628ccec7a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20253,7 +20253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52d908ba-741d-482d-99de-2d383937e8fd", + "id": "2bfc8e08-5623-4ad8-bb60-d3e03d9ec86e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20304,7 +20304,7 @@ } }, { - "id": "2e535994-d120-44b6-9961-986fd0c93394", + "id": "9d99910a-c9e3-4456-b76c-56a234dc4790", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -20346,7 +20346,7 @@ }, "response": [ { - "id": "c7002b9c-bb55-4c7b-a00c-6c626aeedaaf", + "id": "14e008f2-f263-461d-9b45-38db794ec1d7", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -20391,7 +20391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee34c9d-2ddf-42cd-9f08-321bd9057b74", + "id": "67dd2e7a-2f4a-40ad-a623-2b5549eb8fb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20436,7 +20436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc8e01ea-b1aa-466a-8bdc-343456ebf9e3", + "id": "a07ac014-4e41-45b8-82d4-c01c812a6020", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20481,7 +20481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d67a45d-e5f8-4186-af19-2de6e3a38a86", + "id": "44df49b9-eae7-4f41-b2c3-a94b2c8f97f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20526,7 +20526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d495e6b2-d000-4953-8eb3-027aaa1e4c38", + "id": "c261596a-4212-43de-924b-a70d664f0947", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20571,7 +20571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed4f8d17-5aa3-4d10-ba70-0ab6266d5373", + "id": "42e3e4e7-dfec-4520-9f37-ab407bb585f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20616,7 +20616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7efa05ff-3331-43ed-9d93-fd409de2c10a", + "id": "29d8556f-71c2-4058-bf4a-a1dab609084c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20667,7 +20667,7 @@ } }, { - "id": "db170193-77f9-43f4-b0cf-ff1f9926c242", + "id": "90641cdb-14c2-4920-88ce-2c03d9a10616", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -20710,7 +20710,7 @@ }, "response": [ { - "id": "04f971ac-f815-4d3c-b973-3662956bdaa6", + "id": "f3be2c18-0aec-493d-89db-9153982266a9", "name": "Bulk response details.", "originalRequest": { "url": { @@ -20767,7 +20767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc26ef47-1262-4f99-a9f6-ed0bc421d961", + "id": "0af16e01-0e36-4b4d-a6f8-ede4f62a7185", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20824,7 +20824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "146df112-db19-4d46-99d3-7516339faa7b", + "id": "2c3b3e92-24ce-41c9-84a6-8926548f6710", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20881,7 +20881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac6a238-ea02-4141-846e-c67eee788b8b", + "id": "7300ba41-fe2d-4ca4-a60c-85ef12c86401", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20938,7 +20938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca4e00c6-847f-4188-8cd0-7590fa52ee68", + "id": "a0b8b76b-91d5-4c42-b151-aabeebc6a7df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20995,7 +20995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f89ec87b-06b1-423c-9422-0903b6d9e978", + "id": "3be59723-2a6f-4b21-be30-fd7682592e1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21058,7 +21058,7 @@ } }, { - "id": "f774865c-0d3e-432b-a7ed-c44e2ad1016e", + "id": "e9e8c428-53a6-42f3-9ba3-4dd7bc5bebf6", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -21101,7 +21101,7 @@ }, "response": [ { - "id": "40b22417-ca5f-4ecc-bc43-0af5a4c138c6", + "id": "2414643e-b9e1-4ce7-bf6a-6aa58e165cf9", "name": "Bulk response details.", "originalRequest": { "url": { @@ -21158,7 +21158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "023c30e9-d5cc-4cc2-b473-adc45509f4c0", + "id": "546d15e7-bb98-4aa8-8411-b99fa4da73a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21215,7 +21215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba107dad-0777-474a-8c28-fb9050048904", + "id": "2d740481-f7f9-497a-8a65-0bd1e3b81eec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21272,7 +21272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47f515c6-1db6-4029-b8ff-ab587094d66e", + "id": "0f076fe3-d3e0-4078-ae59-0d34814ef1eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21329,7 +21329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b265c15-9bfb-4bf1-96e9-96a3f97a2c16", + "id": "d78a41a8-bf30-4813-815f-0616824589a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21386,7 +21386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a3a8c92-a0c3-4ef4-9386-ffba24763a24", + "id": "478bbc9c-3a19-4cb7-9829-6f7d233a6dd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21455,7 +21455,7 @@ "description": "Use this API to discover applications within your Okta connector and receive connector recommendations by manually uploading application names.\n", "item": [ { - "id": "6e671d7c-d681-4d9b-b15a-cead4ba48fa9", + "id": "8ef3b2bc-3d9f-4b15-8ca3-e2f46c66b5da", "name": "Download CSV Template for Discovery", "request": { "name": "Download CSV Template for Discovery", @@ -21484,7 +21484,7 @@ }, "response": [ { - "id": "a46bc2b1-49aa-4b6b-b45b-23d4bc6115a4", + "id": "6a418bdd-68f1-4f4e-b59c-41a1f16126d1", "name": "A CSV file download was successful.", "originalRequest": { "url": { @@ -21527,7 +21527,7 @@ "_postman_previewlanguage": "text" }, { - "id": "600df0dc-fc50-4ea7-b7fb-054da8c12208", + "id": "675d267e-f56d-4d33-8722-a650efcaf1e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21570,7 +21570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17c6bb85-936f-4b72-a2d4-42f2de008f9d", + "id": "1ba0ce37-b1b7-4e12-9155-901cbc00ec91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21613,7 +21613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdc28050-3f6e-4b03-ac51-152e523d31fa", + "id": "fa462a6d-bc44-4829-a3ee-ff7c9885d512", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21656,7 +21656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1acf4e1d-170f-4088-8973-17cf8b1b9101", + "id": "6fb3368e-2fc6-42b8-8d50-882ef2542a22", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21699,7 +21699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f318c834-fda9-4ee1-a771-62694d1afcbc", + "id": "bfa582fb-ed2d-4812-8680-e154a977b9e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21748,7 +21748,7 @@ } }, { - "id": "76761714-1c87-4980-b2cd-7f88350b58f3", + "id": "b35c974d-a85e-4ab7-9345-0b61186117e1", "name": "Upload CSV to Discover Applications", "request": { "name": "Upload CSV to Discover Applications", @@ -21793,7 +21793,7 @@ }, "response": [ { - "id": "1371213c-4d2a-4cd7-b85d-1f6e7f6a978b", + "id": "03a5dcf0-0d25-4f7f-a58a-635dedca78b6", "name": "The CSV has been successfully processed.", "originalRequest": { "url": { @@ -21842,7 +21842,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c38f7022-e4f6-4939-bcd9-62f786420db1", + "id": "0fbabc83-9333-488d-b55f-ea0ac7c7b974", "name": "Bad request - There was an error with the CSV format or validation failed (e.g., `application_name` missing). Error message should be provided in response.\n", "originalRequest": { "url": { @@ -21901,7 +21901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "805a3a88-4c66-4513-9fed-715c199b1ad5", + "id": "1e6fb2cc-0068-4ad6-a0cf-782f2ecea188", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21960,7 +21960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49f1605f-59c9-4043-ba89-fef126d46313", + "id": "18455049-bbd3-4f45-994d-aa44732945f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22019,7 +22019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41141402-b312-49f3-8f47-48da9865d8f6", + "id": "fbbe6011-701d-4803-9423-50361424aa66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22078,7 +22078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d222139b-2e62-4ee2-bf0e-f538f6715d5e", + "id": "1d0ed34b-ffe7-41be-bd0b-86f1fa075cd6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22143,7 +22143,7 @@ } }, { - "id": "41f0f83e-8d8b-4c93-9415-1231284c0adb", + "id": "60076173-3390-4a2b-aeec-ad07ab997aab", "name": "Retrieve discovered applications for tenant", "request": { "name": "Retrieve discovered applications for tenant", @@ -22218,7 +22218,7 @@ }, "response": [ { - "id": "ac6f2420-f5d2-4539-8921-8018e26b7e3d", + "id": "59ebb66a-83ec-49c7-b3a9-031adad4d7f9", "name": "Slim Discovered Application", "originalRequest": { "url": { @@ -22307,7 +22307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c539d54-4c80-4b33-b4da-53755a5d4721", + "id": "08e8f568-0d0c-494b-9ca9-2e21c8599eef", "name": "Discovered Application", "originalRequest": { "url": { @@ -22396,7 +22396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d48b55b5-5ebf-4e04-886a-dca0dc128b69", + "id": "b24f519a-9c4e-4cbb-9f65-043972dfcfa2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22485,7 +22485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99701aca-4a76-4ae6-8ee5-f81369bce910", + "id": "11d8d76e-67cf-4b86-b4dd-997faac0433e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22574,7 +22574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23620c26-0e98-4141-9213-4984372a27d9", + "id": "31828616-3a6e-4dda-ad1d-e5ce94404229", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22663,7 +22663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0d7cd9e-6bf0-411f-99d9-f0412db20e9a", + "id": "780eea5f-8693-4fe1-b8e8-a3682ba57174", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22752,7 +22752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59c75c9-3335-4537-a181-20c7d96223ad", + "id": "171cdcc4-6e2b-40b8-93fb-a0ca70b93dfa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22847,7 +22847,7 @@ } }, { - "id": "baabbd3b-f5b2-4ddf-b073-dc63d2d5cc38", + "id": "a1814099-f44b-4b81-9b4f-73bdc55896f8", "name": "Get Discovered Application by ID", "request": { "name": "Get Discovered Application by ID", @@ -22888,7 +22888,7 @@ }, "response": [ { - "id": "a8d7e385-99f7-43c0-ae19-2f026e285c1f", + "id": "caf16302-0fd8-41ba-b1a1-9eb3521e89d8", "name": "Returns the discovered application, along with its associated sources.", "originalRequest": { "url": { @@ -22932,7 +22932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f884cc2a-bf98-4bd3-b7c6-71617fe1fa8b", + "id": "cef72b50-594e-4435-befb-609ad7f50573", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22976,7 +22976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b41cdb09-90c4-4e3f-bd30-b93a7b622e38", + "id": "1c4db986-6a4e-4ec8-a3cb-402a84eadeac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23020,7 +23020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f02c4b33-cd35-4c25-9eff-d5ffc6dad1ae", + "id": "e5d17122-7175-47ea-808e-5c1108c8c741", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23064,7 +23064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de7cbc3a-fa83-4100-9fdf-0ea4a04d8cd6", + "id": "0ce620d0-0633-47aa-a923-3d7e83de7ab9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23108,7 +23108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95032d3f-cf93-4f6f-82ef-1fc3769dd5bc", + "id": "747e249e-6d2f-49bd-857e-14808b8f4cea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23158,7 +23158,7 @@ } }, { - "id": "c56d35e0-07f6-434f-b4df-6f3d112ed8e2", + "id": "bdb7967d-b4fb-4d40-831f-b500621f4791", "name": "Patch Discovered Application by ID", "request": { "name": "Patch Discovered Application by ID", @@ -23212,7 +23212,7 @@ }, "response": [ { - "id": "b5a07700-d0b4-42f5-9b80-377168760b62", + "id": "0f160b0a-b72a-4efc-8244-eba13139f64c", "name": "Dismiss an app", "originalRequest": { "url": { @@ -23269,7 +23269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43aa5e5d-2d68-4cad-b391-f406971ce11f", + "id": "69632648-4dd0-4143-b04a-0aa613880ded", "name": "Replace associated sources", "originalRequest": { "url": { @@ -23326,7 +23326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09c98510-e6b4-4eb0-9cb1-996dcd235c8c", + "id": "179fbbb3-ea12-4d75-bcb0-48ff5e9c239d", "name": "Add an associated source to a correlated application", "originalRequest": { "url": { @@ -23383,7 +23383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c3760a3-ea3b-4b6a-9552-bcc2f014477c", + "id": "1d41dca3-e893-42ff-8770-fbbef4a49625", "name": "Dismiss an app", "originalRequest": { "url": { @@ -23440,7 +23440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e822fe8b-66cd-42b3-9f76-abe8f5a5390e", + "id": "b16802b1-b531-454e-b719-e2b936d12831", "name": "Replace associated sources", "originalRequest": { "url": { @@ -23497,7 +23497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ef248e7-eacc-4a8e-9522-c3383cf39150", + "id": "becb1e37-098f-4f7f-9a4b-dfe687d8147e", "name": "Add an associated source to a correlated application", "originalRequest": { "url": { @@ -23554,7 +23554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079bea0f-8743-46c9-a247-e7b78e686469", + "id": "802f2e52-520b-4f20-bb92-28b97a7bc88c", "name": "Dismiss an app", "originalRequest": { "url": { @@ -23611,7 +23611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "612e4419-d594-4b49-91d0-2b75e413c155", + "id": "f62aa618-0c1f-4268-812c-b9d81912879c", "name": "Replace associated sources", "originalRequest": { "url": { @@ -23668,7 +23668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "989857c8-1829-46c6-8a61-5856aa14be7d", + "id": "c776b769-9744-4f55-bc0c-961484e51659", "name": "Add an associated source to a correlated application", "originalRequest": { "url": { @@ -23725,7 +23725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469bd2bc-7eb6-4d85-8e79-fbe34ef1af35", + "id": "433926ab-7588-4cdb-9707-eb9a8ab4c6ac", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -23782,7 +23782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cae593a-1d19-4b6b-9c83-fd773b5582e5", + "id": "ab7b6d14-c7b3-482a-adae-a5bfaf678d29", "name": "Replace associated sources", "originalRequest": { "url": { @@ -23839,7 +23839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75dc1743-1cf4-4b6f-ab9c-e5a07b04336e", + "id": "34c31d57-1892-4731-842d-195e017ac4f2", "name": "Add an associated source to a correlated application", "originalRequest": { "url": { @@ -23896,7 +23896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "575db50b-eb8c-4ac4-831a-ee3c0f702931", + "id": "f19deea4-efe2-4fdf-8182-719c4aef2c4f", "name": "Dismiss an app", "originalRequest": { "url": { @@ -23953,7 +23953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "199f38cd-a220-420f-9c17-8448bb3ae6e7", + "id": "f9812820-7a6f-4efe-992c-64c42484a6f3", "name": "Replace associated sources", "originalRequest": { "url": { @@ -24010,7 +24010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceba1b50-fbad-4f74-8fe7-b61c6c45284f", + "id": "001d363a-fcce-4e91-84a1-5b5913c10c13", "name": "Add an associated source to a correlated application", "originalRequest": { "url": { @@ -24067,7 +24067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "306ff37d-6aab-4eb7-85f4-7dbd0655dcae", + "id": "45bfb983-30ad-4d3a-89be-f06a5ce1b5f9", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -24124,7 +24124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c513200-658a-445c-ae23-8d34c9c7a3ee", + "id": "88dea209-d5f9-4feb-b3b7-447e65c9c4b3", "name": "Replace associated sources", "originalRequest": { "url": { @@ -24181,7 +24181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1085212f-dbf9-459d-88ba-b7ab23c3553c", + "id": "f5725bd9-1b45-43e1-8bc6-ba50cd2f3d01", "name": "Add an associated source to a correlated application", "originalRequest": { "url": { @@ -24250,7 +24250,7 @@ "description": "Use this API to implement approval functionality. With this functionality in place, you can get generic approvals and modify them. \n\nThe main advantages this API has vs [Access Request Approvals](https://developer.sailpoint.com/docs/api/beta/access-request-approvals) are that you can use it to get generic approvals individually or in batches and make changes to those approvals.\n", "item": [ { - "id": "4387fc2e-f8d3-4f06-85f6-06e7c99aea89", + "id": "31c760bf-b045-4e4a-9626-a73bc603621c", "name": "Get Approvals", "request": { "name": "Get Approvals", @@ -24307,7 +24307,7 @@ }, "response": [ { - "id": "41234250-f2aa-4072-bb67-5426f6eb8e08", + "id": "8cfaae4c-26e5-42be-a502-894231b4738b", "name": "List of approvals.", "originalRequest": { "url": { @@ -24378,7 +24378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac525524-16fc-438e-bb56-cf022da725b4", + "id": "3c22d9e6-2b72-4bea-bdd2-8ca92ac6c608", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24449,7 +24449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587b997b-1c4b-4522-81a8-39c35565e9a5", + "id": "9fd2e03a-72d9-4ce5-90a8-0b3071234e5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24520,7 +24520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8663d146-7af5-490a-9794-7c862fe91fa7", + "id": "bf352ac0-b3ae-4db1-b9d2-269d4a21a63c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24591,7 +24591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8f1fc2a-0483-4720-82ab-cc4d28ee4441", + "id": "dbf944c7-4c0b-4310-bd07-cdef315fb31f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24662,7 +24662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fbeef3b-a945-410e-b2a7-4093245946b3", + "id": "09d4dc60-0e6f-4e0e-8586-180b3c94bf8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24739,7 +24739,7 @@ } }, { - "id": "1d8038dc-296b-418c-8cdb-cc5d99c23bb6", + "id": "8ac056aa-d3c3-45be-8f3e-20a10913a255", "name": "Get Approval", "request": { "name": "Get Approval", @@ -24780,7 +24780,7 @@ }, "response": [ { - "id": "52ba4f3a-9cd7-4f9c-aef0-91f3446de8ed", + "id": "189f63a4-5c7d-4d3d-a6f9-c73e9277b417", "name": "Approval object", "originalRequest": { "url": { @@ -24824,7 +24824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294348d9-3302-42d9-9156-e2518b7e80c5", + "id": "e74cf43d-8e47-41b4-8770-aae46f21f133", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24868,7 +24868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5746165d-59af-46c7-b0e2-16274e46c012", + "id": "9e02d629-8880-43c3-95d3-86dc94c9f4c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24912,7 +24912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb7bffe2-d344-478a-babb-018dce18946f", + "id": "f8d6ebc2-3ac0-49ab-b73a-e0cda82ffa15", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24956,7 +24956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4ce66d-149d-4368-bc0c-ee3ad70947ef", + "id": "93066e53-e8cd-4222-8734-cd68304460dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25000,7 +25000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bd2f48b-2be2-4e92-8549-dab8cd33e296", + "id": "9c514713-63b3-4b12-89ec-728843d31169", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25056,7 +25056,7 @@ "description": "Use this API to implement source application functionality. With this functionality in place, you can create, customize, and manage applications within sources.\n", "item": [ { - "id": "23b4d6d5-99b6-416a-a2f7-e59905c6d16d", + "id": "2e162e57-accd-4479-b2d1-e66ba626faaf", "name": "Get source app by ID", "request": { "name": "Get source app by ID", @@ -25097,7 +25097,7 @@ }, "response": [ { - "id": "5955a42d-2689-4d09-8bd0-7909943505a3", + "id": "be75b09c-e888-466a-8b04-d01358c80911", "name": "Responds with the source app.", "originalRequest": { "url": { @@ -25141,7 +25141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6ca766b-23da-4129-9858-6223ca6af667", + "id": "74fb9927-b503-4016-b4fd-0541dbc98585", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25185,7 +25185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd732a64-dc68-4445-b3f7-cfd3ca4ed087", + "id": "7308f24f-c8e9-4464-b5de-af45c878341f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25229,7 +25229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6bd4863-983a-4b34-ad72-59df296fbbdd", + "id": "14f80e6d-dbcb-42f1-a627-c30412ab3ace", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25273,7 +25273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c7c2575-8d16-4360-93c7-c76306a59fc7", + "id": "e3bacbc3-7a4e-4635-8b4b-688cd2d4f87e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25317,7 +25317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33d367fc-5f01-46b6-9d8d-5c4cfaaa77bf", + "id": "a042bfc2-d939-49b6-a152-4b3d26979c41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25361,7 +25361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbc33ae9-60d8-42ee-8030-385d351c06b5", + "id": "339838ea-96d8-40de-8043-de566612c378", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25411,7 +25411,7 @@ } }, { - "id": "6694c757-f513-46ec-aebe-875520eabc42", + "id": "14be3230-3148-4be6-803e-6d5594ca2362", "name": "Patch source app by ID", "request": { "name": "Patch source app by ID", @@ -25465,7 +25465,7 @@ }, "response": [ { - "id": "8a4b7e05-1060-4142-94c5-9cfb52b217e1", + "id": "c5debd78-d434-4283-8fa0-746b1f64b76b", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -25522,7 +25522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5688ee3f-20de-4dab-ace9-b3f3ae9cdc1e", + "id": "4ed776ee-f3eb-4a2b-8735-c9fce98638b3", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -25579,7 +25579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52f882b7-c632-4fba-b888-5bcb5431350c", + "id": "9258117c-ad6b-4328-a1bd-63c482dc6414", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -25636,7 +25636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6268d09-3ed1-4527-beb8-c438a9353e3d", + "id": "1dc73448-b8b0-4563-a14b-5135ea26e030", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -25693,7 +25693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b3d4d55-46e6-4f4e-8045-35d06903bb36", + "id": "e5ece806-8530-47ab-96ca-9d32e50310df", "name": "Add access profile", "originalRequest": { "url": { @@ -25750,7 +25750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ab68a6-5b25-4c7d-bde8-4b2afb9409c7", + "id": "316dfbf8-b9bc-44a4-a01c-cf787647d65d", "name": "Replace access profiles", "originalRequest": { "url": { @@ -25807,7 +25807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23f501b6-b7db-49eb-aaa1-e239c8d430e9", + "id": "393d7c63-c898-4853-bbed-c95f21d65604", "name": "Remove access profile", "originalRequest": { "url": { @@ -25864,7 +25864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ea81613-8d0d-4428-89fd-41fb951f28ff", + "id": "e537c665-b54a-4a7e-82c1-7d1453bf7b2a", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -25921,7 +25921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4220f5f3-bbca-43c9-bb34-0f094c9ed561", + "id": "18883e47-2cdd-4cb5-a9c6-5e771efb885e", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -25978,7 +25978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e48f7d02-4739-4336-9fed-b9372a79b6f0", + "id": "9517b317-7cae-4e20-a460-0bf5155dd71e", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -26035,7 +26035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b75a14ae-66c2-467e-b6a7-85b33c238d22", + "id": "28c7d72c-c458-4731-9caf-25424046c8d4", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -26092,7 +26092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a624690f-1a55-409a-a391-31bdd9ef8432", + "id": "b80219dc-dfaa-4c29-b02a-8f0c2db486fb", "name": "Add access profile", "originalRequest": { "url": { @@ -26149,7 +26149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71114837-3187-49e3-9192-7fe308e27ab0", + "id": "3d0fd5d6-df96-43ac-a1dd-79d7c5426bfb", "name": "Replace access profiles", "originalRequest": { "url": { @@ -26206,7 +26206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d27b597-aa41-4f35-ac82-e11b74f7f9f4", + "id": "63ed31a2-8736-411a-aec1-c1d24be66a10", "name": "Remove access profile", "originalRequest": { "url": { @@ -26263,7 +26263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93abd4a7-3423-4f62-906d-33287da9bd27", + "id": "396cffee-4db7-48e4-ba73-4a19891d8557", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -26320,7 +26320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dc789c0-5398-486c-9e4c-5ede41041704", + "id": "b3e0c4f4-400f-4651-ad1b-9747e4a93937", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -26377,7 +26377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9478430c-eb44-47d9-8fe6-98698279a752", + "id": "b9750fb9-7940-473a-8b2d-7cd24b28c725", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -26434,7 +26434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2ec8c44-8fce-4494-93b9-389d852304c9", + "id": "f7fc49ab-11c7-43fd-b596-c839bc41bd34", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -26491,7 +26491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71b91339-cfe7-4be5-9cb7-ffa04a430877", + "id": "d0bd6854-b08d-418d-a4ef-ca8d5c8cdb55", "name": "Add access profile", "originalRequest": { "url": { @@ -26548,7 +26548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f15a8c2-ef48-4c83-a240-290e369d4027", + "id": "b1aec76a-f133-4028-989a-61c242950e07", "name": "Replace access profiles", "originalRequest": { "url": { @@ -26605,7 +26605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce3b67fb-8c00-42cd-b4a5-71277b0d9186", + "id": "b9ab774c-f0b4-4eb4-8d9a-c0d9b81cabd0", "name": "Remove access profile", "originalRequest": { "url": { @@ -26662,7 +26662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33cd4f8b-4231-4057-af61-376fee667979", + "id": "91a00865-a5ec-49e9-a832-d3fc46914943", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -26719,7 +26719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ddabb48-4f50-4453-a91c-65b6537ce689", + "id": "cb8f13c2-66fa-4c30-8e8d-973673fca6dd", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -26776,7 +26776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18eeb65b-1ae1-404f-8872-481df1b82319", + "id": "8433414b-ada4-4951-ade2-627a94f9d678", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -26833,7 +26833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee362ce2-d5a5-4117-be5d-a2e10bf290dd", + "id": "3ba685e8-9778-4209-8da7-b38ebd153651", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -26890,7 +26890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8a7e627-02d1-4c7d-8904-30cb6fe68dd6", + "id": "64d6c18a-cda3-467e-aed6-99da0ca98e58", "name": "Add access profile", "originalRequest": { "url": { @@ -26947,7 +26947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c79ebff8-3dbf-4eb1-b745-6a8a7a05dfa1", + "id": "d8913c24-ea6e-4b1a-bd72-533c19b008eb", "name": "Replace access profiles", "originalRequest": { "url": { @@ -27004,7 +27004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1729a5b-2f9d-481e-8abe-4db6af56c441", + "id": "1eec0a5b-4ea1-4161-9e5f-566b6116185c", "name": "Remove access profile", "originalRequest": { "url": { @@ -27061,7 +27061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55798ff8-8c47-436d-bbff-b4d3d03d8674", + "id": "c5e6c75a-9e5c-44fe-bab8-06530a8e4b3b", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -27118,7 +27118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee312223-4e6e-4f46-88ad-ece19badce27", + "id": "ba36c8cf-c747-4780-9c47-36e5dd0ce73b", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -27175,7 +27175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2beeaf5c-f7f7-4780-8f1a-8a6dd2e02259", + "id": "9bd7b250-ceda-4816-ba00-d4b7e8335321", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -27232,7 +27232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "718240a2-5b42-4745-9748-97d37ae2632f", + "id": "70935873-3084-4deb-96f3-e7fc3a755a2a", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -27289,7 +27289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96596af2-e3fb-404d-8d06-6cdfade6eb24", + "id": "9bbb41a2-059a-4fd3-bcc7-b229e81ad18b", "name": "Add access profile", "originalRequest": { "url": { @@ -27346,7 +27346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3379e3c-3109-4b6e-81c4-ca3ffd1156e0", + "id": "53f555d7-4060-4695-b81a-745f65f8af9f", "name": "Replace access profiles", "originalRequest": { "url": { @@ -27403,7 +27403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe7e15da-73d8-4df1-a346-87cf373dd394", + "id": "260f1df2-3c6f-4733-9494-2ab3a0048780", "name": "Remove access profile", "originalRequest": { "url": { @@ -27460,7 +27460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef1cb63f-53f4-46e6-947c-954be8113fe8", + "id": "5560139f-1242-4d73-ae98-c10427a78cda", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -27517,7 +27517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48371a03-be64-463a-a500-9e546da6bd6d", + "id": "7bb3b4ff-4a01-4ccd-afa4-f0d23237c351", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -27574,7 +27574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65223c1f-9fac-4294-9319-86b5bddc1e44", + "id": "1c2c8576-5b89-4431-8353-2ffb9287e7fa", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -27631,7 +27631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10553592-c9ea-40ab-bd82-2078b8760218", + "id": "33d69fd2-a9c9-47b0-9532-05108ffb3da8", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -27688,7 +27688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fdae3b7-bc75-4d22-9fda-f6409e332de5", + "id": "2a9c6eaf-029a-48dc-946b-ba4dd66c0a59", "name": "Add access profile", "originalRequest": { "url": { @@ -27745,7 +27745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9015659-1f26-4098-bb9f-8005ecfce79a", + "id": "67742140-10e8-4fd7-b50d-570d170c8440", "name": "Replace access profiles", "originalRequest": { "url": { @@ -27802,7 +27802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b3bb240-b068-4b3f-b38d-ba280dca74e5", + "id": "9109dc25-587f-4e7c-b1b7-e9686b908b38", "name": "Remove access profile", "originalRequest": { "url": { @@ -27859,7 +27859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce954863-840e-4222-b75a-8af0f5ceeb12", + "id": "50aac189-0453-4f5e-83f5-28c15e39fe1c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -27916,7 +27916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "243db520-d0a3-4a68-bb67-2753ad02e1be", + "id": "19f4e00f-d2d6-4f3a-b02f-c9eadf473f6d", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -27973,7 +27973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab846bac-bf0a-4f40-9cfd-26f423155fdc", + "id": "ac2669e5-5505-44da-a562-81238e5689fa", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -28030,7 +28030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e2a15f-88ec-42f9-b2b2-272757dfc557", + "id": "6102f73f-c219-443b-a9e5-e0145be7f0e5", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -28087,7 +28087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd1efbb9-2b17-42dd-bf67-fdfd0faa6933", + "id": "f8ac931f-52e5-4445-805c-c32e0b9b21af", "name": "Add access profile", "originalRequest": { "url": { @@ -28144,7 +28144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc0fcf24-b157-4a8d-9317-a70da2ac0e09", + "id": "77136ba3-c339-4c82-b753-0f9821172507", "name": "Replace access profiles", "originalRequest": { "url": { @@ -28201,7 +28201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cb0927e-8d46-42a2-862b-ce264e777f51", + "id": "dcea0469-3e02-4edb-9dd9-57844c7466f6", "name": "Remove access profile", "originalRequest": { "url": { @@ -28264,7 +28264,7 @@ } }, { - "id": "10b726a8-d5b2-4a89-966d-0da0a7725d93", + "id": "9d261161-77d4-435e-849f-6df882d1e93b", "name": "Delete source app by ID", "request": { "name": "Delete source app by ID", @@ -28305,7 +28305,7 @@ }, "response": [ { - "id": "111eafaa-a1fe-49d3-91c7-f7749bbeee71", + "id": "3c14c658-ea64-437f-9cee-5ddb38bab185", "name": "Responds with the source app as deleted.", "originalRequest": { "url": { @@ -28349,7 +28349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c990816e-3435-4850-b8f5-acb4cd946108", + "id": "f1af4758-1489-4d8a-a1a9-054e3aafb4b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28393,7 +28393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9862ab7-128f-45d8-95a7-4cf308f99a50", + "id": "a503fe19-1e70-44f5-b887-9f6fc93dc814", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28437,7 +28437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b36d6f-fe35-4c1b-a823-005067940bb4", + "id": "9f056ecd-93da-43f2-821e-ecaa1a3c14df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28481,7 +28481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b371c7-60bb-4f65-8e23-f658824b05e1", + "id": "2cefc497-45b0-49ca-b275-827ffef8c0c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28525,7 +28525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d395b4-0c07-476c-9f42-a2737fd8c6fa", + "id": "dc44c75e-29c1-432a-a83a-2cb5eafdd0ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28575,7 +28575,7 @@ } }, { - "id": "f7ae5e37-83c9-42ea-a9be-64dad8d2c2e9", + "id": "17992782-d093-4a7f-ae09-f4d50497c62e", "name": "Bulk update source apps", "request": { "name": "Bulk update source apps", @@ -28618,7 +28618,7 @@ }, "response": [ { - "id": "95baa7cf-5262-4177-848e-bf184a3e18d0", + "id": "715c47ad-b6c4-4b93-a435-ac3d6165c572", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -28665,7 +28665,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f1090bc1-5031-43e7-b349-0adf5b34dfb5", + "id": "ef955c5a-8942-4259-a1c3-f236f6bd59e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28722,7 +28722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5e8679d-be01-49de-996a-183506d490dd", + "id": "f98fe655-b49e-41d5-8a08-5cc6a758628e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28779,7 +28779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a9fb00c-2b24-4e29-b139-e4c5f5bea968", + "id": "8cad4742-b869-43c5-8403-f124d2026901", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28836,7 +28836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8a9e89c-2850-4ef3-9b01-98b4ce5f8b85", + "id": "21825086-60f0-43b2-ae26-5ec515d74ac6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28893,7 +28893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfc70350-d0ed-43dc-a120-79e718ebe8f7", + "id": "4607cc96-5806-43ed-997b-895ae4dea847", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28950,7 +28950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66ef181b-e3d7-4b68-9268-d119f95e8e84", + "id": "8e729880-aed8-4e9b-86ae-89836010409c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29013,7 +29013,7 @@ } }, { - "id": "fb85c895-328c-4b65-b5b8-04e467b783a9", + "id": "61e6bc54-b859-43b6-9a2d-c23288e41978", "name": "List assigned source apps", "request": { "name": "List assigned source apps", @@ -29080,7 +29080,7 @@ }, "response": [ { - "id": "f3918b1a-f296-44e1-b901-f24f7df8e216", + "id": "a62e911d-b144-40dc-a40f-01c5a335e4a5", "name": "List of source apps", "originalRequest": { "url": { @@ -29161,7 +29161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01a35925-50c2-4aeb-a4f3-006e5b3f185f", + "id": "45fd16ec-5186-4c1a-8418-d00e45266321", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29242,7 +29242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e78a6b51-b46f-404f-8a4a-9df08bc6d934", + "id": "4582eb53-6563-4d94-b92e-206f8c6de2da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29323,7 +29323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe64814f-409c-4f97-bc56-608e00bfb563", + "id": "6bb6fde3-8f16-467b-ad7a-9763cf6eb9fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29404,7 +29404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53022b6-3b21-4f7f-92d6-9642706b29d9", + "id": "79d75477-450a-4c89-b8fe-56d60435281d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29485,7 +29485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0162d258-27d4-4481-bbd7-39c1782457f0", + "id": "16133997-edb9-45a6-9106-98cb5bb256ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29572,7 +29572,7 @@ } }, { - "id": "49a9ee3e-48bc-4bba-a0e8-2ddd8d184395", + "id": "f2968821-f57a-4da8-852d-e57897f9135b", "name": "List available source apps", "request": { "name": "List available source apps", @@ -29638,7 +29638,7 @@ }, "response": [ { - "id": "332a03c7-dd5f-48a5-b6da-8d411dfd259b", + "id": "eeaa6c5d-d8d7-4a3f-8589-374127237f1d", "name": "List of source apps", "originalRequest": { "url": { @@ -29718,7 +29718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf79c51-1a88-4d07-b6c3-619f357e7929", + "id": "581464b2-0d2f-41a2-9805-3fd205a6aac2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29798,7 +29798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb674877-c56b-4bb0-b4ca-29feda547306", + "id": "1d2ded35-4c0e-4157-82dd-301a2135cb9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29878,7 +29878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be3bd290-c761-464e-a2ef-f57e32a2f261", + "id": "74a51dd8-a5d2-4bec-a33d-f49083efc76d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29958,7 +29958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfde3a6e-9cfd-4bf1-9602-c8230954fa68", + "id": "a66e118b-623e-4a40-ae80-ab86c297ca63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30038,7 +30038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14bd1ce5-2fa9-4df5-988a-cb3f62295acc", + "id": "842fe152-f9ba-4beb-bc5a-89cc9b2b9a66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30124,7 +30124,7 @@ } }, { - "id": "c1bbb878-e9fe-4771-a674-5356dccfdd98", + "id": "5d4209cf-2196-403e-a384-8f4b076a6d3c", "name": "Create source app", "request": { "name": "Create source app", @@ -30166,7 +30166,7 @@ }, "response": [ { - "id": "9afb452f-4be0-4d28-97f2-bed12ede4a0e", + "id": "613b8d50-693c-4243-a882-18c16ef3a10a", "name": "Responds with the source app as created.", "originalRequest": { "url": { @@ -30222,7 +30222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb7299be-c3d8-490a-a5d8-83d800c29ac9", + "id": "cc55e25c-761d-47ba-a206-d1abcc57f303", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30278,7 +30278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38b099c4-482d-4148-8304-bc0a035bfd4f", + "id": "0f6a79b1-2c19-491a-988c-223618f836e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30334,7 +30334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e3caf72-a7e6-487f-bb89-e08eceb27fae", + "id": "657345b2-8128-4ef2-bab6-a9af5f6af4e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30390,7 +30390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cf87a82-52b6-4e02-a4be-904db1627103", + "id": "ddc8efd3-78c7-4b4d-83dc-ea08cabc0e5a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30446,7 +30446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0471f247-b0d8-4e75-b671-15131c0e773b", + "id": "ecf16581-b5f9-498d-8536-9e6e57055aab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30508,7 +30508,7 @@ } }, { - "id": "9333e530-ed4f-4961-b24c-bf0fcf2f7f69", + "id": "046cb1b0-11ea-4b33-8e8a-f3f15b06bca6", "name": "List all source apps", "request": { "name": "List all source apps", @@ -30575,7 +30575,7 @@ }, "response": [ { - "id": "1e22e086-4de3-455a-93fd-d2520c5ef970", + "id": "6a08531f-8bbb-4507-962c-e56ff8781d58", "name": "List of source apps", "originalRequest": { "url": { @@ -30656,7 +30656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32364366-66db-46f3-8fc3-9fca2acd5b76", + "id": "eb2b2df5-07b7-45cb-914b-1d7cd0648047", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30737,7 +30737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7907d87d-382b-404e-8d65-11c714e3e367", + "id": "3ac7b590-b472-4447-8581-6253bf018c41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30818,7 +30818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ccd2db-8bea-44c2-8556-cf04b95ab5f7", + "id": "dde54ff4-8940-46a0-8557-7afac91213af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30899,7 +30899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78d5c2ce-219f-449b-8d65-e76020539868", + "id": "260e0d9b-9657-4490-8e45-ca38e1f5ab3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30980,7 +30980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85b19eb5-862f-4eaf-a8dc-ce1ad9f59645", + "id": "073b823c-121a-4ec2-afa5-e4a0888b4d21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31067,7 +31067,7 @@ } }, { - "id": "70d8655f-a8f5-4513-9b35-220a8a631ff2", + "id": "d78999b1-fa59-4a78-924e-966eda833d30", "name": "List access profiles for the specified source app", "request": { "name": "List access profiles for the specified source app", @@ -31128,7 +31128,7 @@ }, "response": [ { - "id": "dc3c2f1e-9f95-4815-a1bc-560307a81f29", + "id": "3dab4a8f-f236-4a8b-9e1e-cfc4676fcd53", "name": "List of access profiles for the specified source app", "originalRequest": { "url": { @@ -31192,7 +31192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ccc41eb-a0b7-4022-bd94-f6e7a0f630b3", + "id": "e020bda6-589a-430d-9c1d-8705a2ef016c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31256,7 +31256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ab9f6b6-7c49-4a09-82df-8d7360e7e09d", + "id": "5239c664-cff7-44f2-960f-4db6ab9dd58c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31320,7 +31320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "743c08b6-960b-4db1-8881-8e9c502dc021", + "id": "fe8aaf31-21f3-48d3-a48a-47437adcc15c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31384,7 +31384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aeb3463-b8f1-4043-955a-d02b480387d7", + "id": "353493fc-a1db-4de2-9ffc-5e3ecf2cc9b3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31448,7 +31448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211164db-ce15-4af3-882c-feaeef57942c", + "id": "2b40e5ec-941a-4ca5-a650-e60d82eb01bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31518,7 +31518,7 @@ } }, { - "id": "c315fa0a-dfc1-4ddd-89ba-a4f3309f6a46", + "id": "15566d6d-cf57-46f0-85c6-8bbf0abe02ff", "name": "Bulk remove access profiles from the specified source app", "request": { "name": "Bulk remove access profiles from the specified source app", @@ -31584,7 +31584,7 @@ }, "response": [ { - "id": "90a35bad-1004-4bcd-928c-7bc42d49454a", + "id": "d63b2862-a272-4706-8bb4-578926b23815", "name": "The final list of access profiles for the specified source app", "originalRequest": { "url": { @@ -31653,7 +31653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9289f051-3faf-45bb-9174-bdc7c80cdeb9", + "id": "341cc173-9d05-4bdf-8e5b-0cf1fc0ee014", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31722,7 +31722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98eb5dd1-8626-46d3-8a12-475857b3fba4", + "id": "ea44e5e7-6549-4fbe-af15-1c9fc3cd0a83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31791,7 +31791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bcc2ad8-defe-4d43-8083-94065e218fd8", + "id": "105f158c-49ce-4e62-ae4f-7b96ae5f04ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31860,7 +31860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5ee4022-388d-44d1-b83b-1a4e36f9a325", + "id": "ab9352b3-403b-4d17-b9ec-ad46eff7b8c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31929,7 +31929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93694773-32fd-4bb8-8b8c-f16c001162f4", + "id": "3d8364f8-a702-4f42-9511-00c37a14e621", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32004,7 +32004,7 @@ } }, { - "id": "e12be747-ba53-4c25-8abd-42df0d5727c9", + "id": "fdbc46e1-18dd-4934-af1e-3797966c88d4", "name": "Patch user app by ID", "request": { "name": "Patch user app by ID", @@ -32058,7 +32058,7 @@ }, "response": [ { - "id": "d02f0a18-6243-493f-abc6-e6b97c144174", + "id": "a90184c0-c794-4589-9d9d-efec8b6986ca", "name": "Responds with the user app as updated.", "originalRequest": { "url": { @@ -32115,7 +32115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec601e91-829f-445f-93e7-b86286ebe90b", + "id": "ab09c7d2-e316-41ee-af34-498c6bedf0ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32172,7 +32172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0406728d-fc7d-4e16-bb99-619c7ae01ae1", + "id": "68cfdf55-b658-440a-a176-f0d6cf8fced0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32229,7 +32229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "360047c8-a0cb-4e4b-b15a-b4e8c75b1742", + "id": "44eee630-7239-4b3e-acad-5131f30cedd2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32286,7 +32286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa6b43b0-0dd2-4ce2-a08f-d30cb4117f9a", + "id": "543cac20-3b9a-4393-8ac2-2b1dd0aaca90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32343,7 +32343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25da732c-32d2-4393-9c9a-d3c987b78fc2", + "id": "deee3877-6c7e-49eb-b1d0-9c9383e3ff95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32400,7 +32400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c6a2971-9118-4bb0-b650-3e3992137a9f", + "id": "747d1298-1f1a-4d22-9913-dede5d097456", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32463,7 +32463,7 @@ } }, { - "id": "b6e1ca82-82bf-4c0a-8ecf-2c9512daff5c", + "id": "68b87c9a-94cb-44f7-b2a1-998d0cdaaabc", "name": "List available accounts for user app", "request": { "name": "List available accounts for user app", @@ -32524,7 +32524,7 @@ }, "response": [ { - "id": "aa71c82a-b433-4f4e-addd-0ec038122d0b", + "id": "c8b62a24-d561-493a-9eba-6764c45a6011", "name": "List of available accounts for the specified user app", "originalRequest": { "url": { @@ -32588,7 +32588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143e2af9-329a-4989-96ea-1b21db8186db", + "id": "c4e2aaac-93fa-4859-8cc3-1edfe96e722f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32652,7 +32652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6423a7f-f87f-46a9-849c-31baf1f7de57", + "id": "75e8a5ec-9fa8-47fe-b0ea-277211128c8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32716,7 +32716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a570dee-a9cb-4b6b-9c69-4f9d5c60dfef", + "id": "5462c7dc-664d-4d61-8747-b228a30f9f6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32780,7 +32780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74b5e9eb-dcc1-4e06-ab2d-0e38254c2f9b", + "id": "eb2dca84-4b17-4e5e-9715-6f372c0bfca7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32844,7 +32844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3342868d-7a41-4d8f-bd41-1b3f3fe70051", + "id": "015af04f-13ae-42bc-ae7c-6581280beff2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32914,7 +32914,7 @@ } }, { - "id": "5110460c-973a-4bb0-ae10-193981141572", + "id": "a3b6a713-539a-49be-b859-d23cddeb68bb", "name": "List owned user apps", "request": { "name": "List owned user apps", @@ -32971,7 +32971,7 @@ }, "response": [ { - "id": "452f3a46-342f-407f-869c-a87932cd7927", + "id": "15df2b44-8f6d-45f8-8379-20b7acdff5b7", "name": "List of user apps", "originalRequest": { "url": { @@ -33042,7 +33042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16bd70be-f953-43dc-8942-92f8717898ba", + "id": "b74dd2ef-3c7f-4c11-bfbc-f7e74282de43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33113,7 +33113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94bcfe34-7f08-4af4-a80b-259fa3b6295d", + "id": "924f12ea-b2a5-43b8-9b55-fb0e5c88f9f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33184,7 +33184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424ff6b0-f3df-4fef-959d-28c642e673f6", + "id": "49d3f90e-32cd-4b72-9b76-7892780d7f28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33255,7 +33255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb4fda66-108c-4b37-8992-52a872456380", + "id": "b592a2ce-55db-4739-ab9e-c024abc76252", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33326,7 +33326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56cb0920-9dce-4745-bca9-6410bab1034d", + "id": "1238005d-5250-4cc0-be08-58cf1f81ce85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33403,7 +33403,7 @@ } }, { - "id": "2b208587-d81f-4744-81e3-4ed9b3289fa1", + "id": "832ae51d-09a0-4945-bb61-d9374dd8055e", "name": "List all user apps", "request": { "name": "List all user apps", @@ -33461,7 +33461,7 @@ }, "response": [ { - "id": "c553237c-2fe0-4c80-a94a-85e3a57376c8", + "id": "12cd83ae-ef47-478b-87de-7c0f42de3898", "name": "List of user apps", "originalRequest": { "url": { @@ -33533,7 +33533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d38ccf1-3477-42f7-9974-14b9a85397e7", + "id": "34bd8f65-01d9-4f2f-b765-488f660d61b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33605,7 +33605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4ccaea6-8cb1-4e28-94c6-a5f4a5398dbe", + "id": "b80949a5-0b52-4006-9ba8-5fb7144024d7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33677,7 +33677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46fd92a-068c-4ab9-898b-763038138c7b", + "id": "a89a64a7-32b0-4d3c-87b0-89f0d22bf35a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33749,7 +33749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8860ba5f-f4de-4f1c-b7f0-89979b38439b", + "id": "fe857cbf-f19e-4ad7-ac69-866e5ba89afc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33821,7 +33821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9998e2e-3c79-490d-bf18-e42360c33386", + "id": "5542400d-6f5b-4de1-976d-4e47d83cc02c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33905,7 +33905,7 @@ "description": "Auth Profile - Represents authentication configuration for an Identity Profile. This object gets created when an Identity Profile is created.\n\nAPIs can be used to retrieve and update Auth Profiles.\n", "item": [ { - "id": "1a005d28-f68d-45aa-855f-5a00f083877c", + "id": "ecdd1dc4-c005-4161-8357-ed0e04f39ad3", "name": "Get list of Auth Profiles.", "request": { "name": "Get list of Auth Profiles.", @@ -33934,7 +33934,7 @@ }, "response": [ { - "id": "918615c1-2702-4104-83f3-e5c7a1e62532", + "id": "00c8267d-0627-4cb2-a523-665040cd5e52", "name": "List of Auth Profiles", "originalRequest": { "url": { @@ -33977,7 +33977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "284dd248-edde-4542-807c-542af7719543", + "id": "5497485d-662b-4788-9564-661594b3a875", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34020,7 +34020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a7fe10a-fedd-44ad-a2b6-bef13cd471b3", + "id": "9715f47f-764f-4d2a-8c29-02f0761368eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34063,7 +34063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de93951b-7956-422b-a86e-9cfa917ea178", + "id": "3a455ba0-3092-490c-872d-39245dfc4852", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34106,7 +34106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09bf62fa-867c-4d7c-b8a5-3338e5e43ad3", + "id": "e985af1e-504f-49c2-83b5-b90179d6b473", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34149,7 +34149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "037104b6-4eee-4c99-97d5-8d5f33745ef9", + "id": "16c03399-865f-4875-9834-9e1fb4b7c983", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34198,7 +34198,7 @@ } }, { - "id": "c1a176f7-743d-4d0b-a4ac-0fbd6591d993", + "id": "47bedba8-977b-40ef-9dcc-dd6b8d7838d8", "name": "Get Auth Profile.", "request": { "name": "Get Auth Profile.", @@ -34233,7 +34233,7 @@ }, "response": [ { - "id": "12a6e04c-3627-468a-9906-72ea7338bd41", + "id": "1c2d997b-2af8-4549-9e67-6943cbc82116", "name": "Auth Profile", "originalRequest": { "url": { @@ -34277,7 +34277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d66ff2b-88ad-4264-9dcd-6669d12b10c5", + "id": "7cdd6211-6872-4fd3-afcf-e54b6596f608", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34321,7 +34321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "081a061c-3f77-4231-9ef8-6aa6f7fb5095", + "id": "d35b220a-dbce-401d-8bb0-62ac96cde0f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34365,7 +34365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfc9a774-7d31-4810-81c4-e9a61eeb1fac", + "id": "44e7c5d1-2e0c-45d3-9ea9-0dd27917154a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34409,7 +34409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad4c3ca8-6513-42ea-9365-e36617861ac0", + "id": "3b58ab31-ce9a-4636-a7bc-2f2e902c63d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34453,7 +34453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70d3cc36-0656-4d17-b70b-7c2acce762a7", + "id": "c60c93e1-e766-4f01-af62-39df8fedcfbd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34497,7 +34497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55cc54c7-5117-4260-abb0-0d9fe2e0e17c", + "id": "bf9f2be2-a1df-4798-a729-a229e54bb309", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34547,7 +34547,7 @@ } }, { - "id": "183f99db-62ca-46cb-8f6a-a595b95a6260", + "id": "f66bc6df-f304-4e7c-b6df-ffde9b4303e0", "name": "Patch a specified Auth Profile", "request": { "name": "Patch a specified Auth Profile", @@ -34601,7 +34601,7 @@ }, "response": [ { - "id": "91bb1717-d320-42e2-8a59-879c4703cdc8", + "id": "30a83512-01fa-45fb-846b-e4db2e319193", "name": "Responds with the Auth Profile as updated.", "originalRequest": { "url": { @@ -34658,7 +34658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11292fdd-0184-40d2-bf87-2d341a9d78f6", + "id": "00b9ca4c-ba96-47f9-ad66-c18dd7bddc23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34715,7 +34715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d809c40-def6-461e-aa00-3d793afa88cc", + "id": "5ffc3b0d-66af-46d5-aa9a-7f5a39970169", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34772,7 +34772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15628e41-ce06-4bbf-a5c6-e75a63e2ada7", + "id": "79707490-b224-4501-9894-23005546dd7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34829,7 +34829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e07def6-8e9f-44c8-8863-112d5e99cc64", + "id": "6ea19ff8-2b5e-4a2c-abf2-0b6f5ded861c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34886,7 +34886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8f8dcf1-841d-485a-adca-6fc5d3d4e7cd", + "id": "58c143c2-a961-4bc2-b14a-a4d16310053c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34955,7 +34955,7 @@ "description": "Use this API to implement certification campaign functionality.\nWith this functionality in place, administrators can create, customize, and manage certification campaigns for their organizations' use.\nCertification campaigns provide Identity Security Cloud users with an interactive review process they can use to identify and verify access to systems.\nCampaigns help organizations reduce risk of inappropriate access and satisfy audit requirements.\n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access.\nThese certifications serve as a way of showing that a user's access has been reviewed and approved.\nMultiple certifications by different reviewers are often required to approve a user's access.\nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification campaign as a way of showing that a user's access has been reviewed and approved by multiple managers.\nOnce this campaign has been completed, Identity Security Cloud would provision all the access the user needs, nothing more.\n\nIdentity Security Cloud provides two simple campaign types users can create without using search queries, Manager and Source Owner campaigns:\n\nYou can create these types of campaigns without using any search queries in Identity Security Cloud:\n\n- ManagerCampaign: Identity Security Cloud provides this campaign type as a way to ensure that an identity's access is certified by their managers.\nYou only need to provide a name and description to create one.\n\n- Source Owner Campaign: Identity Security Cloud provides this campaign type as a way to ensure that an identity's access to a source is certified by its source owners.\nYou only need to provide a name and description to create one.\nYou can specify the sources whose owners you want involved or just run it across all sources.\n\nFor more information about these campaign types, refer to [Starting a Manager or Source Owner Campaign](https://documentation.sailpoint.com/saas/help/certs/starting_campaign.html).\n\nOne useful way to create certification campaigns in Identity Security Cloud is to use a specific search and then run a campaign on the results returned by that search.\nThis allows you to be much more specific about whom you are certifying in your campaigns and what access you are certifying in your campaigns.\nFor example, you can search for all identities who are managed by \"Amanda.Ross\" and also have the access to the \"Accounting\" role and then run a certification campaign based on that search to ensure that the returned identities are appropriately certified.\n\nYou can use Identity Security Cloud search queries to create these types of campaigns:\n\n- Identities: Use this campaign type to review and revoke access items for specific identities.\nYou can either build a search query and create a campaign certifying all identities returned by that query, or you can search for individual identities and add those identities to the certification campaign.\n\n- Access Items: Use this campaign type to review and revoke a set of roles, access profiles, or entitlements from the identities that have them.\nYou can either build a search query and create a campaign certifying all access items returned by that query, or you can search for individual access items and add those items to the certification campaign.\n\n- Role Composition: Use this campaign type to review a role's composition, including its title, description, and membership criteria.\nYou can either build a search query and create a campaign certifying all roles returned by that query, or you can search for individual roles and add those roles to the certification campaign.\n\n- Uncorrelated Accounts: Use this campaign type to certify source accounts that aren't linked to an authoritative identity in Identity Security Cloud.\nYou can use this campaign type to view all the uncorrelated accounts for a source and certify them.\n\nFor more information about search-based campaigns, refer to [Starting a Campaign from Search](https://documentation.sailpoint.com/saas/help/certs/starting_search_campaign.html).\n\nOnce you have generated your campaign, it becomes available for preview.\nAn administrator can review the campaign and make changes, or if it's ready and accurate, activate it.\n\nOnce the campaign is active, organization administrators or certification administrators can designate other Identity Security Cloud users as certification reviewers.\nThose reviewers can view any of the certifications they either need to review (active) or have already reviewed (completed).\n\nWhen a certification campaign is in progress, certification reviewers see the listed active certifications whose involved identities they can review.\nReviewers can then make decisions to grant or revoke access, as well as reassign the certification to another reviewer. If the reviewer chooses this option, they must provide a reason for reassignment in the form of a comment.\n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must \"Sign Off\" to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items.\n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase.\nIn the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed.\n\nThe end of a certification campaign is determined by its deadline, its completion status, or by an administrator's decision.\n\nFor more information about certifications and certification campaigns, refer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html).\n", "item": [ { - "id": "9a7175a2-70c1-4c81-a295-eebc2fa509e7", + "id": "4508bbda-12ab-447e-ac71-6d35bdd1cc8e", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -35039,7 +35039,7 @@ }, "response": [ { - "id": "ae0f62ff-2543-4d68-9010-1dea6dcbc79d", + "id": "e5f24736-1e9a-44bf-a98e-736ddde06bb5", "name": "Slim Campaign", "originalRequest": { "url": { @@ -35137,7 +35137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69943a23-1184-4396-805a-1aa6541c81a3", + "id": "02302b08-5d6c-47e1-b861-78640d55fd85", "name": "Full Campaign", "originalRequest": { "url": { @@ -35235,7 +35235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c346ac-3e95-4998-b80d-853a2d29f8da", + "id": "aaf2a311-dea8-4b71-a7e2-7189d1e158c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35333,7 +35333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73f07e85-5fbe-4db6-89c3-63fa56b182e1", + "id": "e104b51b-96a9-49ca-a38f-b36f2054e056", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35431,7 +35431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f6878f4-1771-4959-8dec-6cf117512141", + "id": "bcf79b01-e7af-4efc-8e94-7c37b8edc4e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35529,7 +35529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9bc0bb6-4e44-454e-b315-081836d469fb", + "id": "1e9efaf7-68b0-46cd-9744-1541408d6f54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35627,7 +35627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aec04861-f414-4c0f-b06c-45203bc502fa", + "id": "d2e202d9-b9e7-40be-a6cc-d25cbb827731", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35731,7 +35731,7 @@ } }, { - "id": "95a67519-171a-4ab7-bbd7-e4dce78f8980", + "id": "fe6c9731-619b-41cf-abc1-06e271ec1407", "name": "Create Campaign", "request": { "name": "Create Campaign", @@ -35773,7 +35773,7 @@ }, "response": [ { - "id": "c8b4f74c-a446-4462-8649-818a2176ff7f", + "id": "c2f28d1e-1108-4b84-acc2-a85727a58e6a", "name": "Manager", "originalRequest": { "url": { @@ -35829,7 +35829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c530252-f51c-4804-bdc4-e5b6152d059d", + "id": "23144ee7-9640-4270-8dce-5ad1257f0e40", "name": "Search", "originalRequest": { "url": { @@ -35885,7 +35885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2230cc2f-4d93-4a09-a04a-474ab2dc03af", + "id": "43b17ebb-e66b-4a3d-84f4-6c32d3f4af9d", "name": "Source Owner", "originalRequest": { "url": { @@ -35941,7 +35941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd768605-ec3a-4404-a227-e47fd43fac95", + "id": "e310dfc1-9cdb-4d77-9208-0c40d6547d68", "name": "Role Composition", "originalRequest": { "url": { @@ -35997,7 +35997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89da8412-6ffe-462f-a9a1-ae2c7748c0ce", + "id": "33df13a5-8392-4266-8ee8-12628cc90250", "name": "Machine Account Owner", "originalRequest": { "url": { @@ -36053,7 +36053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcffad9b-c479-478f-af20-75c791bde5e4", + "id": "b6ba4fc2-4108-4c35-9f75-23432167cbaf", "name": "Manager", "originalRequest": { "url": { @@ -36109,7 +36109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aadbb5b-8983-428a-aca4-0f87e1ac2b4c", + "id": "5f2a1af4-3083-4ef0-b62c-9b97f2ed64af", "name": "Search", "originalRequest": { "url": { @@ -36165,7 +36165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8d89c5e-a7d4-426b-922a-a59f0f253e2b", + "id": "bd549f94-7cab-4a92-b921-9f834027a9f9", "name": "Source Owner", "originalRequest": { "url": { @@ -36221,7 +36221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb5b1a2-0d0b-4d18-a887-0d093829dcbd", + "id": "aecc04cf-1b65-4051-883c-be0adb5a716c", "name": "Role Composition", "originalRequest": { "url": { @@ -36277,7 +36277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e25e75e-90ed-4752-8af2-75c8c1a1c865", + "id": "a7e8a2df-9240-40bf-9681-85aa312e214c", "name": "Machine Account Owner", "originalRequest": { "url": { @@ -36333,7 +36333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91f3ab2b-baf8-4da3-a106-a11d0fce495d", + "id": "f256f442-e6d6-4901-b31e-3a914f81f865", "name": "Manager", "originalRequest": { "url": { @@ -36389,7 +36389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "667d5d2c-db49-4b14-b818-3a4a6974416d", + "id": "5825bef4-c23f-429f-9c38-b6737bd0931c", "name": "Search", "originalRequest": { "url": { @@ -36445,7 +36445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa0b9ff9-2e84-4c4a-96ab-859616644dda", + "id": "1d1644f1-2e20-4701-bbcc-d3931401ee78", "name": "Source Owner", "originalRequest": { "url": { @@ -36501,7 +36501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de42499f-e995-4f63-bce0-ec2b5cbb8be1", + "id": "55607225-3df5-484e-ad1f-7079a4b50cc0", "name": "Role Composition", "originalRequest": { "url": { @@ -36557,7 +36557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ad05dfd-4ece-48b8-886a-93f5f2e88c98", + "id": "3771c9da-fb5d-44ea-ac44-d987c74ab836", "name": "Machine Account Owner", "originalRequest": { "url": { @@ -36613,7 +36613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "765840f8-5cb7-44a1-a32e-9bc046a037c4", + "id": "765af2c6-b184-4774-b9e3-0ccd957bf5f3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -36669,7 +36669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64007204-da1a-489d-8b14-c44e0ab93d9e", + "id": "305464f6-fd71-4d53-90d5-5fd480f7a358", "name": "Search", "originalRequest": { "url": { @@ -36725,7 +36725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8a3c2c6-fe9c-4a9f-9023-b03d37487cd2", + "id": "2c539c06-7ed8-4941-8eee-0a6e9fd64c29", "name": "Source Owner", "originalRequest": { "url": { @@ -36781,7 +36781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3390ae2-e28d-4ec5-bc1e-1c11f5aa028f", + "id": "64a90b69-3f16-4d35-9d82-d98348db6c5c", "name": "Role Composition", "originalRequest": { "url": { @@ -36837,7 +36837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0afb31f6-8f77-44f2-baa0-1ad9a54e828c", + "id": "a7bb4b69-b1dc-4203-bab1-6dc5d5608806", "name": "Machine Account Owner", "originalRequest": { "url": { @@ -36893,7 +36893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ddc633a-3218-4cf3-8855-d8b2e53ba18a", + "id": "790911ee-0eb2-44e3-b187-3ff7a652b7fa", "name": "Manager", "originalRequest": { "url": { @@ -36949,7 +36949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d44f0e5-2ab8-4ab7-a97b-95359ad90ba2", + "id": "d212eb54-4a7f-4934-81a2-c9116bedaf0f", "name": "Search", "originalRequest": { "url": { @@ -37005,7 +37005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb753714-d59e-43b1-9bf2-0a6917111e75", + "id": "3d675698-0db0-408d-86cf-5ad90762b666", "name": "Source Owner", "originalRequest": { "url": { @@ -37061,7 +37061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de6b5819-3568-4ca1-8e8a-738a065c0506", + "id": "50d8678b-e656-4ded-8ce7-b2d9a2961026", "name": "Role Composition", "originalRequest": { "url": { @@ -37117,7 +37117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01ea4a3c-1181-4860-9456-d4f1cf534c11", + "id": "254bc793-706b-4c76-8858-c03b3d116934", "name": "Machine Account Owner", "originalRequest": { "url": { @@ -37173,7 +37173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e2397f-e9a0-4e1f-a2a2-3202fdb5c781", + "id": "ba256750-12fe-4f29-a6cd-842bb3773567", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -37229,7 +37229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d9284e-1326-46fe-ba8f-4445556d2ebd", + "id": "cfe7ea14-68a7-4e24-abb1-4882e45c5346", "name": "Search", "originalRequest": { "url": { @@ -37285,7 +37285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70710eb4-7df1-45e6-bf3e-150c5c76a4c8", + "id": "7453c1a0-e65f-45aa-9a8f-787a05b39e8d", "name": "Source Owner", "originalRequest": { "url": { @@ -37341,7 +37341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abc6e020-b369-4e77-9b15-54a5e80721d8", + "id": "63db4efd-fca2-4cc2-aa91-acc31f2716a0", "name": "Role Composition", "originalRequest": { "url": { @@ -37397,7 +37397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "641cb60b-0261-4b40-a491-acd723fb8e48", + "id": "484eeef0-ed1a-4fa6-b559-ca113e5325a7", "name": "Machine Account Owner", "originalRequest": { "url": { @@ -37459,7 +37459,7 @@ } }, { - "id": "9d428cca-38b4-4e32-8d21-d41309c05aff", + "id": "433d58b3-bda0-46ba-8180-2a5065b1b805", "name": "Delete Campaigns", "request": { "name": "Delete Campaigns", @@ -37502,7 +37502,7 @@ }, "response": [ { - "id": "a5ade472-8c28-43d0-91fc-1dd006fcfc2d", + "id": "264334dc-4388-4ae7-992d-2aba5e4ed8a4", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -37559,7 +37559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2df011d1-168c-4a65-b648-e527d1a20860", + "id": "00356d28-dab0-49a2-be51-9e13eb913ee2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37616,7 +37616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdc3e7fe-711c-4611-9634-ced9f45eb0ec", + "id": "10878a13-2b31-4aeb-8318-081e43bd9868", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37673,7 +37673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04864b9f-642d-4c83-b051-925c631af560", + "id": "c0909c8e-7d7b-4649-beb1-497431ba7b6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37730,7 +37730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "615dfee1-9da9-4caf-a21d-2a994fbb827f", + "id": "93c0b9fe-f618-4136-b3b5-a47137ef2444", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37787,7 +37787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97064d5b-845a-4ccd-8117-964070242396", + "id": "218c5088-3909-4437-a917-08af3f03d3bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37844,7 +37844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef457925-041a-4df7-80b8-f4553cc86da8", + "id": "6a875fde-c611-4d37-89c3-3b497355c9b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37907,7 +37907,7 @@ } }, { - "id": "bd9d59ff-48e5-4564-9f97-b8dbf61fcc63", + "id": "2c0c25cc-c94d-4032-88ee-7d3178633704", "name": "Get Campaign", "request": { "name": "Get Campaign", @@ -37948,7 +37948,7 @@ }, "response": [ { - "id": "c58c61d4-fd01-45c8-8c2b-b4f506c852c1", + "id": "deb8ef2c-c0fe-452b-9eb2-47b32b3f0407", "name": "Manager", "originalRequest": { "url": { @@ -37992,7 +37992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db587885-6a78-407c-91cf-e2cd6ef8c45d", + "id": "72784e2c-9ceb-4195-8799-3cd388f3da23", "name": "Search", "originalRequest": { "url": { @@ -38036,7 +38036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1abc925a-a1d2-437c-acff-a63cd45959b6", + "id": "a92076b3-c1c1-4d3a-8f0d-88f95627b780", "name": "Source Owner", "originalRequest": { "url": { @@ -38080,7 +38080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f238921-c090-4ebc-8bf7-fca1989befb9", + "id": "a83a2882-d715-44c9-ad22-1cd2eb0e8338", "name": "RoleComposition", "originalRequest": { "url": { @@ -38124,7 +38124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac85a90e-a9a6-4c70-aef9-cb97fa937aee", + "id": "2f1b4306-74fd-4728-93b4-317ec6044dfa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38168,7 +38168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5b63cff-afb0-4c10-8e43-aa8fc112fd32", + "id": "bb7f0801-4662-4954-aec5-6f007b482c8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38212,7 +38212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f04a3b64-1f37-45cc-8374-8ccc5dbd9b83", + "id": "6242afa6-0e41-414e-bb15-9a251dd8bd3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38256,7 +38256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00376d1-91b7-4d17-aae3-ccb9b5f91477", + "id": "09998edb-4b5a-4a93-a155-d0ebea05b64f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38300,7 +38300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74abd631-9b62-4608-82fb-9727df69e1ef", + "id": "bf82ff0d-b3cf-4c2b-ba90-e8d8913826c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38344,7 +38344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df8d4517-0504-4971-bd5d-eb8dd04ad9d0", + "id": "0cee1216-20cf-48e1-9ea1-e72442a250b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38394,7 +38394,7 @@ } }, { - "id": "446ec741-90cd-4014-abfe-90db84691478", + "id": "a016f828-dc36-441d-ab7d-8eafc98819c1", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -38448,7 +38448,7 @@ }, "response": [ { - "id": "bed46688-2b7b-4108-bc64-c8d96d384ef5", + "id": "6ad5807e-edbb-4c28-a67f-0a78339e8499", "name": "Manager", "originalRequest": { "url": { @@ -38505,7 +38505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e84f447c-a354-41ec-a6eb-99445ae3fa3b", + "id": "242dbc5e-10ac-4f37-b311-fc0baf081903", "name": "Search", "originalRequest": { "url": { @@ -38562,7 +38562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523bef6a-a6ac-4256-8b70-172b41673195", + "id": "1f5cc14d-4d66-465e-be95-eb9beb11af16", "name": "Source Owner", "originalRequest": { "url": { @@ -38619,7 +38619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10377ca-fea1-41c6-b22d-7d9a63899c13", + "id": "ecc7b610-3160-4c12-94a8-214f95a15f53", "name": "RoleComposition", "originalRequest": { "url": { @@ -38676,7 +38676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54e45c2f-aca0-40d7-8afe-fd2a5a76a258", + "id": "f8761a74-ca1d-4d32-a97d-518d108cb8a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38733,7 +38733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ee6c2fa-f2d5-42d9-9fba-97fd8758dea3", + "id": "391e69c7-1712-4e65-b580-a78a323f13b9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38790,7 +38790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83067fa2-32c8-47ba-b0bd-bc8df3067cac", + "id": "9e529ebc-b31a-41a3-b8a8-b697a4c12e44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38847,7 +38847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c20eb8b7-7aed-4bd1-ada1-81c75cb039c9", + "id": "e8bb9d34-80c4-463b-9309-784a3ecf5563", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38904,7 +38904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59b12b76-bd6d-4ec9-8453-39880e4c2cf4", + "id": "4b45c9f3-de95-433a-9dfa-6a17b3b9f8c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38961,7 +38961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0642666d-1a74-482d-87f2-b7f0841d9bdd", + "id": "3bb5cb23-6988-478e-bd7c-9c78e7191d94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39024,7 +39024,7 @@ } }, { - "id": "8f596996-0dd9-4b4c-9fde-4cb35abee3bd", + "id": "1beac8a3-d368-416c-bef5-d333ccfa1842", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -39079,7 +39079,7 @@ }, "response": [ { - "id": "cdb28f24-6348-4a07-b24b-49a271b9a87c", + "id": "787585ad-a1a0-466c-9e6a-7bf36a9f80ea", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -39137,7 +39137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d7b109-c9fd-49a7-9a86-d3c7b2b8b4ab", + "id": "50e9eda1-c6bc-4084-b5df-752ad816149c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39195,7 +39195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec87b2c9-1c9a-47e6-837e-89f513208f30", + "id": "b084fb18-5119-4188-b3f4-4be04ef96269", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39253,7 +39253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0edb21c-667a-4cac-af2a-e96a0cc7452d", + "id": "7a8f51db-a522-4f0f-8dcd-c39e9562523c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39311,7 +39311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f428c4d-f60c-4580-9712-086e7132d73e", + "id": "518011d0-bca2-4112-bb25-870e4cb3945f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39369,7 +39369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc82dd6-eb4b-41d7-9e6e-ec55f790b05d", + "id": "b1c76ff0-d7b9-4808-8e1c-3084786e4950", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39427,7 +39427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6163b0eb-353e-4ac9-85a0-d3f33d2911ec", + "id": "89c8c4b7-8898-44f3-b76e-84b58bdfb4de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39491,7 +39491,7 @@ } }, { - "id": "acb499c4-cda4-47ff-93db-d5f69b36e666", + "id": "6d1653ee-adac-4b7c-99bd-2914d98c1a63", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -39546,7 +39546,7 @@ }, "response": [ { - "id": "6f3eb010-db49-4f99-a195-3fac8cce5af1", + "id": "f2f7d614-fdfc-4066-90dc-660d3228ce8d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -39604,7 +39604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a4ff23-a976-4654-ab55-0538cb2c200f", + "id": "a4ebefe0-ba11-40a3-8143-c3534ea36183", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39662,7 +39662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cf85dcd-c63f-41fa-904b-6472d3e38dd4", + "id": "2c6f316c-7086-441b-a8f3-6ddbaf902640", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39720,7 +39720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2532480-51b1-4313-b461-731ea8ffb60c", + "id": "382df4b7-32c9-4f24-8344-4fe5ecf779be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39778,7 +39778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c86499d6-289d-410f-8d1a-f4dda4f8b47b", + "id": "4de50280-229a-497e-ae6a-8ca4d7f93358", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39836,7 +39836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0c27ac8-4147-4d9a-a714-e3c6247161f1", + "id": "15ec2490-7352-459f-a034-5386bb876363", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39894,7 +39894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa1cf38-bc66-4227-a898-b2a1ada80f8c", + "id": "dc1e9457-c267-443f-a0c2-c2f479d2aa45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39958,7 +39958,7 @@ } }, { - "id": "4fbabeaf-a9ce-4093-beea-f51de2675913", + "id": "61e98747-2cf8-433b-83d4-61c36734bc81", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -40000,7 +40000,7 @@ }, "response": [ { - "id": "c5eb73ab-fd7d-4d11-8913-a15394a1248e", + "id": "afba0ae9-055f-43c6-b540-0c9936c9142d", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -40045,7 +40045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb21c863-e61b-44fd-b4cc-cc24e5e17aaa", + "id": "9704cf67-6484-410a-99e6-a935aa506e30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40090,7 +40090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f8f29fb-0c60-4a89-97b8-b4f3bdebb1c1", + "id": "051d393a-9d2c-44c6-89e4-83fa54a55712", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40135,7 +40135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d3f21d0-e122-4b5e-ac6a-55edb3c46a3c", + "id": "d3f037ae-62eb-4bac-8d27-656ab97cf643", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40180,7 +40180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48cb5361-a55d-4156-a788-8ddf841f8e16", + "id": "1ff23a64-f8dc-484f-bd9f-b90f41e5c457", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40225,7 +40225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf9120d4-941b-4f61-9942-9158517f0994", + "id": "6702ee44-5d54-414d-8f32-0d630512b98d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40270,7 +40270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf39ae4-25c0-46bc-986e-c90b618dce55", + "id": "439aaf1e-a34b-492b-bc74-04a11fcd62b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40321,7 +40321,7 @@ } }, { - "id": "d1078dc9-6034-4db0-8f24-1c07ae4e9135", + "id": "4bceaf89-5d0f-4f60-a160-e1837279b013", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -40376,7 +40376,7 @@ }, "response": [ { - "id": "d4327d41-d264-4b72-b490-ddb3ebb89b4d", + "id": "7b84b886-f2c8-4232-9631-593aeeee2485", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -40434,7 +40434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12e4ca33-7beb-44cd-9c2f-e8531b17a834", + "id": "6933344e-5c08-4322-92c0-9d9eeadaecc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40492,7 +40492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aee4d40-80b1-4250-a67d-cabba0db7445", + "id": "4a9b129a-7bfb-4ec5-8b34-fe9036648af4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40550,7 +40550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a64ce4cf-0901-4baa-9602-12785127487c", + "id": "f440833d-0fa7-4b34-8037-001ea0e093a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40608,7 +40608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35dbfb32-a289-4d0b-972a-7263d3f303a9", + "id": "adc0ff5c-806f-4504-b530-bd5204d5022a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40666,7 +40666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26749cfe-603d-4843-805f-8f48ff6f3e39", + "id": "d45a3cfc-f237-476a-9fa5-cd927c742f42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40724,7 +40724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba46e408-6bcb-48a0-b0aa-58922cb24a28", + "id": "0564bede-9162-47ff-b5a0-1847f1711564", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40788,7 +40788,7 @@ } }, { - "id": "c82536a4-4bcf-4292-aad4-2ae1f40d5de2", + "id": "cc7f64ef-5743-421f-87d5-cefa6297f914", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -40830,7 +40830,7 @@ }, "response": [ { - "id": "18dbf7ba-6857-4afd-86d5-c4580d1889e4", + "id": "87d722dd-2a37-46cb-b2e1-c34974de4ac3", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -40875,7 +40875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14905b06-1fa0-4c60-a068-8b2f3a653b3f", + "id": "f09dbc59-07bb-4a0b-b861-2399edff5e96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40920,7 +40920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58afee68-326d-40f2-9b10-8bf425e80a69", + "id": "eb7da02f-87dd-4fd2-b32c-2d4edd373b14", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40965,7 +40965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45865bfb-6519-49f4-a0f7-3823a88f5a73", + "id": "8178d681-2f01-4758-a4cc-68e3068053a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41010,7 +41010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cb8d369-b57a-49f1-9004-58d17a2c995c", + "id": "c362890d-e234-4380-adcb-01b341866529", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41055,7 +41055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c722497-89fc-423b-ad26-c3d6714e15fc", + "id": "7cf52bbb-a568-4bba-aade-cd86c2f75e18", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41100,7 +41100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d4c2946-5f97-41f4-8658-2780b6392042", + "id": "8a18549d-f177-44ba-aa72-e19f7a468280", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41151,7 +41151,7 @@ } }, { - "id": "5eb3af9e-3403-45bf-be57-3b502081f33b", + "id": "049aca67-ab01-4ac3-a58e-9320d707fc92", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -41204,7 +41204,7 @@ }, "response": [ { - "id": "d64103c3-bc38-4c8c-a3d5-019b624c3a4c", + "id": "b7196953-162d-49f1-95e8-fe7f0e4b1e73", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -41250,7 +41250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a1aab79-ea3d-4465-bcd9-f3f17b128abf", + "id": "141792d0-0b8c-4651-8640-955d0204e619", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41296,7 +41296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60471fb2-f6d0-47ae-88d1-98bece00e2c2", + "id": "1ddf69c0-fbff-40c2-9b1f-e9f944b2ea3c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41342,7 +41342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b520a3fd-639a-47ac-8c94-3e1501aae741", + "id": "d28b890c-c5ad-4c93-9af4-0d615e31d983", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41388,7 +41388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbd560ae-ee1b-4c89-a0da-9f325741b5e6", + "id": "7700db77-df10-4bf8-9949-aab2e01a2abd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41434,7 +41434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724774d4-e3d6-4c8b-bb95-1924f1a92aad", + "id": "7062914a-155e-40df-be01-f3440f65918a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41480,7 +41480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09773205-3b77-45eb-98f7-11a90b44affc", + "id": "9ceba6e2-1ac5-439d-a2d0-e798274385a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41532,7 +41532,7 @@ } }, { - "id": "473551e2-27d9-4427-b23d-d6a228271ed5", + "id": "00909c4f-8efa-4f9d-b444-b42cdf771ef8", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -41562,7 +41562,7 @@ }, "response": [ { - "id": "e73cfab0-0d0e-44c8-a651-3bbd264a9777", + "id": "08309971-8f4a-4006-a5c8-2f8e7d8c99af", "name": "Campaign report configuration.", "originalRequest": { "url": { @@ -41606,7 +41606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e3b96f2-d033-4311-bc1b-6a0a4a6bfdc7", + "id": "90cdc3ae-bd28-4e16-9f29-a52b32a155da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41650,7 +41650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adb6ce66-663f-4cd9-9a86-442a72f28ece", + "id": "5cf62fcc-c8bd-4a8a-88fb-8d231eb36dc0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41694,7 +41694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8052f6e-586f-43d9-978b-272342792d80", + "id": "ccbbdb19-a1fd-4768-b20f-e6a1b8fbcb91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41738,7 +41738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "000adafc-5b6d-45f5-8c4a-819480c9d3c3", + "id": "e359bbe2-c886-4a7e-8b9a-a0c7f7c52af8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41782,7 +41782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7324ed42-362b-4360-b5ad-82033c450504", + "id": "e0502d87-997f-4ca6-a933-9a8947cbfc79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41832,7 +41832,7 @@ } }, { - "id": "ff2e1318-5575-487e-ab10-544a68c301cc", + "id": "2beacea7-5e8b-4c69-854d-5c7e40b9490f", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -41875,7 +41875,7 @@ }, "response": [ { - "id": "07d870e0-af4c-492a-bbce-cecc19cacbbd", + "id": "9b087793-7d1a-4f94-8e8d-f04dc69a130f", "name": "The persisted campaign report configuration.", "originalRequest": { "url": { @@ -41932,7 +41932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5818edd5-d79e-4bab-bfe0-b3f1acdae559", + "id": "79ff5037-1ad7-4666-982c-4b67fadb5588", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41989,7 +41989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1501befe-1f22-41d4-98b2-69d8425cb154", + "id": "edd840fe-8f34-450e-bde2-8bef0b699372", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42046,7 +42046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d64bec9-7a7b-406c-8706-fe277aa003f2", + "id": "603baeeb-2d9e-4b15-902a-8518f471f8e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42103,7 +42103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2542cd1a-7d36-4646-b54b-46ee46431400", + "id": "3489ffed-665a-4d2b-b66a-189e46795ac8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42160,7 +42160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef4607a3-0723-42c4-a542-729656af2036", + "id": "2e4b2336-98e3-48bd-a6d4-bc3bd2d79d13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42223,7 +42223,7 @@ } }, { - "id": "411df608-bb2d-485a-80fd-f26961a5fb14", + "id": "d251a596-15d9-42f3-894e-c2121d9cbedc", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -42298,7 +42298,7 @@ }, "response": [ { - "id": "88b840dc-a36e-4780-920a-857b49d527c2", + "id": "fbc125a9-2b50-4803-a797-dfd40564429c", "name": "List of campaign template objects.", "originalRequest": { "url": { @@ -42387,7 +42387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9dbc114-6991-4842-85f1-7fd47793724b", + "id": "c7fd2f6f-6ef5-4fd1-be6c-3911d28582c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42476,7 +42476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e257652-a990-4238-928f-ac45d15505c8", + "id": "e7c4b136-1692-41ec-b84f-1d1d8559e232", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42565,7 +42565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "838c4585-3f27-47f9-95f3-19d021725283", + "id": "f498f200-707d-40ce-8c72-465846bb75c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42654,7 +42654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81e94c59-f479-4555-a0b5-aed71d7e6a4b", + "id": "513add4e-fe8a-4b1b-b81b-f42dcb7d70ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42743,7 +42743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebec9ec2-1c62-40ce-b5c3-6ad4630e2dcc", + "id": "79d62665-f0d4-42a1-8a7e-30451edbdf86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42838,7 +42838,7 @@ } }, { - "id": "333eb98e-4cc4-4e34-a890-cc4202e2df5d", + "id": "42732eef-d48d-4e34-80fb-be7d15e58540", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -42880,7 +42880,7 @@ }, "response": [ { - "id": "4dcdcb0c-caf9-49b0-8a1c-c556cd9ff3f7", + "id": "4b8c8101-9da7-4b9c-9d5d-585c08953ca8", "name": "Manager", "originalRequest": { "url": { @@ -42936,7 +42936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db6ec03f-0d92-4c84-9c77-eeb09bec0eb2", + "id": "f73f75a5-2488-4b3f-b618-5dcbcf5ff11b", "name": "Search", "originalRequest": { "url": { @@ -42992,7 +42992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "032b923f-3dbd-40de-b3f6-1467bccaf36f", + "id": "6f34c0db-30f1-40ed-96ad-11ea8865b84a", "name": "Source Owner", "originalRequest": { "url": { @@ -43048,7 +43048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5eb9d99-e4a3-4ccf-a168-49ded180d2c3", + "id": "8b0729ca-518e-4896-a79a-4c29a186cb71", "name": "RoleComposition", "originalRequest": { "url": { @@ -43104,7 +43104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "860ab5e8-3e26-443a-82ff-34c96eb8ef5c", + "id": "a5ef5d29-d4d8-4f7c-bd3e-1c0575bdf7d9", "name": "Manager", "originalRequest": { "url": { @@ -43160,7 +43160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc6fcd84-ce72-4cd8-a68c-ba6a38d9e172", + "id": "f39d99a0-dfb7-48d6-83ba-ace50223d829", "name": "Search", "originalRequest": { "url": { @@ -43216,7 +43216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a09d29e-5703-430b-b4a1-ae89856a7353", + "id": "744b4509-2de3-4597-a7a7-6d0efd1ad4f6", "name": "Source Owner", "originalRequest": { "url": { @@ -43272,7 +43272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad2db5e-a695-49b1-9357-6a5f73e6880e", + "id": "892c4ca2-d8c7-4edf-9506-8a821bea3bc5", "name": "RoleComposition", "originalRequest": { "url": { @@ -43328,7 +43328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8bb396e-4657-4dbf-8840-a3b28ab59903", + "id": "378935bb-3b4f-4247-989a-b2b8b60c7c0d", "name": "Manager", "originalRequest": { "url": { @@ -43384,7 +43384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "927dac96-ed7f-489b-9338-1e2ffb9fbb6a", + "id": "638beb4f-99ca-4fc3-ba34-b168d01a4601", "name": "Search", "originalRequest": { "url": { @@ -43440,7 +43440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d05bda76-ed9d-4455-83a3-4c05cecb867d", + "id": "6f545461-37fb-4694-8d97-8184ed072392", "name": "Source Owner", "originalRequest": { "url": { @@ -43496,7 +43496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76af6581-6e7f-441b-88f6-0ba5cce5591a", + "id": "fd3641f7-4bc4-4120-9749-0960c3b433b2", "name": "RoleComposition", "originalRequest": { "url": { @@ -43552,7 +43552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8982343d-d7da-4e2a-b033-066ef829c2fb", + "id": "902c58e2-8750-4c03-a697-e2d4d371ce65", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -43608,7 +43608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80829fa8-4d81-40e1-b3a8-413a7a4945ee", + "id": "2d6d34e7-b5ff-4d96-b0d2-f77e69063f9d", "name": "Search", "originalRequest": { "url": { @@ -43664,7 +43664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61cf7192-81c4-4af1-98b4-1cdecfc9a513", + "id": "1a605885-e4b8-45f8-8c72-1d759422b1f8", "name": "Source Owner", "originalRequest": { "url": { @@ -43720,7 +43720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66cca65c-608e-4e46-8619-7e832c2f0025", + "id": "7883b1b8-b6e7-47e5-b879-f9c7e2af91e8", "name": "RoleComposition", "originalRequest": { "url": { @@ -43776,7 +43776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "580b1223-7cbe-4737-aa81-ed84a1d80f36", + "id": "319eddbe-5277-41b9-9f00-cf4d20df97e4", "name": "Manager", "originalRequest": { "url": { @@ -43832,7 +43832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b20b918-c262-4f63-8da5-07f04477fed4", + "id": "57e421ac-e5ba-4adb-86fb-3e625299ebcf", "name": "Search", "originalRequest": { "url": { @@ -43888,7 +43888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d83477e-e942-4c13-a381-6d8db3dc14b3", + "id": "a59a0593-2c24-4fa0-bce3-994be3d43dcf", "name": "Source Owner", "originalRequest": { "url": { @@ -43944,7 +43944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77123941-eb74-4908-a7db-849577fee41a", + "id": "3103161d-1311-4092-972b-e2284f25ce23", "name": "RoleComposition", "originalRequest": { "url": { @@ -44000,7 +44000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf2372f-aba0-42f3-a628-2a898acd22d5", + "id": "162765a6-2f4e-4a8f-bd0e-67fa3307d7b5", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -44056,7 +44056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a33a0ae9-eb2c-440e-80ba-671e5229da45", + "id": "dbb61aad-c138-49f7-ad89-0f389d99cc7a", "name": "Search", "originalRequest": { "url": { @@ -44112,7 +44112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e14eade6-0fca-4c80-bc15-ae6395ff0fac", + "id": "d65f3956-60cf-45d6-b2ca-9798be2b821a", "name": "Source Owner", "originalRequest": { "url": { @@ -44168,7 +44168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e2c397-3ab9-48b5-9028-0cdf41750d89", + "id": "be4d498c-2141-47d6-81fa-610e651942ba", "name": "RoleComposition", "originalRequest": { "url": { @@ -44230,7 +44230,7 @@ } }, { - "id": "c7b9883a-a8c5-4cbf-b9dd-f7e3d1c2611b", + "id": "b6e16981-36fc-4669-b2a5-340eb28f219e", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -44271,7 +44271,7 @@ }, "response": [ { - "id": "ae4efd21-dcb1-4c7b-93f8-c33556e20bc1", + "id": "67457ec1-909f-4013-82a1-0366de6da8ba", "name": "Manager", "originalRequest": { "url": { @@ -44315,7 +44315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "813e224a-a489-450a-b773-8697241317b5", + "id": "30d0462e-3257-4088-b5de-993ba50f2ec6", "name": "Search", "originalRequest": { "url": { @@ -44359,7 +44359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6290c1-7474-474f-8864-e325d9552222", + "id": "589f39c2-0286-4f3b-9d86-c56a60706e91", "name": "Source Owner", "originalRequest": { "url": { @@ -44403,7 +44403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aed36c3-da6d-47b6-9f1e-c6a033646e49", + "id": "cf1c94f6-43f7-4545-96a2-85343bf5b6df", "name": "RoleComposition", "originalRequest": { "url": { @@ -44447,7 +44447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8129abcf-c8ef-4fa4-8a38-57f6b834a034", + "id": "995a2d37-e6e6-4120-a44c-ff3be22d94c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44491,7 +44491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e682d9f7-cb93-4729-a306-2926caa05fdc", + "id": "6219fea1-8fca-4143-8b67-7220c23acf0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44535,7 +44535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f38ef2a7-0652-496c-a6cc-004f252b2b2a", + "id": "497f8ddc-c2ef-4314-b696-88a552e69f70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44579,7 +44579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e41018-bb71-463b-8f9b-dee8966d2329", + "id": "fb7734ca-f33e-4611-807a-7711ef9b83ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44623,7 +44623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2293872-c816-4a96-93f8-24a111f1489b", + "id": "6594b183-f2d2-4ed4-b56a-d69b2c8d0071", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44667,7 +44667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e9331e-c871-42c4-b4b7-308e3d9529da", + "id": "f5a20406-a629-4b29-ad86-70ac8915081c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44717,7 +44717,7 @@ } }, { - "id": "e4f28445-db85-4c70-b187-aedd3cbe5858", + "id": "e5be0050-a223-425a-9f79-6822d9a9ad58", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -44771,7 +44771,7 @@ }, "response": [ { - "id": "3aa4b8e1-ea65-4fa9-8d7a-04cbf6076c6f", + "id": "ac05ffea-2d54-45da-9afe-e7dc09005930", "name": "Manager", "originalRequest": { "url": { @@ -44828,7 +44828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b6c18c5-31a4-4237-ac2b-585eed0aa69f", + "id": "9c57cb15-59d2-4256-b78a-214c879abf4d", "name": "Search", "originalRequest": { "url": { @@ -44885,7 +44885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0af1130a-e4bd-40db-b8ed-c1af7e264d71", + "id": "b451bbe9-70d1-4244-bddc-fab051dc309b", "name": "Source Owner", "originalRequest": { "url": { @@ -44942,7 +44942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb3c8402-11a7-4a36-96b4-d4f0070de225", + "id": "327c017a-396d-4908-ace0-aab5c714a2c4", "name": "RoleComposition", "originalRequest": { "url": { @@ -44999,7 +44999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40352eb4-196f-4492-abc0-52bc61ecccfd", + "id": "9b484410-6476-4844-a5e9-d2e8778d4485", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45056,7 +45056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1edf509e-ff57-4c26-9629-88621caf597d", + "id": "812bc156-ec3e-4484-9c1e-510a2bda0612", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45113,7 +45113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caa8982e-333a-4a42-b7a9-60a4b299cc60", + "id": "2ee960e1-9ee6-410e-80cd-d9cbd2146117", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45170,7 +45170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "502f434c-3c35-41f6-a7aa-2df3242ea4a9", + "id": "541c7644-3020-46ce-b562-f59bf5a1dd2a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45227,7 +45227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92108d20-8cae-4a60-bdc4-68ee24382c43", + "id": "9d681815-ac05-44ff-8825-8d06a63c48ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45284,7 +45284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "844dd85e-b63b-4769-8325-85f5f25094e6", + "id": "11dfd7e1-379c-40a7-84b7-dcf87f9b7abe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45347,7 +45347,7 @@ } }, { - "id": "3745d4d4-eb2c-4ef1-b3bd-051380ad95f9", + "id": "69d4855e-46ac-429a-b8ff-fb5cdcbb8527", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -45388,7 +45388,7 @@ }, "response": [ { - "id": "9dde4cc7-bd1b-46b5-a8ca-795dc9a7ae96", + "id": "9fe525a8-0970-4429-9f48-1d73226fe522", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -45422,7 +45422,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f7f942bf-5e3b-4db0-8a1d-7d3238f3dffb", + "id": "0ffc40d7-ec85-48eb-8644-cd4a8e5c38d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45466,7 +45466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5584be91-aba2-49c6-ac2c-b409a987b5a3", + "id": "99a617c5-fae0-4ec1-b947-e4c23540c759", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45510,7 +45510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe0ef2b3-9b19-4a13-91c5-cddf6da06ef8", + "id": "8a54cc1a-9b8a-4fc0-afe5-edaa70b2ae0a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45554,7 +45554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e44bb201-11b9-4164-98ec-ea892871a487", + "id": "b98c5727-3ae3-493b-90db-1256b6f009ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45598,7 +45598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e2542d-7ecc-4357-9337-65e4899becfa", + "id": "f10ca2a0-7978-4088-b72c-132e92100dc3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45642,7 +45642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62ec1e84-a33b-42d2-b93a-a4129e65be11", + "id": "4c36fa2d-e2db-468c-bee5-f1abf77556ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45692,7 +45692,7 @@ } }, { - "id": "c98bf552-a4fb-4475-853f-3b1f3f61dd29", + "id": "dab2eea7-131e-400f-9682-8d5537b58301", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -45734,7 +45734,7 @@ }, "response": [ { - "id": "7b507c8e-0d3d-4405-9555-625b297bfd4d", + "id": "330dd220-21cf-4c1a-a671-0d1f8f043f21", "name": "This response indicates that a campaign was successfully generated from this template, and the API returns a reference to the new campaign.", "originalRequest": { "url": { @@ -45779,7 +45779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b06dd1ed-14f7-4856-aa75-d0156f0a9f45", + "id": "ce752750-c978-4dd3-a0ab-d57d1a3c4ba1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45824,7 +45824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54cfcb4a-0f31-4e05-a2c7-dc828cf77f38", + "id": "f8453b78-62bc-4d81-9ee3-baa29717038d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45869,7 +45869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7c90f5e-5a43-450d-86ba-2d7f6395c6eb", + "id": "84f91306-4a5c-44cb-a10d-02122df9d88e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45914,7 +45914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "888402e0-46ee-4749-9d7f-a3341af9625b", + "id": "cc780b6e-4d1c-4e97-b735-c8a342d45c4a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45959,7 +45959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9591052-e6a1-4880-9b67-0f6b9907f1c6", + "id": "b4cfd0fa-8f5f-44f5-bcb1-59488f3f011b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46010,7 +46010,7 @@ } }, { - "id": "df52f776-407b-40f3-a5cc-7f49f51b5c65", + "id": "6d665cff-5a69-403a-8583-8be836e38ce3", "name": "Get Campaign Template Schedule", "request": { "name": "Get Campaign Template Schedule", @@ -46052,7 +46052,7 @@ }, "response": [ { - "id": "210df19e-84dd-44ee-ac25-9fd1c39bfc6e", + "id": "465f207b-2b8e-4b23-831f-54a2c51b8f08", "name": "Current schedule for the campaign template. See the [Set Campaign Template Schedule endpoint documentation](https://developer.sailpoint.com/docs/api/beta/set-campaign-template-schedule) for more examples.", "originalRequest": { "url": { @@ -46097,7 +46097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1ccb057-0880-42e4-931d-58dad4b8cedd", + "id": "97cd6001-54e9-4271-8988-37c3a2985b1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46142,7 +46142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "670395f0-690a-4464-b0e8-dc22cc78aef5", + "id": "4cec4181-bcd0-4625-99cb-fd2fa0ed1ec9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46187,7 +46187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76be15d1-ed9d-46a1-aafb-3a819aa9af9e", + "id": "0d81347e-5643-4c74-b756-bb7f6e21b90e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46232,7 +46232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80d6e308-3c50-45d3-ab2b-d4a37fb1dec9", + "id": "0da49d8e-1eee-48b2-bc51-2ceb68d8d3ec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46277,7 +46277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "085ea488-71ca-44b0-b7c3-be0dc3bc55fa", + "id": "6c5a96a8-300d-4be9-a8d9-7390bc10c7bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46322,7 +46322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211fa89a-b4c4-4b9d-adeb-3fd6e3a3b48d", + "id": "c7ad6783-cb4d-477b-8474-4c24231c9af6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46373,7 +46373,7 @@ } }, { - "id": "14ba26ef-23c8-4a9c-a8b0-baedde5358cf", + "id": "e2f282a6-9848-4a86-92f0-9f053c460a89", "name": "Set Campaign Template Schedule", "request": { "name": "Set Campaign Template Schedule", @@ -46428,7 +46428,7 @@ }, "response": [ { - "id": "69dfe59f-1be2-43ee-8905-745c11074675", + "id": "be732833-e0ca-431e-b95a-2a0fa4a107d7", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -46476,7 +46476,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5c711653-38c5-482f-8f98-9377f179ce97", + "id": "c1af2106-60fe-47cc-a4b7-21cec8bdae57", "name": "Monthly", "originalRequest": { "url": { @@ -46534,7 +46534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acf62a1e-1706-4fb4-8ad8-c6ab5b709bfe", + "id": "3a46fcff-ad64-4323-9883-39a86971ffd6", "name": "Once a year", "originalRequest": { "url": { @@ -46592,7 +46592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bba891d-ebc3-4c14-9e5a-5284ca170456", + "id": "86f688bf-f20b-4d78-ab95-25b934cb2059", "name": "Quarterly", "originalRequest": { "url": { @@ -46650,7 +46650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5565bad-810a-4b22-b601-b75a93ed2fd9", + "id": "eb98cf78-ed3d-44e7-ba2c-8e31ac655ad6", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -46708,7 +46708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eb0a3e7-f7d8-499d-917b-7c012ac0f34a", + "id": "6c910c12-d165-406c-9b20-1165ec733061", "name": "On a Specific Date", "originalRequest": { "url": { @@ -46766,7 +46766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4352a1a5-f2ca-4ae3-aa27-51c129faae66", + "id": "6f9f6a60-4992-4e19-8f46-afdea741e514", "name": "Monthly", "originalRequest": { "url": { @@ -46824,7 +46824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e507f324-85e9-423a-9990-57fc4e5aff55", + "id": "670f0d1a-57a2-4896-a06c-cfc38932cfd4", "name": "Once a year", "originalRequest": { "url": { @@ -46882,7 +46882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efa20f98-b0bf-48a3-8402-5525a62e76ec", + "id": "52fb75cd-4148-422a-8eaa-dc2a2e8cbc6f", "name": "Quarterly", "originalRequest": { "url": { @@ -46940,7 +46940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88c26ea8-2bca-4480-916c-802338ee4ee5", + "id": "1d125d53-9049-41a9-8aec-ce10712a1fed", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -46998,7 +46998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f05a0082-1872-4ea9-be39-4c3bf2a65f3c", + "id": "a6ce082a-e807-4e17-b9b4-7416a34a4fc4", "name": "On a Specific Date", "originalRequest": { "url": { @@ -47056,7 +47056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ab1ec5f-b936-4b82-8481-a152ccc67951", + "id": "b982e861-2ab0-44af-b05b-44de88cca81d", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -47114,7 +47114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f3aa4c9-4ddb-4558-8ec5-b192be315c33", + "id": "f87af845-4464-4a2f-810a-669885215dfc", "name": "Once a year", "originalRequest": { "url": { @@ -47172,7 +47172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f68fed-5c1e-42d7-91c1-f80a4983a22c", + "id": "30983782-88bc-457c-830a-3cc10311891c", "name": "Quarterly", "originalRequest": { "url": { @@ -47230,7 +47230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d10508f-730b-49fe-9c6c-fb69094b6c18", + "id": "bb7a20d4-11c4-4037-8226-b52f8953de59", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -47288,7 +47288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c421ad-8bbd-4a48-9cd0-7460bf06938e", + "id": "d126687f-93a5-4cc3-96ec-294abbe091c7", "name": "On a Specific Date", "originalRequest": { "url": { @@ -47346,7 +47346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc6625bc-111f-4cdb-be80-85be892e1171", + "id": "cbb22a3a-2246-402e-ac19-378f1b0c4b15", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -47404,7 +47404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4938a8cd-0113-4d1d-8a87-d40d3b8cfaae", + "id": "5e87e1f0-86d3-4f82-be53-99053fb6ef39", "name": "Once a year", "originalRequest": { "url": { @@ -47462,7 +47462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa98e9a1-e937-48e7-b48b-4b4fe0c647a1", + "id": "ddfdb083-50a2-432e-8049-f79b363a0a17", "name": "Quarterly", "originalRequest": { "url": { @@ -47520,7 +47520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9398a63a-cdeb-431c-9cfd-59d12576c760", + "id": "acc249ba-b96f-40f6-9f50-1b99023b26af", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -47578,7 +47578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c412d6-87c2-45da-867c-9d5ffc395317", + "id": "8046f320-e0be-40ff-94a1-23e23000e9f4", "name": "On a Specific Date", "originalRequest": { "url": { @@ -47636,7 +47636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42196f82-4268-48f3-8f49-2d442a3c6e22", + "id": "c8dd6955-aae8-4079-9028-bb417528f796", "name": "Monthly", "originalRequest": { "url": { @@ -47694,7 +47694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c94e5bb-0688-41d3-90be-3de6a468a05d", + "id": "d294c104-03c2-47ec-ad09-c81e71dbb926", "name": "Once a year", "originalRequest": { "url": { @@ -47752,7 +47752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62ee02c5-a0cb-445e-a61e-63d07c8b2abc", + "id": "29314ec9-aa15-43d5-9ec7-c5cd8d22c1df", "name": "Quarterly", "originalRequest": { "url": { @@ -47810,7 +47810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4306dd76-4f51-4fa4-ba49-1b628e5a5626", + "id": "db68cbaf-baa7-4d16-ae21-9da3df92bfcf", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -47868,7 +47868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e3f731e-0638-411f-a9d2-295e1f490f11", + "id": "75bfede3-8ada-4ef7-ac5c-ab4e8b6d1f3a", "name": "On a Specific Date", "originalRequest": { "url": { @@ -47926,7 +47926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a802da9-8ccd-421d-890c-34305ae4ad68", + "id": "ff89c28c-0e19-435c-9992-84da74cdf38f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -47984,7 +47984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56e64270-80f1-4da9-a1ac-e46b02d39ab4", + "id": "dbc4b56b-d92e-4a60-8d8c-52417557daee", "name": "Once a year", "originalRequest": { "url": { @@ -48042,7 +48042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4143f490-d48c-409d-9aec-abb190c8172a", + "id": "d35005d6-c098-4d30-b4b5-47ec0fd3c24f", "name": "Quarterly", "originalRequest": { "url": { @@ -48100,7 +48100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8374a57e-0ad7-4509-a145-7561b1c93dc0", + "id": "13826fbe-ebe3-46c0-b657-f67a50312fda", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -48158,7 +48158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58ad068d-d8bb-42ff-b8fb-c8374a30c79e", + "id": "95f3099c-bc18-44da-b654-7bdbfe6d74e5", "name": "On a Specific Date", "originalRequest": { "url": { @@ -48222,7 +48222,7 @@ } }, { - "id": "c076d5ae-60ff-4641-9910-cf9fecef1759", + "id": "386daad1-b6e2-47e2-b439-bb06b7bdc98c", "name": "Delete Campaign Template Schedule", "request": { "name": "Delete Campaign Template Schedule", @@ -48264,7 +48264,7 @@ }, "response": [ { - "id": "71952cdb-7767-4afe-bc7e-b93d123b2332", + "id": "eed51bbd-76c3-4744-9129-3dce3d2ce9a3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -48299,7 +48299,7 @@ "_postman_previewlanguage": "text" }, { - "id": "71373165-d214-4a01-810e-6292b5f9ecac", + "id": "abef02a2-71f4-4875-ae98-c766913cbf77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48344,7 +48344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97ca6614-b824-4581-9893-936028381077", + "id": "1e473059-b396-483b-aaab-457ad2be040a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48389,7 +48389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab1f78e1-54ee-475d-af3e-53ae9cc21609", + "id": "17225090-8bc3-4684-b0e9-ef33a79cde79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48434,7 +48434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96800b47-c3c5-4940-80c4-32230c8caf57", + "id": "7ed24926-6b74-4672-aa6c-167824f0023d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48479,7 +48479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7f14bb7-cde8-4ff5-b8d4-49e6a67f5b01", + "id": "6c48c4a2-46cf-4b63-a310-ebaaaa788dd0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48524,7 +48524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "226d1f90-6b1b-4de3-94de-5ad40f5cd2b3", + "id": "f057f576-c2ea-450e-a12e-1389aa5b1e9c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48581,7 +48581,7 @@ "description": "Use this API to implement certification functionality.\nThis API provides specific functionality that improves an organization's ability to manage its certification process.\n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access.\nThese certifications serve as a way of showing that a user's access has been reviewed and approved.\nMultiple certifications by different reviewers are often required to approve a user's access.\nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers.\nOnce this certification has been completed, Identity Security Cloud would provision all the access the user needs, nothing more.\n\nThis API enables administrators and reviewers to get useful information about certifications at a high level, such as the reviewers involved, and at a more granular level, such as the permissions affected by changes to entitlements within those certifications.\nIt also provides the useful ability to reassign identities and items within certifications to other reviewers, rather than [reassigning the entire certifications themselves](https://developer.sailpoint.com/idn/api/beta/submit-reassign-certs-async/).\n\nRefer to [Managing User Accounts](https://documentation.sailpoint.com/saas/help/common/users/user_access.html#managing-user-accounts) for more information about accounts.\n", "item": [ { - "id": "96ff1141-22f9-40a9-93cc-08cd75f7ff40", + "id": "52232046-d42e-4f6b-adeb-31ad72f89704", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -48636,7 +48636,7 @@ }, "response": [ { - "id": "86a9e177-33e0-4c1a-9440-ef1f34be4c92", + "id": "34f873ca-4fb0-4de5-ab14-1675df9b8fed", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -48689,12 +48689,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a301d2a9-6711-43cd-85e1-2083ae6c46df", + "id": "8bf0a3c4-65b3-4f1c-9032-b38762f2cd1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48752,7 +48752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea10c515-bf87-4a5c-8572-20a5ea83b5cb", + "id": "a48dc6cf-f1f3-4da6-bbaf-cd9c982030f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48810,7 +48810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9feb65ec-4e95-45bd-a4e5-dc15625ccd25", + "id": "bd67e1b5-2a46-432e-985b-32132b20ce1d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48868,7 +48868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f4dc459-8913-457e-a554-fa19df39588d", + "id": "7b68dc0b-d6df-45b7-8265-9b770618ea9a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48926,7 +48926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe986dc3-5a21-4a42-a71f-72551fdec724", + "id": "270f24a5-f386-4ba4-8bee-b4b91726be39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48984,7 +48984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee5fcab-52b0-4e06-a907-c0ca8af1a704", + "id": "9c86b1f2-9a99-401b-b206-18923e046267", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49048,7 +49048,7 @@ } }, { - "id": "06d08169-13f7-4ccc-a9b8-a866cee39018", + "id": "6b425bcf-aceb-43e2-8d52-5fd6872deb8c", "name": "Certification Task Status", "request": { "name": "Certification Task Status", @@ -49070,7 +49070,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -49080,7 +49080,7 @@ }, { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "taskId", "disabled": true, "description": { @@ -49101,7 +49101,7 @@ }, "response": [ { - "id": "3099ea00-8bcf-467b-92c9-c8feec1187d0", + "id": "dce7a228-6191-421a-b6d0-b353fcd68d1d", "name": "A certification task object.", "originalRequest": { "url": { @@ -49142,12 +49142,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n}", + "body": "{\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "08d59f71-ff13-4d28-97e4-c53dbd1e8022", + "id": "fe913766-191f-4105-975e-f52cee0d0b15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49193,7 +49193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99125675-8641-4cef-ade2-18094583f026", + "id": "4f3f421c-1325-4933-a397-bd519efa6591", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49239,7 +49239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8b6a138-c147-44f2-a062-3cc305f7e98c", + "id": "956a2516-f84a-43b7-95c9-a2117cdd391a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49285,7 +49285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73b6737-8f05-4e8f-a2cb-eb411d9c9f82", + "id": "41d442f7-fac0-48a0-b525-4ed6b7adf6d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49331,7 +49331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "666d0ad7-f059-45b7-ba96-c1d4ad5ac205", + "id": "fe6dfeb6-bc52-4a37-8acc-d75da9b1120e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49377,7 +49377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "346dac48-74ef-449d-92b8-ef8db381ca0d", + "id": "2fa7dbef-4350-4174-a29c-d204904f1beb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49429,7 +49429,7 @@ } }, { - "id": "676c9499-a57d-427a-a45f-366a4e79fe01", + "id": "cd3b1e7c-4eab-40d4-9f29-08cf19be23fb", "name": "Pending Certification Tasks", "request": { "name": "Pending Certification Tasks", @@ -49450,7 +49450,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -49471,7 +49471,7 @@ }, "response": [ { - "id": "24a5dccd-15a6-4056-9adf-594ad97fe098", + "id": "3f98d350-4735-4041-b89e-28584a5041f2", "name": "A list of pending (`QUEUED` or `IN_PROGRESS`) certification task objects.", "originalRequest": { "url": { @@ -49511,12 +49511,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"SUCCESS\"\n }\n]", + "body": "[\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"ERROR\"\n },\n {\n \"id\": \"abcd-ef12-3456\",\n \"certificationId\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"REASSIGN\",\n \"status\": \"QUEUED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9359b3c3-bb22-43d9-ab9c-c022632f325f", + "id": "8a457af6-24cf-419d-b55b-1d4aa111ec32", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49561,7 +49561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "112cb493-ebcb-4333-a69a-88cfea18add8", + "id": "2438f2a0-db91-4d49-85be-61aa30596718", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49606,7 +49606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8040bc82-5360-4ce6-abc9-dbb139aa636c", + "id": "7a520115-3793-4058-a22d-4920197824c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49651,7 +49651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cfee95f-111f-40e8-aeae-d3dec8895278", + "id": "510a8845-ca06-4ac6-8b68-87eb14d8f275", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49696,7 +49696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "256a6fa3-1408-4b4d-bd9a-593e8b39e00f", + "id": "46fb1cb5-a6ad-429b-aa30-76e2c443f776", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49741,7 +49741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d19e5691-8270-480e-a7f6-d52eef75e233", + "id": "78a81ed8-a85a-414d-b9b4-b31daf42d8d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49792,7 +49792,7 @@ } }, { - "id": "0a96bc37-5957-4300-93c5-88cee30c6919", + "id": "5666cc98-0f05-417f-9e7f-2bbe7be6f5b2", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -49883,7 +49883,7 @@ }, "response": [ { - "id": "e8d63313-040e-44ba-8d03-ab1cbd9e5afd", + "id": "253c7387-a6f6-4520-a262-b39f85117d79", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -49967,7 +49967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c40c05af-76e1-445c-9dd4-d0fd4ebcc541", + "id": "90ea31fe-9596-4ccd-b814-44a9c3068247", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50051,7 +50051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cf00b8a-fe3f-4e37-a06a-16df91fa10f8", + "id": "22325e25-0f61-4f9d-a574-3b6dd7bab2bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50135,7 +50135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e1e2d6e-663e-40d2-9bbf-d2a467e363c6", + "id": "68b68e24-9a03-4d8c-b7db-dca3d75609e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50219,7 +50219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2cb3b65-b2cb-400b-94fb-9e0098f4d168", + "id": "81d9a48e-f767-4275-9ad8-ea2f6b618509", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50303,7 +50303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecc8857c-b20c-4c1e-9b72-749db3763a15", + "id": "f019d354-5fd3-4460-bc20-ecfbeba5591e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50387,7 +50387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5736348e-bcb5-4e9f-806a-225ff56678c0", + "id": "9cb40996-668d-4d9a-8083-b04ce3f2e915", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50477,7 +50477,7 @@ } }, { - "id": "644901b1-84d0-403c-a851-da2ce8854d13", + "id": "0c625b3d-75c5-41fd-834b-3fa54b98a8c4", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -50565,7 +50565,7 @@ }, "response": [ { - "id": "29130086-038f-4622-a34c-19815b5f694f", + "id": "98cfc279-d259-447f-a3c7-996a7b2d4a13", "name": "A list of reviewers", "originalRequest": { "url": { @@ -50656,7 +50656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e45a12f-47e8-49e5-8909-eca3adec9eb1", + "id": "d7db66b3-6115-4c50-9cd7-d46716c2a9e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50747,7 +50747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f724060-bf74-44ed-9f83-592ccb19261e", + "id": "d1be96b9-6195-4d8c-9b8b-5d139910b85c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50838,7 +50838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b91a1f7d-3eba-424a-b119-f007c25ee75b", + "id": "1b1e4fa1-193c-404c-8f87-b9807aec6d57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50929,7 +50929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f56a76f5-2091-4252-a1e4-4d57c75b72cf", + "id": "92193460-5e79-41b6-ba0c-a9ccddd9a2da", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51020,7 +51020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fade0fe-1663-453f-95f1-06c50e3f9736", + "id": "e1597fe0-5320-4136-b211-8a2ac1671b5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51111,7 +51111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a6eb21-4aca-4a55-bc6b-009c31c6d491", + "id": "4ee43d1e-9d73-4154-9c54-d9b32f30b272", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51214,7 +51214,7 @@ "description": "", "item": [ { - "id": "f61d9ecf-f531-40eb-8a51-2d6e5909615e", + "id": "843ed3d5-eff2-43f5-90c9-af66862c55e6", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -51243,7 +51243,7 @@ }, "response": [ { - "id": "d66b4b43-3719-43a6-a52d-ca1a4e8372c7", + "id": "ca44ccba-b859-4e33-a8ef-1247a437cbbe", "name": "A list of connector rules", "originalRequest": { "url": { @@ -51286,7 +51286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50516cdb-be46-44ea-8cea-6e96bb12d01a", + "id": "40a59bf7-841e-49e6-8453-52f027f65499", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51329,7 +51329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "529bdff0-ea30-44ed-98af-de0fc9f6ee93", + "id": "e0d8bbef-6cdd-4884-894c-ed94d4f8c889", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51372,7 +51372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40e7fa90-688a-42f7-965c-1f7ec6df65d8", + "id": "e9529549-5633-4abf-9e0c-e6c195b2be46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51415,7 +51415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f7d59fa-cda1-4640-a916-88def6d10874", + "id": "b30e302c-0bb9-4d7d-8882-71e38b744362", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51458,7 +51458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad37f62-3d7f-4796-af01-ba8750c29759", + "id": "25055531-c70d-46eb-84d1-778f8efe26b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51507,7 +51507,7 @@ } }, { - "id": "903002b3-2189-4623-b66e-b20856fa9496", + "id": "5e573067-3c34-404a-bbe9-f1c35316329a", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -51549,7 +51549,7 @@ }, "response": [ { - "id": "c9d67339-651f-4e61-8b27-26014e8ae53e", + "id": "8f577501-9150-4aba-a465-dbf6aa810e5c", "name": "The created connector rule", "originalRequest": { "url": { @@ -51605,7 +51605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbfc1f26-82cf-4b44-b798-df376e35dd0e", + "id": "bc02c20b-04cc-4704-8d29-345b5e5c5b9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51661,7 +51661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c75d786-e954-4994-abc0-9a600ab7ef38", + "id": "d0699e93-420f-433a-a7f8-d7a8f7768316", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51717,7 +51717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60627db4-1077-41ad-b84a-816057ba57ec", + "id": "7b43c83d-b58e-4f8f-8264-6ae34d5ff56a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51773,7 +51773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08a432fe-488a-4065-a2b8-cc9e187e8806", + "id": "41a97ce7-0eba-4e63-9c39-7db4a5eab37c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51829,7 +51829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "414fd4e9-05d7-4d67-a2f9-78ebcd1ab392", + "id": "4ee5cf9e-0517-4d31-a958-6c78ce0027b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51891,7 +51891,7 @@ } }, { - "id": "3c61361e-32c4-4d68-9351-56decee1365e", + "id": "9f26f83b-e30b-4ef9-9c16-c810e845495d", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -51932,7 +51932,7 @@ }, "response": [ { - "id": "adef4151-610e-4595-88f3-1ecc5d10ff37", + "id": "9b58b232-9305-44e2-a44d-f03654d1ddb3", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -51976,7 +51976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5727c4f-f7b1-4372-813b-608a5d40e82a", + "id": "6510333e-6f54-4410-b1c4-7696747ee3b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52020,7 +52020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19b18d75-47b4-4fa4-af17-83d637470460", + "id": "6f52afc5-4452-44d4-9b2a-f9f6dbfb2632", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52064,7 +52064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ebe7145-30d0-4055-b9a5-50c803105546", + "id": "35744114-ba39-4c2a-b10a-014d0e884fc6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52108,7 +52108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62a0f917-c789-4bdc-90af-e21aaca182e4", + "id": "299eccac-40da-4d53-8309-95595d16011b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52152,7 +52152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bb468e6-39b1-4976-8359-a65e0b77b696", + "id": "80fefc0e-3abe-48c6-903e-acbd5732b726", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52196,7 +52196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9ce36fa-5306-44b6-b767-b398772e8598", + "id": "e6983c2c-4d5c-4f7f-9cb3-f3570c882e3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52246,7 +52246,7 @@ } }, { - "id": "3479849b-6028-465f-a005-c894d91726b3", + "id": "c49b6e7b-5e94-4de1-9e5b-1f81152ce8d5", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -52300,7 +52300,7 @@ }, "response": [ { - "id": "2cee962d-70fb-4e53-bbd1-20c35b6e4507", + "id": "c61dd804-10aa-4225-98bd-ef734bab3a83", "name": "The updated connector rule", "originalRequest": { "url": { @@ -52357,7 +52357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41992d20-6143-4048-84cc-2581eb022481", + "id": "eaf8c5e0-3ee5-43c4-bad7-e2b66d465140", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52414,7 +52414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73b45f90-fb6b-45d0-9709-100370874f07", + "id": "98315132-5866-4b90-903b-64086b7a7238", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52471,7 +52471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e0a06c-cd95-4a4f-b8dd-1060b2bc534f", + "id": "4cff94b5-9f91-4f76-b4ef-34a3ca7b7325", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52528,7 +52528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b5c28db-7833-42d9-b9c2-7d99b256c95d", + "id": "29f6d3b5-c53f-461e-8528-1bc1e6341670", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52585,7 +52585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5d601ac-1732-4316-9949-a91540eb7ab8", + "id": "7a3eac45-1665-4e4b-9586-4a411c845eb4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52642,7 +52642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "413e69ae-30a7-4219-a0fe-4d517e633f24", + "id": "a4e9d7dd-c714-4a6f-919a-48f90937f826", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52705,7 +52705,7 @@ } }, { - "id": "215891ae-75c8-4b94-9a63-94d5cdb0e90b", + "id": "9dd78eef-afb2-4004-9749-4f60fb97b5c0", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -52746,7 +52746,7 @@ }, "response": [ { - "id": "0f1f5765-fec0-4d3f-a4df-f9493cab8e77", + "id": "8afdf6cd-e2a2-40aa-8a2d-d90f60727461", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -52780,7 +52780,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5e51b856-164c-44bc-a2fa-e4bd8ee7231c", + "id": "355dca68-bfb5-463a-8302-356130a0422a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52824,7 +52824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d45e7987-caa5-4e41-b204-4a8a66b6bd14", + "id": "17ad71e9-791d-4424-bc5b-b891e0d962ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52868,7 +52868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b213ab1-265b-449e-8bdc-d8e63ab5df48", + "id": "d69e9837-d646-4d9f-8cab-86b423b3b55a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52912,7 +52912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c4ef98e-b80e-4308-93ac-b58e8215672c", + "id": "98e2eb14-92b9-4b69-a17a-be1d39d5d031", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52956,7 +52956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61f87991-6d60-4357-b9f4-44aac1cdae92", + "id": "3b41c589-b43e-4b29-ab03-6efc71d5613c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53000,7 +53000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f85621fe-f6b4-4723-85f4-9ede0ee425b0", + "id": "23651dcb-19f7-4dac-a6bf-c1f590412152", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53050,7 +53050,7 @@ } }, { - "id": "31ebc820-e6b7-4b17-a1eb-c7f952ae6680", + "id": "cf069355-fe3c-4c1d-b07a-7ee513210b6c", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -53093,7 +53093,7 @@ }, "response": [ { - "id": "ca887779-0632-48e9-bb8a-9b4a2d262429", + "id": "e9cbc7b2-43ad-43cc-9a69-bc1e49acbae3", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -53150,7 +53150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f68822-da50-4c92-ae59-f3e779b2eee3", + "id": "a9deff1b-34fe-4fb9-94e1-1d0e46954780", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53207,7 +53207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de9d0280-a831-4aab-b434-5f18ee53b3aa", + "id": "ba220474-7ff6-4061-ad12-aaff40bfd860", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53264,7 +53264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c8ac68d-5aea-4d8a-a469-ab11fc3e311c", + "id": "d9575609-5330-4bde-bff5-4293b25659f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53321,7 +53321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "525dc193-cb9c-4ed9-adbc-c930084d1336", + "id": "f5dbd236-a2fc-4acd-9cbb-a7afff8016f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53378,7 +53378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1b7576f-2ebb-4f4d-8622-4e0e18b6701c", + "id": "f99cfca9-04ec-4586-866e-86836dc05702", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53447,7 +53447,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges Identity Security Cloud uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between Identity Security Cloud and the Active Directory source, a connector can bridge the two and enable Identity Security Cloud to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn Identity Security Cloud, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [Identity Security Cloud Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in Identity Security Cloud.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/docs/connectivity/saas-connectivity) for more information about the SaaS custom connectors that do not need VAs (virtual appliances) to communicate with their sources.\n\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about using connectors in Identity Security Cloud.\n", "item": [ { - "id": "a7e8ec67-c192-415b-9dcf-c4cf37c43347", + "id": "f7e00fe0-1a47-4834-9bc1-022f403462ee", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -53522,7 +53522,7 @@ }, "response": [ { - "id": "8bc4fdef-6a9f-4303-8832-3d8672259f05", + "id": "c48a4fbd-764e-4c0a-9053-134adc7bd43a", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -53611,7 +53611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dab2915a-4b00-4dd0-93a9-a09baf2a9638", + "id": "fae772cb-9b08-4e8a-9e16-8cc5c5636c2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53700,7 +53700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9471332a-83f0-4414-8559-fb5bc812de0c", + "id": "bd1f5384-1ede-47d3-babc-e2711a5dde0b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53789,7 +53789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae3f9236-1a5c-4c57-8623-da1807c567f5", + "id": "3206675d-2e5a-4ec7-a13d-d4acad759aae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53878,7 +53878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b4b5718-0bf9-4bd6-80d1-37bb2c312cb9", + "id": "776d80a4-4781-4913-9a26-a30baddffd67", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53967,7 +53967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64084ec3-2026-402c-9228-d963bcdcd644", + "id": "55011dd7-dd0f-4f67-b003-7f320e8e5ac9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54056,7 +54056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "795946f0-ff10-4fcd-8b97-1f1448993a36", + "id": "701b3d5c-f790-4666-9508-c29cc9919a82", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54157,7 +54157,7 @@ "description": "Use this API to build and manage custom forms.\nWith this functionality in place, administrators can create and view form definitions and form instances.\n\nForms are composed of sections and fields. Sections split the form into logical groups of fields and fields are the data collection points within the form. Configure conditions to modify elements of the form as the responder provides input. Create form inputs to pass information from a calling feature, like a workflow, to your form.\n\nForms can be used within workflows as an action or as a trigger. The Form Action allows you to assign a form as a step in a running workflow, suspending the workflow until the form is submitted or times out, and the workflow resumes. The Form Submitted Trigger initiates a workflow when a form is submitted. The trigger can be configured to initiate on submission of a full form, a form element with any value, or a form element with a particular value.\n\nRefer to [Forms](https://documentation.sailpoint.com/saas/help/forms/index.html) for more information about using forms in Identity Security Cloud.\n", "item": [ { - "id": "2265badc-d7fa-4c73-a44d-8cb3721bc328", + "id": "65bce730-f7d2-4475-930e-37a3a3a98e15", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -54223,7 +54223,7 @@ }, "response": [ { - "id": "892912c8-a3db-4513-9cf1-6d19f93161b5", + "id": "69c5c49c-62c2-402f-bcb4-5f6de5d71cde", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -54298,12 +54298,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"do in s\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"labore ad laboris in\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ullamco\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip laborum eiusmod nostrud\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ut in consequat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna et sed\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"eu dolore aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id aliqua Lorem\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n }\n ]\n}", + "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"deseru\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"labore irure dolore Excepteur\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"officia ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat sed\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea Ut laboris\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat quis\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ex non nisi mollit\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut magna\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8646476-3a22-44d2-ad44-d58c47fa68c0", + "id": "8ddc92f1-11c2-4fd2-8b4f-b4abdd884396", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -54378,12 +54378,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1807662a-15a0-4868-81ef-3509475d8fcd", + "id": "d8b58d3f-515a-46d7-8e30-582224aa9265", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -54458,12 +54458,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "641d0010-ff0a-4e1e-9691-7f78b602428a", + "id": "c30aa0db-9605-411f-8aad-9489d13d6890", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -54538,12 +54538,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "aac49293-847f-44a9-802a-a87573e9207a", + "id": "4170ed02-1b7d-4705-a298-31bf106bcffd", "name": "Too many requests", "originalRequest": { "url": { @@ -54623,7 +54623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d9fb615-d50e-48c4-900d-49e0fdec2f02", + "id": "7fcb9a6b-c3b0-4b88-acf1-8c0223e673a0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -54698,7 +54698,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -54709,7 +54709,7 @@ } }, { - "id": "68e7f6de-ad64-4336-a269-8c4ee0898135", + "id": "e3f32001-b284-4a77-b37b-ab6eb7ed08b8", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -54748,7 +54748,7 @@ }, "response": [ { - "id": "1c7b1368-f623-4e6b-ac43-affffaaff637", + "id": "2ab295c1-fe38-431c-b4bd-e1934b774764", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -54799,12 +54799,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo in eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo d\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut ipsum ad enim ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1da5bba-cb3f-452d-83d2-b40946edff84", + "id": "963f88ac-a905-4dad-9374-4bb6eb7afd7f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -54855,12 +54855,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "750d3e18-b353-4077-97b4-563bc56adf07", + "id": "6465f501-c6a9-4b25-a559-245ec58ec856", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -54911,12 +54911,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "709b5eb0-ddfc-4f21-8a9a-dd1d3c8202cd", + "id": "54e5959f-3971-4e62-b522-477a0a78ffc1", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -54967,12 +54967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "49dede54-c825-4fbd-8a1e-3fd7900fa8aa", + "id": "a1213b31-40ed-4b46-ac36-a2e94139fea9", "name": "Too many requests", "originalRequest": { "url": { @@ -55028,7 +55028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2446851d-8e4e-4158-ab99-a72a9de1da17", + "id": "16fb990b-a5a4-48e6-b71a-3645651a4088", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -55079,7 +55079,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55090,7 +55090,7 @@ } }, { - "id": "0b662354-1bde-43ba-9c8c-7e3fe608a5d1", + "id": "3fe2ee5b-2816-4b0f-bf9f-0a209870114d", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -55131,7 +55131,7 @@ }, "response": [ { - "id": "1c0dac68-bf9e-473f-9902-5b82175339d1", + "id": "4a8eb1e0-d59a-46ae-b7ec-96ec6c22b320", "name": "Returns a form definition", "originalRequest": { "url": { @@ -55170,12 +55170,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo in eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo d\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut ipsum ad enim ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4c5db9de-c8f8-4e75-b0fb-51ddd0471e68", + "id": "410a9d89-b181-4d28-a533-c90ecb1184c0", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -55214,12 +55214,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f5f1fdd-7910-4d19-8b19-28d57e995db5", + "id": "0f035277-7e21-434b-ab4a-8d3f68cdab49", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -55258,12 +55258,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "598a934c-2ee8-41a0-8c90-c1092da0a136", + "id": "954f09f7-8794-4212-af41-1a6506fad6d0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -55302,12 +55302,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4145e904-c41e-4972-913b-61dea77f8ecd", + "id": "a24e2bc3-aae4-412c-93c1-06ea87f65cca", "name": "An error with the item not found", "originalRequest": { "url": { @@ -55346,12 +55346,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fb5a300a-81cd-47c6-9c94-b27f322be026", + "id": "6f7a8c26-d6f8-40f3-ae24-2d9be9b373ee", "name": "Too many requests", "originalRequest": { "url": { @@ -55395,7 +55395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d902170d-11dd-44c0-830a-ff701d43e87a", + "id": "a982999d-332d-4efb-a81e-44e137f21fb6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -55434,7 +55434,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55445,7 +55445,7 @@ } }, { - "id": "13ba7b83-ef50-4403-89f7-4ef0a9a6a6cd", + "id": "29a97c18-7865-4276-b3c2-272a07276775", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -55486,7 +55486,7 @@ }, "response": [ { - "id": "b94eb876-d497-47c1-9084-32803a8a9675", + "id": "f9c81918-1823-4fc3-a2d9-f1b2c9a92c39", "name": "Returns an empty body", "originalRequest": { "url": { @@ -55530,7 +55530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de421ada-48df-4d5f-babd-64f2101f4f73", + "id": "0139a53d-35bf-4ff7-b004-2f2c34103a9c", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -55569,12 +55569,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bc59a899-8746-4b35-9726-f463c2f7c99c", + "id": "d36cb2ee-0ae8-459e-85a5-fe7d82e46657", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -55613,12 +55613,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5d2b52d6-b165-41d8-940e-7cfaf5f001f9", + "id": "b9990bf3-e10a-4cfa-a68d-df019e1a1822", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -55657,12 +55657,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "664a5eb2-2a75-443a-9f79-c3d77732f8de", + "id": "fcacf75b-80e7-45d6-b030-4f002a3522ff", "name": "An error with the item not found", "originalRequest": { "url": { @@ -55701,12 +55701,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "435223e0-d044-4681-8433-226293b7a2cf", + "id": "6731d18e-cd21-4b76-97bf-7bb8fee84f35", "name": "Too many requests", "originalRequest": { "url": { @@ -55750,7 +55750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6796fb2-5f97-4345-9d8b-f8ba34aa55f3", + "id": "b56c1f21-0c03-40c5-893a-cc3c2e70596d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -55789,7 +55789,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -55800,7 +55800,7 @@ } }, { - "id": "dc3259b3-b83c-4cff-a620-811ed8ad5596", + "id": "8f0b64af-c8cc-4c95-abe5-0224cf7f98c4", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -55854,7 +55854,7 @@ }, "response": [ { - "id": "5c76a591-43a6-4afd-a871-b7f13cbc5595", + "id": "d327cc73-dd5c-4269-944a-6e1175a22ce7", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -55906,12 +55906,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo in eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo d\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut ipsum ad enim ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80381caf-f886-442d-af97-52c23250a122", + "id": "2df7af5a-72aa-4680-8248-d02f20b5008b", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -55963,12 +55963,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "71449c2a-ffe8-4bdd-8ac0-1f1a464008b8", + "id": "a6987d58-1b7b-41a1-8809-0808cd1032eb", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -56020,12 +56020,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "19a2728a-3463-463f-935a-675be9ddc7b4", + "id": "9fd9ba4f-84e8-4dfe-a27d-a3121aabecef", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -56077,12 +56077,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb197efe-9c6e-442b-b9d6-8d50be36e250", + "id": "4c8f447e-6df6-4a43-b9df-60d966086304", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -56134,12 +56134,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c787db73-7f1d-485b-a778-5ab295bf1dea", + "id": "feeee5f3-6ccc-4f17-9f45-16714aab9e57", "name": "Too many requests", "originalRequest": { "url": { @@ -56196,7 +56196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8036be4-bda3-42af-8b32-c0838f29e202", + "id": "2349d54a-ddf0-449d-91e0-f3f6d71f7514", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -56248,7 +56248,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56259,7 +56259,7 @@ } }, { - "id": "15402a88-82a1-41de-969d-aa197340fbc0", + "id": "6c2dc12d-6b41-4c2e-a34e-3517d299c11a", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -56339,7 +56339,7 @@ }, "response": [ { - "id": "f56c2189-301e-4037-9f33-712d1d66b1ee", + "id": "0098564d-cab3-4d86-872d-bc0d5daad091", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -56425,7 +56425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c225b78f-320d-4a61-8d46-c3dcf6800422", + "id": "32bcb94b-1540-43b6-b9d4-0316965d4f76", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -56506,12 +56506,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4a99d785-a749-4cf3-ac80-5ee7b3d7b6d2", + "id": "7dcfe036-b14c-40bd-af81-4ad503089d0a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -56592,12 +56592,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8bf0ec3a-4454-4e3a-9bb9-6fe498d2c733", + "id": "f38425d6-ac02-4395-9b1b-a644ccef998c", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -56678,12 +56678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8feb612-bab2-4bf5-a47f-c4b2afcb911b", + "id": "a9391a7e-44e4-4fc3-ba39-6919da85c667", "name": "An error with the item not found", "originalRequest": { "url": { @@ -56764,12 +56764,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "54501e0f-673c-4139-ba96-507e2744782e", + "id": "c7927871-7832-4c8b-84c7-5632abb97193", "name": "Too many requests", "originalRequest": { "url": { @@ -56855,7 +56855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38f253bf-a57b-48a2-984e-4f9e5ab3f19f", + "id": "6198205b-8f8e-4d4d-8609-ea16444ff8a5", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -56936,7 +56936,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -56947,7 +56947,7 @@ } }, { - "id": "bd6bb179-3633-424b-8fa7-db7a4368a415", + "id": "5cf3d7bd-4391-4651-a455-a7f7ba934deb", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -57014,7 +57014,7 @@ }, "response": [ { - "id": "145fd63b-4894-4408-8bc2-d2af79f66e05", + "id": "390addd5-4c27-43b1-821d-c51b5db0dd59", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -57090,12 +57090,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit nostrud\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"deserunt voluptate\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore non sint\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nisi Duis velit\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": 31063985\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate ulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem in proident sunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in enim cupidatat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident reprehenderit\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": 98414021\n }\n]", + "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut pariatur nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in irure nostrud\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"enim pariatur aliquip ipsum sunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim adipisicing\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": -36570334\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in aute\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cillum sunt consequat sed\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud ut sed Ut \"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": 66773827\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af719ed4-2262-421a-bfff-88dbf032b0c5", + "id": "5c2091a6-1a5b-4ff5-872f-4b59082b904b", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -57171,12 +57171,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e4723dcc-7db3-4150-846f-1a5b4a79deb4", + "id": "296af75d-6ba6-48cd-82cd-6337d2263a69", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -57252,12 +57252,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d828a6ad-36f2-43c7-9029-22c4ea870f42", + "id": "87063cf5-925e-4aa0-8f5e-3733899eb696", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -57333,12 +57333,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "27cc920e-872c-4d78-b591-52bdaecacef7", + "id": "e7130490-1e51-43be-91e5-d918924906ac", "name": "Too many requests", "originalRequest": { "url": { @@ -57419,7 +57419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c473c66-cef9-4e58-97fb-01a1046a9219", + "id": "0ee4266e-8f40-4506-be58-0b85a589e734", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -57495,7 +57495,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -57506,7 +57506,7 @@ } }, { - "id": "4c7c8380-a715-4097-983f-a656262b2510", + "id": "d60979e3-f69e-4385-8a5b-dfc59ef4a3bc", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -57546,7 +57546,7 @@ }, "response": [ { - "id": "869a8e43-07a3-4ef4-9944-6b212e4cab01", + "id": "fb6f1985-2c2a-4464-bbd0-a03f4bc31fb1", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -57603,7 +57603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57ab4173-0064-46fa-a4d8-1a0dba698372", + "id": "37423434-24de-4536-9853-8ffd2af5fa69", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -57655,12 +57655,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "091573f7-bffd-4a09-931d-8ade2f56d4da", + "id": "8a3ecfb9-b0d5-4e25-a10a-29f0b03ca7a1", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -57712,12 +57712,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "737012ce-21d9-4f8b-8c0e-0df443129da0", + "id": "f8b592cd-735a-42c7-bafc-a146ba09d89d", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -57769,12 +57769,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9928fd8e-c7ee-47fd-a376-fc1849a55e0e", + "id": "a8785df3-90c9-40c5-8126-614c41441988", "name": "An error with the item not found", "originalRequest": { "url": { @@ -57826,12 +57826,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9d2aeba-54c6-49d8-83ae-46d15a65268d", + "id": "54dd25c5-7b5f-4adc-95dd-8c2288f2002d", "name": "Too many requests", "originalRequest": { "url": { @@ -57888,7 +57888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2420073d-09db-4d50-9143-eb6fc6534a89", + "id": "ed81479c-c10e-40ad-b687-fc765cfa7a6a", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -57940,7 +57940,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -57951,7 +57951,7 @@ } }, { - "id": "28ccbd5f-7721-4b55-a2c3-136094e072ec", + "id": "5de36818-2ecd-4d9d-9b38-c368c2236a06", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -57991,7 +57991,7 @@ }, "response": [ { - "id": "5d5db5e6-74e1-4a37-8f9e-2dc700097bd0", + "id": "ad2a1da1-247f-490b-8931-6221bf298bd9", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -58043,12 +58043,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"et_8_\": {},\n \"nulla_7\": {}\n },\n \"key\": \"dolore irure aliq\",\n \"text\": \"incididunt laborum consequat cupidatat\"\n },\n {\n \"detail\": {\n \"velitf_b\": {}\n },\n \"key\": \"Duis Ut ut\",\n \"text\": \"ut non\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit Ut proide\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure aute exercitation elit labore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id do\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": 94108317\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt nulla in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur dolore ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est commodo\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": -26829279\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"qui4b2\": {}\n },\n \"key\": \"in Lorem incididunt\",\n \"text\": \"officia in\"\n },\n {\n \"detail\": {\n \"in_6\": {},\n \"dolore0\": {},\n \"adeb\": {}\n },\n \"key\": \"eu occaecat et\",\n \"text\": \"cupidatat fugiat occaecat\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"nisi_d2\": {},\n \"Excepteur5e\": {}\n },\n \"key\": \"dolor elit eiusmod incididunt\",\n \"text\": \"dolore adipisicing\"\n },\n {\n \"detail\": {\n \"aute_5\": {}\n },\n \"key\": \"in ut consequat\",\n \"text\": \"sint\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"minim_bd7\": {}\n },\n \"key\": \"laborum officia eiusmod aute\",\n \"text\": \"consequat magna\"\n },\n {\n \"detail\": {\n \"este78\": {},\n \"enim2bf\": {},\n \"aliqua2c4\": {}\n },\n \"key\": \"sit\",\n \"text\": \"cupidatat exercitation do aliqua\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"n\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"elit voluptate\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"reprehenderit\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": -27070864\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ullamco Excepteur velit et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et laborum est\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"an\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur al\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": {\n \"type\": \"FORM_DEFINITION\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"Temporary User Level Permissions - Requester\"\n },\n \"version\": 34408823\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"reprehenderit_8\": {}\n },\n \"key\": \"paria\",\n \"text\": \"mollit aute\"\n },\n {\n \"detail\": {\n \"in3\": {},\n \"inb_\": {}\n },\n \"key\": \"nisi\",\n \"text\": \"exercitation occaecat Excepteur ullamco consequat\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"sit__45\": {}\n },\n \"key\": \"Ut id reprehenderit do\",\n \"text\": \"tempor officia\"\n },\n {\n \"detail\": {\n \"in_a\": {},\n \"enim_60\": {}\n },\n \"key\": \"dolore in incididunt nostrud\",\n \"text\": \"ullamco fugiat\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ceecd155-b5ea-4844-a935-43d5174307ea", + "id": "1a8835d2-b83f-45cf-8fa7-305b142af478", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -58100,12 +58100,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b61b385d-9cc5-470b-bf25-a675c5ac9e2c", + "id": "9d7832a6-af96-4620-86af-3f514ce43d4f", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -58157,12 +58157,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1123c3fc-a624-4ad1-9699-7ee913197993", + "id": "6c6fb7e5-6dd0-4eb1-b5f9-afc49e16734f", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -58214,12 +58214,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fdcd9a03-1bb7-48ee-a94c-05d170a28d91", + "id": "8a77e475-61cf-46d2-8654-587e5d86bdd4", "name": "Too many requests", "originalRequest": { "url": { @@ -58276,7 +58276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e74a0f-580b-4096-b96f-86f34469dd11", + "id": "9344320a-894f-4603-abcf-131d28ecc8e7", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -58328,7 +58328,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58339,7 +58339,7 @@ } }, { - "id": "2c1a4f76-ccfe-4b29-b408-bfce28ead211", + "id": "36102bbb-043d-44e2-8bc1-bf2d5a0cf8d1", "name": "Create a form definition by template.", "request": { "name": "Create a form definition by template.", @@ -58379,7 +58379,7 @@ }, "response": [ { - "id": "094b02d5-16db-4620-b181-7ed74e381a09", + "id": "8ac97a74-4344-49e7-a3f5-abfda719d388", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -58431,12 +58431,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nu\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo in eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"commodo d\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut ipsum ad enim ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e9af4f1-f2c1-487b-b27c-6f87412ae825", + "id": "b5219eb3-af40-4ccc-bc27-490e4854b41a", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -58488,12 +58488,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5d1249e-fc25-4ceb-af45-428c958fb362", + "id": "663718b3-f8f3-42a2-ab4e-fd31555ca9f1", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -58545,12 +58545,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0922ea76-dcf3-41ec-91c0-a9efd6d906cc", + "id": "03fdf495-b2d2-4290-9792-a7a973dfcd63", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -58602,12 +58602,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c63fe100-436e-432b-9f8b-1c40ef0a8541", + "id": "27710783-85b6-46f9-a362-c3ddead7c48e", "name": "Too many requests", "originalRequest": { "url": { @@ -58664,7 +58664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e45cd4-e15d-46be-87fb-ada856d907ee", + "id": "7576db5e-4c91-4a45-8fc6-00b6fbf38d70", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -58716,7 +58716,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"laboris ipsu\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 35756315,\n \"trackingId\": \"in ut\"\n}", + "body": "{\n \"detailCode\": \"in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 43446307,\n \"trackingId\": \"ut Lorem enim tempor\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -58727,7 +58727,7 @@ } }, { - "id": "3e2129dd-7ddd-4b15-a7c1-ae44d1bc98fc", + "id": "c3eaa933-1739-4fb4-a717-fbacaba5b289", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -58786,7 +58786,7 @@ }, "response": [ { - "id": "c97c0a07-23a9-48bd-90e9-c1a9460f0f10", + "id": "48c13e02-d59f-4f01-aa1d-d38809eecd67", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -58848,7 +58848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2faa8d4d-d720-4190-bc8d-c1ee166cad70", + "id": "a60fb6da-4ee3-480d-aef5-98a70d674f78", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -58905,12 +58905,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9d6b671e-b991-4830-b44f-f7548b072afd", + "id": "6793cd70-7939-49f5-9f3e-93284416ba36", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -58967,12 +58967,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90329374-9313-4212-8bc4-ff23b41d7886", + "id": "b946efc9-ed1e-4ca4-bedb-1196253a6ab0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -59029,12 +59029,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca91b3b3-6130-4878-bbe2-d0168b482f5e", + "id": "f27354c9-b156-4b19-aee2-b8bf31c94d6d", "name": "An error with the item not found", "originalRequest": { "url": { @@ -59091,12 +59091,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe03c7cd-093e-420e-960f-bb7e492049dd", + "id": "22573297-d63a-4dff-8023-70ecafd22af3", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -59153,12 +59153,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e66be9c-acff-48e2-b233-895b1a2b54ce", + "id": "b26c5f91-0d90-4746-a0df-3ce98bee28f9", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -59215,12 +59215,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ad6296f-44f1-4ce8-b2cd-c6fd01b0afe1", + "id": "351a2e07-8826-46bd-83d3-8c8e12821dd9", "name": "Too many requests", "originalRequest": { "url": { @@ -59282,7 +59282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8898dd7d-528c-4559-ba9c-e128a2bd3cad", + "id": "411b9d3c-a75d-4813-a1a9-66c5177e1395", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -59339,12 +59339,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "42578d39-4d8e-4b12-8b83-d929b4d25aa1", + "id": "ac7164de-f2ec-4cbf-b652-80daf1430e82", "name": "An external service is not available", "originalRequest": { "url": { @@ -59401,7 +59401,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -59412,7 +59412,7 @@ } }, { - "id": "453e157a-a8d5-4779-9b40-50faf31f89fa", + "id": "f80532c4-6f1c-4b7f-9111-01517031bc12", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -59462,7 +59462,7 @@ }, "response": [ { - "id": "47b3818c-ba9b-4e21-afa4-551a69cbeda1", + "id": "bc094936-821f-4f58-a91e-33f2d4dbdfa4", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -59503,12 +59503,12 @@ "value": "application/json" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b24ddbce-d136-497a-b7cd-1e87c35c54d6", + "id": "daf0b564-feb2-4b1d-90f2-04f0e5613921", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -59549,12 +59549,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed50caf8-a978-4ced-aea9-fb5d7a3f0462", + "id": "66a9c952-ddc4-444e-b262-0d720a20a01a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -59595,12 +59595,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68de6908-b795-4bcb-b168-266a0e1b4f9a", + "id": "5795ba48-6e09-4b63-96ca-029e3f2280af", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -59641,12 +59641,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8dcec15c-362a-4b66-87e8-3e05f832fea9", + "id": "e4749137-5a35-49a7-bf3b-1932cd7b183c", "name": "An error with the item not found", "originalRequest": { "url": { @@ -59687,12 +59687,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa3b6b48-2738-4c31-9dd8-4accabb88d27", + "id": "7d636f3d-059d-414b-b864-bb99a5bc70d4", "name": "Too many requests", "originalRequest": { "url": { @@ -59738,7 +59738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c1e252-312d-4b71-8e9c-f8b1cd0e764f", + "id": "e228021d-9f31-4eb1-8ffc-9bf70084512d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -59779,12 +59779,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5317f0f-7c68-4db1-92b6-ab377d1de4cf", + "id": "28ab744c-30cc-48dd-96aa-f8a2e101a7a2", "name": "An external service is not available", "originalRequest": { "url": { @@ -59825,7 +59825,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -59836,7 +59836,7 @@ } }, { - "id": "7621efca-20b4-410e-ade0-eb9028639c0d", + "id": "4a37ed00-dc9b-47b3-941f-6413d10d7571", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -59865,7 +59865,7 @@ }, "response": [ { - "id": "6cefa658-2eee-45ba-8940-8178b1d0ab2c", + "id": "f9849cc3-3f10-4eab-8c46-9193752ce0bf", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -59903,12 +59903,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ad cillum et ut\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit aliqua eiusmod\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt sed\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"eu\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut cupidatat voluptate\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in nisi elit velit\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n]", + "body": "[\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate an\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in esse\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor incididunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c367b956-69cb-4e06-be14-03f658c5b893", + "id": "884a7e86-2763-4af3-9f4e-886ed8f7e45e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -59946,12 +59946,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "86975e28-6a08-424c-baee-b7f89a273f03", + "id": "49a0007a-1ae9-40d1-b385-5d1a87dd9381", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -59989,12 +59989,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4d57595e-002e-4e64-ab85-4ce9fac78216", + "id": "98e501c2-bc86-4d1f-8e14-d87ed3c9e107", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -60032,12 +60032,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26357021-3654-48ce-b7c1-f9225d091799", + "id": "c080c079-ab3e-448e-8656-af61ed7c1817", "name": "Too many requests", "originalRequest": { "url": { @@ -60080,7 +60080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d6c126c-7abc-4357-ad01-ebcb62086b51", + "id": "4b486b98-74a8-4851-9ccd-b98432eb9935", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -60118,7 +60118,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60129,7 +60129,7 @@ } }, { - "id": "f3d46147-e88f-4bf0-bf6c-dfa1f8ed3480", + "id": "a7a2faf1-17d8-42d8-9e71-56402165fdb0", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -60168,7 +60168,7 @@ }, "response": [ { - "id": "24fa30fb-e52d-4401-b379-91b6d34519c4", + "id": "70709d96-8e69-495f-9fd3-c5de01b6dc9b", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -60219,12 +60219,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui minim adipisicing et Duis\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nulla laboris\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim qui dolore\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor adipisicing dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint deserunt veniam\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in in Duis dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id amet consectetur\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94600c4d-455b-4fe3-90c8-7d24219ecb38", + "id": "0844504d-e063-41fa-9358-6000aa24ded2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -60275,12 +60275,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "97ed9e36-dab8-49dd-a816-9d47358bb819", + "id": "ab7efaac-b48e-4844-aca9-3138878102b3", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -60331,12 +60331,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9305802b-0043-4c5f-b2fc-ad7d208fa4d1", + "id": "53b73de5-8d09-4287-8be4-527c39a577d9", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -60387,12 +60387,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd754cae-ed72-4fce-9815-d9a81d9bf7c9", + "id": "2a62bc2a-bd25-44f7-8389-5e914f4de2f8", "name": "Too many requests", "originalRequest": { "url": { @@ -60448,7 +60448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44101839-d457-4781-9324-b287013ef43f", + "id": "c2c2559e-cc9b-4564-b088-0bb29d6e898b", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -60499,7 +60499,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60510,7 +60510,7 @@ } }, { - "id": "5080eda2-aad5-4ea9-88be-3a5f7ca31bb6", + "id": "460597f9-113e-43d9-81c3-a7f159033e2c", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -60551,7 +60551,7 @@ }, "response": [ { - "id": "3aafcf2b-ff98-4f84-be94-02174ff5a0bb", + "id": "ec55c7b8-2477-42f3-9b2a-56a04abd9241", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -60590,12 +60590,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui minim adipisicing et Duis\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nulla laboris\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim qui dolore\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor adipisicing dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint deserunt veniam\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in in Duis dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id amet consectetur\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f4e2512d-fe10-4370-b6df-aba4c26a0454", + "id": "c993b032-1c6f-44a8-b578-dad6817d41b6", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -60634,12 +60634,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c67f8f45-c65c-42f2-b317-bb7408b39373", + "id": "37e79963-46c6-43c9-b371-a15b55ff1d57", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -60678,12 +60678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "160c9f00-e87d-4458-8bb4-e9f497549e96", + "id": "db5e1156-9d89-4050-854e-f1701d48bb15", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -60722,12 +60722,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "635765eb-46c2-4792-89e7-f2d7510171c4", + "id": "7773ff19-adc8-4872-a057-0132d7302c4d", "name": "An error with the item not found", "originalRequest": { "url": { @@ -60766,12 +60766,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34bd98de-c80e-489b-a97c-bc69b7ff8912", + "id": "ac2026b5-9423-435d-9fb4-4605005f664d", "name": "Too many requests", "originalRequest": { "url": { @@ -60815,7 +60815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d90db1c2-22fd-4575-bfad-fa7eb43c26b8", + "id": "019c68c6-8476-4f2e-9226-6002dc9b26c0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -60854,7 +60854,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -60865,7 +60865,7 @@ } }, { - "id": "1d0c952f-d8d4-4a7e-ad67-c263094e5a50", + "id": "c33a2148-bba9-44f9-82ee-f5f42ff8939a", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -60919,7 +60919,7 @@ }, "response": [ { - "id": "50b5e622-908c-4bfb-967d-3b65d16c50e5", + "id": "e1177eea-96ca-4b6f-89c6-f95067bf180a", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -60971,12 +60971,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"qui minim adipisicing et Duis\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nulla laboris\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim qui dolore\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor adipisicing dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint deserunt veniam\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in in Duis dolore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id amet consectetur\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8799c93e-0a3f-416a-8e0a-35daa64027e7", + "id": "b584dec8-f401-48d8-ac6e-22285732c6fb", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -61028,12 +61028,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c045261b-1c66-4d56-840d-f492b2047e18", + "id": "1fbfea97-c709-44b9-ab0d-1637d53136fd", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -61085,12 +61085,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4ec9489c-5f56-4b70-aa11-bcaeb2b6947d", + "id": "7ed7151b-1266-4167-b71c-bf81891818a7", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -61142,12 +61142,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e316422-7ded-47e1-9eac-ef6278f9666c", + "id": "7f9a5f5a-4a87-4a17-8380-63d4630ac2f4", "name": "An error with the item not found", "originalRequest": { "url": { @@ -61199,12 +61199,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "deba4432-4fb5-40d6-87bd-3ba4e909ba65", + "id": "45298625-d728-42cb-930e-d1f332c90e19", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -61256,12 +61256,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfdc3b9c-6bc4-442d-b214-79763110c6a8", + "id": "fea6ab71-a71a-4f42-81b9-b06fe72a9ec5", "name": "Too many requests", "originalRequest": { "url": { @@ -61318,7 +61318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "663a4385-2c33-4c03-87bf-589d41eb5b21", + "id": "78fd5c49-6cf2-47da-b810-6a3b5fa16e0d", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -61370,7 +61370,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -61381,7 +61381,7 @@ } }, { - "id": "1d719c93-4a0d-425a-9dbc-d408a0a2cf69", + "id": "760ff539-1aa8-45af-9352-85bbf4066238", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -61462,7 +61462,7 @@ }, "response": [ { - "id": "69f2c50b-4afd-4dbe-ac62-c2657dbd3460", + "id": "2fa37a83-f8e5-40d3-973d-2bb72385576a", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -61536,7 +61536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87de66de-c26a-4484-8239-f4719649c8ce", + "id": "146eba7a-be69-4eb0-9ec0-e3f24ede1be6", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -61605,12 +61605,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc0825cc-fe55-4e51-9f7b-09ef76385038", + "id": "d1b493a3-2127-4967-9875-50f90a49c833", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -61679,12 +61679,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cadb6535-a18e-4560-8ec7-4841a98fc038", + "id": "b738ccc1-aaf8-46c5-9107-990e4641f1b9", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -61753,12 +61753,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ffd1732-2bde-4fd7-9854-ef5a7d9ef39d", + "id": "a8796819-caa0-44dc-b6fd-bf7ce57dd8ee", "name": "An error with the item not found", "originalRequest": { "url": { @@ -61827,12 +61827,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87348865-c510-4123-bd26-16a4709d256e", + "id": "535121d4-af43-4755-a73b-ba3eaefb6292", "name": "Too many requests", "originalRequest": { "url": { @@ -61906,7 +61906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67b014ec-fdeb-48db-9062-1ca14dd31dbc", + "id": "6a6e550e-36bc-4aef-b51f-779580c6b9fa", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -61975,7 +61975,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -61986,7 +61986,7 @@ } }, { - "id": "fc76204e-5418-4fc2-a2ec-b4f23bb62bf4", + "id": "b0031031-4f3f-403a-a824-75f8eae4ef4c", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -62036,7 +62036,7 @@ }, "response": [ { - "id": "ad582c8f-d3b6-412d-a3f4-32d0bde540e6", + "id": "32cda746-b533-4f6f-b20e-3eaa1f6f4cb1", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -62077,12 +62077,12 @@ "value": "application/json" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1af20258-a2d1-4c59-a058-9617ba5fa431", + "id": "4acd0053-31e1-4fc8-913e-4d985b957325", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -62123,12 +62123,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a0c4c5a5-f4fb-4491-b539-84106eac1c93", + "id": "2f132f2a-4394-42d6-94f9-6b3a886c5fb8", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -62169,12 +62169,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a817ccd9-75eb-4845-b161-ba8669bb606e", + "id": "7239b0ba-8af1-4020-b506-371820ea9993", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -62215,12 +62215,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9415e71f-fabb-46bc-abd0-a5d05a208c40", + "id": "4a461666-a6ed-4b21-80b1-7d33431e4757", "name": "An error with the item not found", "originalRequest": { "url": { @@ -62261,12 +62261,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d617ff75-2420-4474-ac74-5e03e56136a9", + "id": "cb96a6c7-e38d-47db-a330-b79c1d605b50", "name": "Too many requests", "originalRequest": { "url": { @@ -62312,7 +62312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f2a864-1797-463d-9111-ff6917e72438", + "id": "8a041c7e-c971-47bc-8e97-d9ff128c9045", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -62353,12 +62353,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "483dc2c7-3f08-4fa4-9ac7-f199a27320f9", + "id": "341a8d7c-0f4d-43ec-b9f3-3dbc6ccb043b", "name": "An external service is not available", "originalRequest": { "url": { @@ -62399,7 +62399,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -62410,7 +62410,7 @@ } }, { - "id": "25efe176-ee18-488e-9848-5e7fc5a29c7f", + "id": "a1fe8f80-85ab-4faf-b69a-9b54a70c8e22", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -62440,7 +62440,7 @@ }, "response": [ { - "id": "415cd710-5d93-490e-90cb-eeb31530eb27", + "id": "7cd192da-d22b-4f84-aba3-7f62cfd3b803", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -62484,7 +62484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "342de627-0e9d-4956-b1bc-e81cb78ef952", + "id": "56132d1c-9d65-4089-b1e7-9a855412ba60", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -62523,12 +62523,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7adb55cb-9cd5-45c9-9344-35ffd833e258", + "id": "e0eec698-3ec1-4fc4-8f65-bd43027591d1", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -62567,12 +62567,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8508f7d7-edf8-4430-9a8d-75436e9a9e84", + "id": "b0ecbf5a-547c-4420-9c90-e63098b64f6f", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -62611,12 +62611,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "774c898e-4af9-4cdb-b59c-cc4a29449137", + "id": "d325e465-a7a5-489b-b8c7-a55b58c8a94d", "name": "Too many requests", "originalRequest": { "url": { @@ -62660,7 +62660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fceb7d23-5731-4600-8bab-d316165a90bf", + "id": "ddb35f5a-afb3-4915-9373-d494e42e4ffa", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -62699,7 +62699,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"quis laborum consequat\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 15782942,\n \"trackingId\": \"veniam fugiat\"\n}", + "body": "{\n \"detailCode\": \"dolore quis \",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 49397532,\n \"trackingId\": \"consectetur l\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -62716,7 +62716,7 @@ "description": "Use this API to implement custom password instruction functionality.\nWith this functionality in place, administrators can create custom password instructions to help users reset their passwords, change them, unlock their accounts, or recover their usernames.\nThis allows administrators to emphasize password policies or provide organization-specific instructions.\n\nAdministrators must first use [Update Password Org Config](https://developer.sailpoint.com/docs/api/beta/put-password-org-config/) to set `customInstructionsEnabled` to `true`.\n\nOnce they have enabled custom instructions, they can use [Create Custom Password Instructions](https://developer.sailpoint.com/docs/api/beta/create-custom-password-instructions/) to create custom page content for the specific pageId they select.\n\nFor example, an administrator can use the pageId forget-username:user-email to set the custom text for the case when users forget their usernames and must enter their emails.\n\nRefer to [Creating Custom Instruction Text](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html#creating-custom-instruction-text) for more information about creating custom password instructions.\n", "item": [ { - "id": "b000053f-d362-477f-b11e-c7f74dd2a4ec", + "id": "c54a3f49-777f-429b-853e-73965d82bf8f", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -62758,7 +62758,7 @@ }, "response": [ { - "id": "6d76cbd6-cfae-4a0a-8759-2bd35ffa6b4d", + "id": "dc188e5a-e670-49cc-b2f4-c6dc968cd120", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -62814,7 +62814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e151f633-817e-47d1-a1d8-82b8dce699b6", + "id": "66f10e4b-f1be-4d66-af3b-f06dc51ead15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62870,7 +62870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7c8b49d-f598-45b4-9ee8-8dd7103411a7", + "id": "bbdb9b64-ee36-4438-98aa-4ea352e5cfc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62926,7 +62926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f9d1479-5a2b-4b30-bb39-9c09366c9be7", + "id": "3769652b-15a5-4b60-a619-0fe6efe4e9ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62988,7 +62988,7 @@ } }, { - "id": "8e41ed86-2409-4b5f-95f9-9104c6080f65", + "id": "df0f2ba8-da51-41b8-8186-5bd57513cb60", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -63012,7 +63012,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [ @@ -63039,7 +63039,7 @@ }, "response": [ { - "id": "9ac6bd46-f0a2-429b-b7e7-2e3f451e46b1", + "id": "52bc8b07-6ef6-4251-b422-9000bde6e9c6", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -63058,7 +63058,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63093,7 +63093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2de4783-194a-4af1-887c-de4077cc0bed", + "id": "e1dac8d6-d611-43d0-b53c-16a1e5747117", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63112,7 +63112,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63147,7 +63147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "774e3beb-589b-4e39-a7f4-f75b6d3481b3", + "id": "9dcb0b65-257f-4c1c-ac0a-bae5df6382b8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63166,7 +63166,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63201,7 +63201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "239da468-577d-49f5-8426-ae2fec7a7029", + "id": "eda80b36-52e0-4d10-a005-1935095056f8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63220,7 +63220,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63255,7 +63255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f5d1bd7-0f41-49ae-8301-a4f5e0383a1b", + "id": "6fa546a4-e349-46aa-9ee5-763046f93b44", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63274,7 +63274,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63315,7 +63315,7 @@ } }, { - "id": "8ca0af8e-311a-4f98-8812-380acca4dd13", + "id": "4013b880-95c3-4cba-be01-cb2550cfb9c3", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -63339,7 +63339,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [ @@ -63366,7 +63366,7 @@ }, "response": [ { - "id": "f73f978c-273a-4c02-acac-d1c54170d622", + "id": "e0f877e1-7311-4137-b319-01e02ebcea84", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -63385,7 +63385,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63410,7 +63410,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b50ce73a-b5d2-4c2b-a342-bb1f6589eee6", + "id": "9147cdd5-f7f9-47e8-a33d-7fd2d301799e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63429,7 +63429,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63464,7 +63464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "315f6ad8-e154-4212-bb28-843fc88c6726", + "id": "1870bd5d-4104-4f5f-8867-9953a85fe6fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63483,7 +63483,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63518,7 +63518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ccf77a-95bd-4894-9575-1cf91a3f19e3", + "id": "7dc7d175-f4cc-43a1-9e26-550c121e5628", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63537,7 +63537,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63572,7 +63572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2e1e5a2-806b-4d4b-9eb7-09fbdf555793", + "id": "80cc3430-1b65-493f-9160-dc5d5d1af9b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63591,7 +63591,7 @@ "type": "text/plain" }, "key": "locale", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -63638,7 +63638,7 @@ "description": "Use this API to implement and customize entitlement functionality.\nWith this functionality in place, administrators can view entitlements and configure them for use throughout Identity Security Cloud in certifications, access profiles, and roles.\nAdministrators in Identity Security Cloud can then grant users access to the entitlements or configure them so users themselves can request access to the entitlements whenever they need them.\nWith a good approval process, this entitlement functionality allows users to gain the specific access they need on sources quickly and securely.\n\nEntitlements represent access rights on sources.\nEntitlements are the most granular form of access in Identity Security Cloud.\nEntitlements are often grouped into access profiles, and access profiles themselves are often grouped into roles, the broadest form of access in Identity Security Cloud.\n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nAdministrators often use roles and access profiles within those roles to manage access so that users can gain access more quickly, but the hierarchy of access all starts with entitlements.\n\nAnywhere entitlements appear, you can select them to find more information about the following:\n\n- Cloud Access Details: These provide details about the cloud access entitlements on cloud-enabled sources.\n\n- Permissions: Permissions represent individual units of read/write/admin access to a system.\n\n- Relationships: These list each entitlement's parent and child relationships.\n\n- Type: This is the entitlement's type. Some sources support multiple types, each with a different attribute schema.\n\nIdentity Security Cloud uses entitlements in many features, including the following:\n\n- Certifications: Entitlements can be revoked from an identity that no longer needs them.\n\n- Roles: Roles can group access profiles which themselves group entitlements. You can grant and revoke access on a broad level with roles. Role membership criteria can grant roles to identities based on whether they have certain entitlements or attributes.\n\n- Access Profiles: Access profiles group entitlements.\nThey are the most important units of access in Identity Security Cloud.\nIdentity Security Cloud uses them in provisioning, certifications, and access requests, and administrators can configure them to grant very broad or very granular access.\n\nYou cannot delete entitlements directly from Identity Security Cloud.\nEntitlements are deleted based on their inclusion in aggregations.\n\nRefer to [Deleting Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html#deleting-entitlements) more information about deleting entitlements.\n\nRefer to [Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html) for more information about entitlements.\n", "item": [ { - "id": "1f1647aa-4415-44c2-8815-bd88d7ff8731", + "id": "fb93bd4c-df0e-4be2-8e9e-000c392679e1", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -63749,7 +63749,7 @@ }, "response": [ { - "id": "9bcf2db3-df71-4cd2-90c2-f991176913b8", + "id": "e44de555-2033-43fc-b6b0-465c606a38af", "name": "List of entitlements", "originalRequest": { "url": { @@ -63874,7 +63874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e6173b-fc68-4510-a059-fc6879332e64", + "id": "4aea6165-3d34-4a63-ac45-53ccbe80500e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63999,7 +63999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edda0192-9597-4664-be43-6ef09ca88fa0", + "id": "c6281e12-5961-4940-8146-df43685696c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64124,7 +64124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13a2ac1d-11cc-4308-9ffb-8affed5b739e", + "id": "3e8f44cd-c93d-4fc1-84b8-185529cfcaba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64249,7 +64249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13d27acb-7a1e-4b5c-98bf-ee365bc42ea6", + "id": "3601820f-12fc-4259-94fc-a1dc11c2b382", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64374,7 +64374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785af5f8-5b18-4f76-914c-da7f05165385", + "id": "6afc77b8-d841-41cb-b3c1-b313f3a69bbe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64505,7 +64505,7 @@ } }, { - "id": "9ddbd35b-1221-40f2-84dc-4e6bba83eb90", + "id": "48e1d602-d3b3-4ba6-a69f-4149ff0cddcf", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -64546,7 +64546,7 @@ }, "response": [ { - "id": "3a44b0bf-0900-4eee-8a62-f50280a7b404", + "id": "d38216a1-6647-4ed7-8f38-50a90ab77d58", "name": "An entitlement", "originalRequest": { "url": { @@ -64590,7 +64590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7241bb96-7e84-4780-bc5d-186f24d88374", + "id": "d451d9de-e1ec-4335-ace7-5345d047f80d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64634,7 +64634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b51283-a364-49d1-b0d9-9236a30cbbfe", + "id": "06192595-b054-4d5e-937a-028f621dd71f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64678,7 +64678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0706b153-3b91-48e6-b753-2cc609b2253d", + "id": "688d9355-2385-46b5-9604-5af1f5d92a89", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64722,7 +64722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9a7cd7-6a9b-4767-a6a9-6b9304de98d3", + "id": "a6003f41-25aa-4205-9006-baa9d5f2d44c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64766,7 +64766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69403110-9b7b-40ea-8c38-84370336b135", + "id": "2e485800-f398-400c-ae4b-67499948f858", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64810,7 +64810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29198466-a891-44af-b8db-0846b267136d", + "id": "920af857-aeca-4d8f-9e77-431fcc25120e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64860,7 +64860,7 @@ } }, { - "id": "1d7181bb-1931-45b5-b82f-88ce51bd03dd", + "id": "20428481-10bd-4fe5-9342-dc1d3aba133b", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -64914,7 +64914,7 @@ }, "response": [ { - "id": "c8542ad9-b62c-43df-9a65-dbdb6262d497", + "id": "e6211f58-bfaa-4563-811a-e9ee5fdca937", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -64971,7 +64971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a168e24-fa13-4cad-9818-367eb2b4d323", + "id": "95318f78-987e-4564-9c47-82cf1e7a7f00", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -65028,7 +65028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0a02ae9-1a88-48eb-8e4f-9c51bd266cec", + "id": "5c2a97d7-6ac3-45e4-bd08-212660d1c029", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -65085,7 +65085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f239d5e4-54fe-4fbb-9c3f-0ac3ab5f39bf", + "id": "2a411d94-f0e9-4914-a3ba-c82d287352ed", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -65142,7 +65142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b3a6259-02b3-47b0-87b9-b2484193e9c6", + "id": "c5d96ec4-02ed-4ccb-9e0a-780fa5de078d", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -65199,7 +65199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aed1924-946b-44b4-8a59-ad106eaa48cc", + "id": "202ec210-9b6e-48e0-962c-2d7a94a962fd", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -65256,7 +65256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "062f24ee-9ee1-4879-9fdc-bd141303aa09", + "id": "23f99808-3bcd-48f0-a658-00f494e93cab", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -65313,7 +65313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f318aea-d9e2-48de-b171-c124c4affa09", + "id": "debeaca6-0639-45b9-a83f-c593c814402c", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -65370,7 +65370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51061474-b0e7-412b-9579-fc0e700064df", + "id": "855bc274-47a9-4ef9-bb79-3371c315ae13", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -65427,7 +65427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29d0c95b-26c8-4360-8823-a40bdb8ef524", + "id": "467da095-52b0-4891-b98c-efc74f453a6a", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -65484,7 +65484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83a4a1c1-0f73-4b84-aa64-942a4802e4ba", + "id": "81dbcc36-c007-4802-b6a6-8f5dd0af46f1", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -65541,7 +65541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5777f8dc-19c1-4627-808d-61526f7d904d", + "id": "32dffd42-34eb-4752-98cf-492ac3397a4b", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -65598,7 +65598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5301e42b-55b5-4f3f-9dfc-93412ca66edc", + "id": "aa3f5c29-ecd4-4726-b365-5022142e1405", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -65655,7 +65655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f25ce6a9-942d-4dbc-b8a0-432cce943a16", + "id": "26518c2c-a63f-41dc-80ac-42b156f86718", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -65712,7 +65712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "174e7100-761e-4268-87b4-ecdd6c2f765b", + "id": "9ce8d6b3-3713-416f-8f72-b1bb8797ee1e", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -65769,7 +65769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d921eb87-acb9-4f4e-b720-a2352e20f727", + "id": "fb34078d-7601-4d10-8921-913660333d8b", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -65826,7 +65826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4af5e77-b141-442a-84db-ccfbd66aff97", + "id": "ed96cef6-8e1f-4095-89a3-ee8a173b4e12", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -65883,7 +65883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20628711-d6cb-4a91-b3b0-a8f949be57a7", + "id": "ab2ae979-4893-4f1d-9628-f45057fe19ff", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -65940,7 +65940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66cb0f86-0543-4ed2-8a8a-6292d3abf843", + "id": "c6825508-5392-4598-a2ec-2b70df7c4379", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -65997,7 +65997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00b57bc1-cf0a-49cb-a072-ed8c6c8061a1", + "id": "ac969d64-ac6a-4469-b2f7-f0fc4600ac4f", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -66054,7 +66054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b0f8453-5716-49ac-8594-021abf1e3653", + "id": "746a0131-6e4d-4d35-bd3f-db26e110a30e", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -66111,7 +66111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80cfcf23-a19f-40dd-b414-03f4057b6aaf", + "id": "11646483-5010-47b5-a417-04831314617e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -66168,7 +66168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e216b418-8eb4-450a-a470-715af29911e6", + "id": "3944fbeb-4ed0-491c-946c-cde279d72d07", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -66225,7 +66225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a0ff391-1412-4738-91d5-b06ca7dc95a9", + "id": "e474e58d-6d63-49ea-ac10-e074f196ddd9", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -66282,7 +66282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b33eeec7-d625-458d-91da-27353d9637ba", + "id": "62cc5566-c6b7-4537-89b6-45af1d4638c6", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -66339,7 +66339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5559bf6-0613-448c-b250-f37f9b5c344a", + "id": "b48c465e-70cd-46ba-80f8-d42cc58c64fe", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -66396,7 +66396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6235f597-84f0-4232-bac9-106b66d83c4d", + "id": "a2e9d639-0045-4256-8003-0bfdf30b5d0f", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -66453,7 +66453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a25a2604-1dc5-46d9-b7be-fec8c3737359", + "id": "27b80716-6d6f-47f5-9c11-6a6ce90ba9f5", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -66510,7 +66510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10592d66-551e-4898-8d3c-6b5a06b05a94", + "id": "b4bdf321-b1a0-48a9-b93d-99d155678c83", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -66567,7 +66567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ec4cac9-7a66-4f35-b19d-01e930e86a0d", + "id": "9613b428-1ba1-410e-8c47-7b5c0e95c9d0", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -66624,7 +66624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e455d3d7-b0fa-4ff9-9e84-4780617efcfb", + "id": "79a9c888-1a7e-4cbe-b4ea-ce000ef716f7", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -66681,7 +66681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d299d5fd-d6e7-46f4-be00-70571e64c451", + "id": "ca49d125-7e37-4393-b6cf-6784b218d45e", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -66738,7 +66738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2228c960-195b-4441-97f4-b02a5dfd3341", + "id": "0815e9fc-644b-43d4-a1cc-675c02454849", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -66795,7 +66795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64549edb-e1dc-4cd1-a512-66cdc1a27b4e", + "id": "ebb73e2c-f01a-48d4-9327-eaec701cb3af", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -66852,7 +66852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2e5b9c-8653-4123-9aac-0a480c36aa6c", + "id": "a8dcbf9c-1faf-483e-a70c-3cb38f8c51f8", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -66909,7 +66909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3385dcc-d6d1-4a96-8285-c0b225a42816", + "id": "7aeb6021-2a5c-4eee-9367-b3127523e2ba", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -66966,7 +66966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cb41a4f-14f8-409c-b232-02140c9b1a44", + "id": "6bd950c5-2d28-4e4c-8a65-21bd736511e4", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -67023,7 +67023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "185f9e88-0eae-40a2-8e79-b67de80cad30", + "id": "99f3e144-bd9c-437d-b2b0-ebf0898fd46d", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -67080,7 +67080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0215e87a-8222-4ace-ac21-70c848740d8e", + "id": "665ecf06-9a01-4e4c-9482-61219ce6ca45", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -67137,7 +67137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82782680-e5fb-4b45-aaae-3ef21aec5a80", + "id": "3818e03f-76f3-486d-9360-fbead3865cd6", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -67194,7 +67194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7c905a1-8453-4017-8e36-b6d92d59a3f0", + "id": "05f4a0c7-1356-4b8c-8e93-352b4a7f3bab", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -67251,7 +67251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f63b72cf-4886-43a6-b09f-b7fec644bd12", + "id": "62127338-34f2-4c71-acd6-7948c2ab7c6a", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -67308,7 +67308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4ef7187-e389-400a-bd38-beded50daabf", + "id": "251fc08d-d966-474d-a3e6-03d55206ff49", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -67365,7 +67365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3301ccbb-8ff6-4be1-b2f8-4087dd3f4bda", + "id": "d74feebe-8412-4248-8c85-3a86e07932d6", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -67422,7 +67422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63465c96-1780-4fb1-b5ac-06b629a21816", + "id": "b1cb089d-0992-4f1d-8d2b-1b8457f777b4", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -67479,7 +67479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2dfd552-d2ce-4796-8ba6-c62e1fc65734", + "id": "f72368f7-b4df-4829-b4fb-6cc29f3fc7dd", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -67536,7 +67536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "388fee07-e423-45c1-9536-f3fc92f1963b", + "id": "c0b62217-3539-4629-ba7a-c9215e8846bc", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -67593,7 +67593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31632e3e-6a1b-494e-bf80-1bd2caa3616b", + "id": "267aa5f5-467b-4d77-8759-df9ac08fbf55", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -67650,7 +67650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa441afc-4b42-4199-aea3-d104475fdbbd", + "id": "63daf74d-f7d4-436e-bc48-a5ca714a659d", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -67713,7 +67713,7 @@ } }, { - "id": "9c19d539-42bc-4427-9b4d-16220d30db43", + "id": "15a54c67-b4e8-4883-b1ab-2f85f0e95ee3", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -67801,7 +67801,7 @@ }, "response": [ { - "id": "51e65886-ed50-4fdf-986f-044a6e604a02", + "id": "6ff79ce3-3787-45bc-a848-0fb5e4147b81", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -67892,7 +67892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4acfb86e-7975-4916-a518-a3ff041ad8c0", + "id": "8bd41459-a1e0-483f-810d-035de5c00434", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67983,7 +67983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdae73b0-f818-4717-b77e-fe3887a237bc", + "id": "150e39f1-4c6b-4aa0-864c-7615aab8e144", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68074,7 +68074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c69e1ea-3e8c-48b0-af2a-1bc53243061e", + "id": "22af07fb-ecf2-4ca6-8250-f8df05d59a47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68165,7 +68165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d777e7f-252d-46b8-bd92-8d9ad331e581", + "id": "cd782120-f8fc-4489-81c6-39f6d46c0a5c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68256,7 +68256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dff0bf5f-f243-419f-baba-91565d3eeb39", + "id": "5e01669d-122c-485c-aa2d-40ad237e0c31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68347,7 +68347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71b293cc-71aa-458a-b9f1-e4feb4704d5f", + "id": "ecff9705-e8d1-4202-915a-1a7cd15c7e04", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68444,7 +68444,7 @@ } }, { - "id": "40fa5e84-6286-433a-9bb9-c4769601c10b", + "id": "bd653fea-4b19-4036-ba14-6fc8607925a7", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -68532,7 +68532,7 @@ }, "response": [ { - "id": "4c1f6b31-acd7-45d5-a67f-e89cc462d631", + "id": "354b526b-548c-4ea2-8ec7-6c8a4321acc3", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -68623,7 +68623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc320835-30f7-4292-8d1f-e420c705d582", + "id": "9b87aa35-1be6-4f9d-8006-dfad3f753503", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68714,7 +68714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a50b9b8-c00b-4df6-b197-462591306f82", + "id": "c282f0b9-7c16-4c70-b63e-375d4b8d9a66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68805,7 +68805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8748a5b-62ea-4f4d-9617-99545b177d2b", + "id": "22991d20-f03e-44d3-9c6d-02170ea2b379", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68896,7 +68896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26591734-7667-4c94-8bb6-3e66f28adcfb", + "id": "3831072c-d578-42ad-9ad2-a2e922615692", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68987,7 +68987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d0e4a92-f536-44d2-9c55-0cbba6e77f58", + "id": "9d9439de-2354-4a66-9ea1-7c6536e95305", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69078,7 +69078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b5f5f70-d6d6-4385-a872-1d2726d8235e", + "id": "2b473f53-e3ce-4c58-9ebc-4539a9f9e7a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69175,7 +69175,7 @@ } }, { - "id": "47c9afda-7bc5-42e0-aba7-9fa845d532af", + "id": "41371e6e-7a3e-4018-84ab-26cfc5a045d6", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -69218,7 +69218,7 @@ }, "response": [ { - "id": "5fd0b428-8f8c-4491-ae97-ec3b20bf2bdc", + "id": "9471f06d-2dcc-4971-b7fe-52f652ceb1f9", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -69265,7 +69265,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ebf58e3a-bdcf-4244-ac9a-5b0a89777ee4", + "id": "c77e9ad4-5047-4029-bb86-9acf5259c7b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69322,7 +69322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06b924e2-c6a2-44e5-a596-60a1c1957b2e", + "id": "1b67d338-7a69-401f-b53c-06d5bb1819e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69379,7 +69379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2cfad90-3354-47be-8c35-45b648a6dbb8", + "id": "5498f18a-4de5-4ce8-b21c-7651f396597e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69436,7 +69436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "157fa7a9-9fe4-4fcc-a72a-11a0f8d8a4dd", + "id": "72fcd39d-abf5-45d0-a56d-5a9dcd249eda", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69493,7 +69493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77f40db9-12a4-4618-a096-6c1810ce05a0", + "id": "c673e02b-efda-4211-ad16-5af36acf9916", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69556,7 +69556,7 @@ } }, { - "id": "e41862c4-8980-4f62-b709-c0564cdfcb3b", + "id": "0e55b709-5e8e-4f4c-9782-b442e55d5646", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -69598,7 +69598,7 @@ }, "response": [ { - "id": "6e770690-537d-4350-a7ce-ffded81b56bd", + "id": "b388fae6-d4e4-49ae-b077-f0535fa58ebb", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -69643,7 +69643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3220922-29aa-4bb6-a93d-6f62b36f7f1b", + "id": "a836d3bd-6cfb-4e4b-934d-67791a47a5c0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69688,7 +69688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ef97f93-7a98-4396-9967-3d640b0ab2a4", + "id": "8ccedf07-00c3-43c7-98fe-98636ff5600c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69733,7 +69733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f73f32-6137-4b28-9c7b-b2722e8de18e", + "id": "f192c79b-6d8f-4be3-8b2f-e1efb5b61395", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69778,7 +69778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e5a3085-b810-4792-b9a2-a4d0215a2a23", + "id": "f68b879b-93ea-4b18-ac55-2680171f6656", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69823,7 +69823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3fa92cb-d2ef-4730-9106-1bef385ffe69", + "id": "a01e5670-0d2a-4ce3-b8ea-eea1395e9351", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69868,7 +69868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "711f1c03-43c1-48f3-a04d-d154776cbbec", + "id": "d51177b0-0512-4961-a672-9e5b6c2d640d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69919,7 +69919,7 @@ } }, { - "id": "7dfdc5c2-1331-45f9-a827-2ab8acc7a533", + "id": "67fc7726-20e9-4fee-b13a-43ff715fa4af", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -69974,7 +69974,7 @@ }, "response": [ { - "id": "fa71b5c2-d3ff-4130-b786-bfb5568b0dd1", + "id": "e49be791-e989-426e-85e8-1a356f0550f7", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -70032,7 +70032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e59b1a-8b99-4e95-8af0-68b4f4be7962", + "id": "c1ba9374-9295-4c94-8142-9a07f73d8f04", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70090,7 +70090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ea94cd3-b570-4492-8224-d4dc59e67afa", + "id": "349e232a-d46e-45c7-a27f-2ae56de80ce1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70148,7 +70148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c67f1e9-6ebd-4409-a2b9-9b9547b0cbd1", + "id": "6d810156-733e-4025-91a4-fe3690098569", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70206,7 +70206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18089871-54b4-43fc-b015-f3b4bbccc045", + "id": "51b54490-4ffc-4ae3-b215-d083e6979076", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70264,7 +70264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b46d997-8c29-407c-9dfa-25de967000fb", + "id": "fc5b3e9e-83f5-4a36-ba74-4608c44ca823", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70322,7 +70322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ae6cf6-2391-4f16-8613-1244a516bee2", + "id": "a110c29a-33da-465a-aa6c-ce599fc84c52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70386,7 +70386,7 @@ } }, { - "id": "901a4c2b-0065-47eb-b0e1-2ab75653e886", + "id": "ab0fd234-f81e-4d7c-b97a-7e966b898b24", "name": "Reset Source Entitlements", "request": { "name": "Reset Source Entitlements", @@ -70429,7 +70429,7 @@ }, "response": [ { - "id": "ae49e050-fb40-4f5b-ad3b-48f16ff88ed6", + "id": "cd3539d5-a1c6-4127-814a-ac77b2d78d7b", "name": "Entitlement source reset task result", "originalRequest": { "url": { @@ -70475,7 +70475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54a8e493-7cfc-4ca1-aea6-56f4cbc27ddd", + "id": "ae8dbed1-c5ad-4044-bc8b-aa4fa314ad8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70521,7 +70521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4000441-9398-455b-9d0a-cce4b78fa1ff", + "id": "21b8fc54-a6ba-491f-bdb5-f5e665120704", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70567,7 +70567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad8c97a2-753a-4b01-a758-1af46a5623bc", + "id": "1d1cf308-a4a1-41b9-86db-f41d79b43416", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70613,7 +70613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "665f7ccc-81b0-46fe-8d12-a34eb37f409d", + "id": "0c6aa99c-3480-4236-9ef0-d335d9dc65ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70659,7 +70659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36759b0e-984b-4b17-976a-2bb234c229c3", + "id": "ac411d06-6ca6-4ac0-92a4-237f15b50383", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70711,7 +70711,7 @@ } }, { - "id": "7aedf2b5-b049-4166-9175-bcd1f9782228", + "id": "36865b32-f36b-4020-96ca-5805e85f7525", "name": "Add metadata to an entitlement.", "request": { "name": "Add metadata to an entitlement.", @@ -70776,7 +70776,7 @@ }, "response": [ { - "id": "8955ca8c-f9bb-46b2-abab-c1805a51b9a5", + "id": "db9c8187-fa5f-4d9f-bf49-ebc889634da5", "name": "OK", "originalRequest": { "url": { @@ -70824,7 +70824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02528c25-791f-45ba-ad1c-a26c6a19f522", + "id": "bf7dd631-d2f1-4a93-866e-cb22c7212227", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70872,7 +70872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4533019a-f245-4986-8be0-d39931875079", + "id": "914f9800-e6f1-4df0-99c4-2d3c35cd876e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70920,7 +70920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52ed0a5b-0c65-425d-87fb-0fc45741051a", + "id": "99690b56-06f8-4eb9-a0e0-94f14b68147a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70968,7 +70968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "747533e7-5e4e-471f-8726-78de3d3b522b", + "id": "2b6d3abf-3167-49b5-b48e-b14b3a736dd8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71016,7 +71016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "494ddbcc-43f3-490b-8960-adeebadea57a", + "id": "f70a2a78-c940-4cfe-8e2d-7fd1355a93a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71070,7 +71070,7 @@ } }, { - "id": "9b6d2ee0-8943-4c75-875c-00354ca0811f", + "id": "4d732e62-af54-4096-94f4-8cf0e132a1ae", "name": "Remove metadata from an entitlement.", "request": { "name": "Remove metadata from an entitlement.", @@ -71135,7 +71135,7 @@ }, "response": [ { - "id": "af790129-f04d-4702-b7f0-733c16b3ab67", + "id": "510c9ccb-060e-4d70-bdb6-eb1d2f367728", "name": "OK", "originalRequest": { "url": { @@ -71173,7 +71173,7 @@ "_postman_previewlanguage": "text" }, { - "id": "19876da3-effb-49e4-8d8b-0d30747d3c82", + "id": "2feb32b4-9370-45ad-95d2-3073112792be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71221,7 +71221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f8d634c-a3a3-4ec8-bf1c-2e2afffaa848", + "id": "5adec0f4-4e3d-40c0-8ef8-93e5766a443f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71269,7 +71269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d88f21b1-d50a-4934-a6bd-83c88ac60f91", + "id": "ba43d5a1-1098-48cb-9b7f-dc70d82b93e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71317,7 +71317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce075877-5788-46d4-b297-11d12c2c0624", + "id": "38833c25-93c6-4270-8b75-3cbc5e2b637a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71365,7 +71365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea859552-d079-4c30-bb4d-cc80ad8b0f20", + "id": "23b36d8b-f878-4256-9d9e-783430ddf723", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71419,7 +71419,7 @@ } }, { - "id": "7f3c3630-5b92-4578-bc18-b8647b77104b", + "id": "50cc21fb-8fbb-4c21-9a7c-463246cf32f3", "name": "Aggregate Entitlements", "request": { "name": "Aggregate Entitlements", @@ -71478,7 +71478,7 @@ }, "response": [ { - "id": "71e188b1-683b-43ae-be88-06b6779e497e", + "id": "4344c2b6-ef85-4756-aa35-2b8051f0d7f8", "name": "Aggregate Entitlements Task", "originalRequest": { "url": { @@ -71540,7 +71540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bb69186-724f-47ca-9866-e96b5d9490a8", + "id": "9fe501bd-eee0-4b07-a872-7f24b433bacc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71602,7 +71602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "308e3291-e1a8-4073-b3f0-97b4be10e280", + "id": "71922f72-b208-426e-8824-bdd084c1f764", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71664,7 +71664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e56a98db-0130-45cd-8e5f-157db0fecbe5", + "id": "a10ee99d-4d3a-470d-ad3e-6b62889e7688", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71726,7 +71726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2cc9c1-2f96-4fe8-b176-6aa7fcf8b499", + "id": "6436e78a-d275-4972-8c71-d659cf55a4b9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71788,7 +71788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8abcb64e-d5e9-4481-ab1b-8d043893e949", + "id": "b3c1ba01-f627-416d-909a-470116f51b37", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71862,7 +71862,7 @@ "description": "Use this API to implement and customize Governance Group functionality. With this functionality in place, administrators can create Governance Groups and configure them for use throughout Identity Security Cloud.\n\nA governance group is a group of users that can make governance decisions about access. If your organization has the Access Request or Certifications service, you can configure governance groups to review access requests or certifications. A governance group can determine whether specific access is appropriate for a user.\n\nRefer to [Creating and Managing Governance Groups](https://documentation.sailpoint.com/saas/help/common/users/governance_groups.html) for more information about how to build Governance Groups in the visual builder in the Identity Security Cloud UI.\n", "item": [ { - "id": "50720706-fa6b-4903-b666-dcf832e0744b", + "id": "6422a4a5-85f2-473e-beeb-15a171ccee9a", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -71937,7 +71937,7 @@ }, "response": [ { - "id": "bd709c0f-fd69-45b3-b92a-0b16f576ccc4", + "id": "08c782dd-6eba-4d99-b1fc-b22cfba5f6d4", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -72026,7 +72026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42971ee6-d57c-4008-b9c0-3b19a0da2ba7", + "id": "e4c48161-125b-4afe-bf61-9e1c63f9212c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72115,7 +72115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c0af4c7-e87d-4462-9931-b7ddcaf2ad60", + "id": "4fbf19ec-19f9-4aa5-b563-be8f0b73a183", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72204,7 +72204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abb8692c-e616-4e81-95d2-b6ccee055179", + "id": "2638861d-c96c-4d50-8a59-dc1afff76050", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72293,7 +72293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10e29bef-5ee5-4ed7-9604-4e24f4529576", + "id": "158e4ebf-fe43-4270-a1fd-8c1acd1d8ae1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72382,7 +72382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0e6bb85-d49e-4005-bbfc-a55c8abf5d8b", + "id": "4d26e9f1-7248-4204-8cf4-da09a4cab24b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72477,7 +72477,7 @@ } }, { - "id": "6c3651d6-0b3c-418f-b816-8e870ef1d8fc", + "id": "682e44b2-5cc9-4a84-9dda-6c7ad6d6e021", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -72519,7 +72519,7 @@ }, "response": [ { - "id": "c99a9d14-a594-4437-b47c-dd5b0dee8abc", + "id": "643e88ad-44a5-436a-8e75-701d49d7896c", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -72575,7 +72575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ef53b8d-c3ea-44d8-8787-9ec0fcd77f32", + "id": "a685ea93-a54f-4dd8-ae49-6e46decf44f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72631,7 +72631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8f0410f-3ef1-4822-aa00-021abe01f682", + "id": "ed14c348-644f-4a48-841f-f7d3885213a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72687,7 +72687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc216b91-daab-42fe-a97d-c7a559c9a036", + "id": "83424b86-bdb2-4122-a54f-d4fb639be3c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72743,7 +72743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0bdf0ae-e744-4848-a5f0-c6f265acba03", + "id": "50ec24e9-b441-47c1-8748-d79dd9951517", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72799,7 +72799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78299d38-f470-45d8-81b8-5bc4b22d28c9", + "id": "050829d4-44ea-4d7b-9cae-77b898fb8cbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72861,7 +72861,7 @@ } }, { - "id": "59441792-5d24-47b1-8b1b-7e5b6eadb9ae", + "id": "4fb64b4b-dbcd-458b-88ac-414cd13562dc", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -72902,7 +72902,7 @@ }, "response": [ { - "id": "702ed632-fe6d-4f67-ac4f-9bcb914df277", + "id": "5043e69c-1db4-424f-a00e-6f31b7e60611", "name": "A Governance Group", "originalRequest": { "url": { @@ -72946,7 +72946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a1687e-beb4-4d6a-928c-06d096a491e0", + "id": "cc060934-8428-4fb3-aaf8-96011ad1feaf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72990,7 +72990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50d5e6d8-b6a5-4acb-b9f8-cde3e92e617f", + "id": "1443a36a-12c6-46b6-a673-284f77961b5e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73034,7 +73034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa8d3eb-db62-4c57-8a4c-de75c79ff537", + "id": "e025589f-549f-46aa-b5a6-e01d7d306b80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73078,7 +73078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b124ef5-424e-428a-821e-1541b528cb52", + "id": "cacf8b82-7025-4bc8-bf5e-2927f2c92c81", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73122,7 +73122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b76486f5-3d23-4433-b573-609961c273a8", + "id": "fd12f374-e7f2-44a1-ac59-095a3ce37c75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73172,7 +73172,7 @@ } }, { - "id": "f92c6593-68e6-4b7b-a509-b79d1d270c1d", + "id": "091f8cdf-9af5-400b-a43a-04ed56805438", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -73213,7 +73213,7 @@ }, "response": [ { - "id": "7df1097c-d2af-4ac8-bd0d-cf3dd5a1b40f", + "id": "4ae333cf-bc85-4f88-9764-2a67f1664ab2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -73247,7 +73247,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f67b1b72-d8e7-4547-9753-582c95fa8d44", + "id": "5a8b9e6c-d263-46e6-856e-15954dfdf0ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73291,7 +73291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "177f8e79-1386-4a65-b3ec-e121927b0b92", + "id": "5255bec7-ce97-412d-b198-ba6c084aff5f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73335,7 +73335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e70a99-7328-4756-b142-6c8995203cf8", + "id": "cee3a181-5295-4b79-bb7d-c362d0ad2e2a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73379,7 +73379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f43d22a-e177-4f0a-907a-de433f182ee8", + "id": "3d239bd8-403d-45bd-96e8-a873ce18288d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73423,7 +73423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0621cfc2-d045-4a37-b046-0beb0bced13c", + "id": "b1173f1a-2b1b-41ff-bbd1-76a700a3ef68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73473,7 +73473,7 @@ } }, { - "id": "f0f077ef-9dd9-4321-8cb3-51349445b395", + "id": "40862490-2643-49a2-bfc4-ba6ccc75da7d", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -73527,7 +73527,7 @@ }, "response": [ { - "id": "a40c15fa-e38b-48c9-ad74-09850c7fa0b8", + "id": "9804bcc2-42dc-4579-9180-ac6b4dbd1e97", "name": "A Governance Group.", "originalRequest": { "url": { @@ -73584,7 +73584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ee0ba94-d631-4004-86ee-651ff3552d87", + "id": "9647ceef-e633-4d7a-9130-30a19f70f4f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73641,7 +73641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "712fb72e-29d6-44d6-8944-13acd0388ef3", + "id": "5d6570df-f3d5-4756-ad84-d734da9b25af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73698,7 +73698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a39c664-3ab0-4c84-a948-9802563dde2b", + "id": "663f1b1d-96c9-495f-a782-c775af9d9d11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73755,7 +73755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3200beeb-c45d-464f-9a7e-721cd43d1023", + "id": "1a21b199-4c8f-4cef-9a8c-f991eb003073", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73812,7 +73812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75edf56f-4c32-405f-afa6-3c99d41c24f1", + "id": "8f0fabe7-fb4f-43ee-997b-0c203feb653c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73875,7 +73875,7 @@ } }, { - "id": "21b10f35-9986-4d78-9145-c15ced64f571", + "id": "16b45499-312d-4e25-af79-00a2dbda45db", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -73918,7 +73918,7 @@ }, "response": [ { - "id": "ac50ff3b-e61c-4385-a60d-7bc0c6e7f235", + "id": "6d15bbdb-16f6-4fcc-96f1-d23438484d59", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -73975,7 +73975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e73732-b42e-4c08-abd2-8da6049aced2", + "id": "5e94de96-a196-499c-9ef5-9f0e497687f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74032,7 +74032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69534ada-76c9-4aee-8ecc-b70c4bd387e5", + "id": "0baed094-bc15-4a7f-988e-37a111592f1d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74089,7 +74089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3670648-abcc-42d7-b3bf-4c466db1709b", + "id": "ee3ce24b-1ba3-4882-9d3a-fc4ac506fab9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74146,7 +74146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e4cb1f-9582-4646-8d5b-3f90b3751e23", + "id": "cfdcb423-7d2c-482e-ae7c-c485e8b1f969", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74203,7 +74203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6045d05-e0dc-4c46-9b6c-ec9e7d5fda08", + "id": "08c94c8f-3a14-415f-a72a-d76c31747088", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74266,7 +74266,7 @@ } }, { - "id": "77ab011a-fdaf-45a6-80ef-58b346e94451", + "id": "1ee37ad6-095a-442f-8c62-4cb0b04ae637", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -74345,7 +74345,7 @@ }, "response": [ { - "id": "9855d6ff-59c5-4b74-a783-e1576e429d94", + "id": "354a73a9-f787-446c-a206-204a417488ec", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -74427,7 +74427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ace635c-e156-4c94-b900-b509ecf81067", + "id": "fe86f81f-83ff-4f3c-bbbf-e39b616eb7bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74509,7 +74509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "926075ec-e487-4946-b789-b1f4a2fd7f66", + "id": "6a71ed80-a2f9-45dd-a0bb-ad82f455499a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74591,7 +74591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "397773e4-23ae-4080-8295-bbaa6a77a20a", + "id": "33fd2ae8-3304-49be-b138-a707220c1542", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74673,7 +74673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9b79590-0ea2-428e-949b-6efa21d4baaa", + "id": "2f200cf4-6c2e-4cd8-b9df-56fa03ec1292", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74755,7 +74755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeb5df01-190d-4737-8860-fe6c3ee10b9c", + "id": "5080fa82-427a-481b-bd29-02ff215e4f3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74843,7 +74843,7 @@ } }, { - "id": "de47b2e3-fc09-4768-9b56-5048e46150b7", + "id": "093a05a1-5207-4182-b69e-d3f8b6c5ef96", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -74922,7 +74922,7 @@ }, "response": [ { - "id": "ddd0070b-2849-429a-9f50-6412fb4325d4", + "id": "719d7cc9-8180-46bd-9ee9-5199b2190295", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -75004,7 +75004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2de8e763-2e98-4bf0-8144-ca83a6487b20", + "id": "ef5683a0-8430-4589-879e-e761fd793cea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75086,7 +75086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb6685f-3194-4438-8f7e-7690741a395d", + "id": "278c41dc-78e8-4977-9404-42ac30d11fd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75168,7 +75168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88a6a4d5-f96c-4f91-8904-6e954021965c", + "id": "d847ea96-d681-4675-b7c0-5abe401c51a0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75250,7 +75250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a4c5715-4566-4619-8af9-3b08d81b93cf", + "id": "a9205553-2e33-4dbf-a48d-2d1e5f107333", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75332,7 +75332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18836366-51e7-43a2-a273-088516246b68", + "id": "a70e2e4b-3d69-4041-b824-b3ca85b22638", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75420,7 +75420,7 @@ } }, { - "id": "595a1266-8a21-43b6-9ddb-c9a271655768", + "id": "8cceab5d-9362-45b6-84f8-432a1c891afb", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -75476,7 +75476,7 @@ }, "response": [ { - "id": "51d51840-7052-4dd6-be35-6278a008f10b", + "id": "9b03e123-6980-48ac-88d9-0f163e7870f3", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -75535,7 +75535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d62c0eb9-0cec-47da-8b57-6f7aec65814d", + "id": "2041b948-a158-4bc8-ad13-dff03d5609e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75594,7 +75594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36ac2c44-14a3-4609-b18e-86de6407cb8f", + "id": "34cdac50-46db-40f9-9005-502feb2ebb81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75653,7 +75653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "923dea43-e457-4806-b31d-1701542f4048", + "id": "0f0d8a82-889b-42f3-9ac8-244605bd018f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75712,7 +75712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "badedbc0-98d3-4352-bac1-0ce84e1518aa", + "id": "f8683ced-094c-41dd-b0c2-a43adc5beaea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75771,7 +75771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f481d1d-a2f8-4a5d-a45b-a88f9359949c", + "id": "11bb6c52-69f6-4db5-933e-d4cf82746a60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75836,7 +75836,7 @@ } }, { - "id": "08f7a23b-a52e-45a7-9168-e4bb00af7351", + "id": "96e60114-8eee-43df-ae53-4ce05cd078ec", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -75892,7 +75892,7 @@ }, "response": [ { - "id": "e500875d-2065-4350-b820-abb6932e2a01", + "id": "04397e27-c237-4eef-bf3c-8be63db83a4e", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -75951,7 +75951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf7584a0-3ecb-49e0-8411-a660e4253348", + "id": "11150119-c947-4165-887c-0616c4c09f54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76010,7 +76010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d79a409b-dc45-4feb-9a18-f2cf0e9e1c53", + "id": "a227177c-95b8-44de-bae8-147cbcc595a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76069,7 +76069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1e1a862-0d21-4f4b-9e29-ed15ab13bc4e", + "id": "1adefad6-5896-4d4a-9fbb-e2942c2b7818", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76128,7 +76128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fa557fe-7327-4e66-adcf-c0585c1311a6", + "id": "5f920556-1f62-4ee1-ac6c-6b2e568e8760", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76187,7 +76187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb486f59-1efb-4c0d-b4d9-071bb362b938", + "id": "050c0074-d138-4f9b-b803-75e477ebd273", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76258,7 +76258,7 @@ "description": "", "item": [ { - "id": "336f3c39-d935-47c1-b1c4-8c120e850da9", + "id": "efd68b59-8c44-4b8f-948d-7d03890dba9e", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -76335,7 +76335,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76351,7 +76351,7 @@ }, "response": [ { - "id": "929145f7-5436-4398-8f60-eb78d180a270", + "id": "997a3de5-f6ba-48e6-aba1-cd1d5a06b785", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -76423,7 +76423,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76458,7 +76458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a40f1d6b-4314-414f-8825-d6179fcae890", + "id": "be0fe269-73b0-490e-82e1-eb091834fb84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76530,7 +76530,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76565,7 +76565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73c58cca-df3c-41f1-b1fb-259764486403", + "id": "bfddf667-2cdc-49f8-bd0a-1830bbbfe1b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76637,7 +76637,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76672,7 +76672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d148e9b-6347-4e49-93b3-25232f1936f5", + "id": "b62523ea-c7f6-44de-978f-de57037cb6b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76744,7 +76744,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76779,7 +76779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c458bb0f-b884-42e9-bbd4-991e51bc2cb8", + "id": "f6e14e15-0cc1-46dd-ba48-e25c38505845", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76851,7 +76851,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76886,7 +76886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a19b14-e5aa-4e74-a022-266eb46f0ac3", + "id": "f9e9eb69-b9fd-4141-ba80-cf20cecd403c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76958,7 +76958,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -76999,7 +76999,7 @@ } }, { - "id": "9d443261-e5f1-41d4-be13-1a455715251d", + "id": "993cc513-dcdc-4226-a279-158d3d192876", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -77042,7 +77042,7 @@ }, "response": [ { - "id": "7f43bdaa-3e57-46a8-bd46-456b5a5c5a8b", + "id": "52d5cd0a-a777-476c-afe6-36c247b5a3f6", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -77099,7 +77099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3e5393a-ed4a-4bf1-9c32-992cb8eddca6", + "id": "17526827-8bde-4e20-b6df-dcb722b23702", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77156,7 +77156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb9f207f-2526-460a-9bf7-3930bdde9acf", + "id": "8cb56646-1e14-4f66-adc1-bd58e34b0380", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77213,7 +77213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9f3e439-ebd8-4fd8-aa07-b8663a3d0819", + "id": "8c2e44c9-a130-49e1-a370-15c22775ea28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77270,7 +77270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "270ff28b-71b1-47b4-a30c-6713e7f4c794", + "id": "880186e6-c48a-46bc-8fd5-39ef8743e9ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77327,7 +77327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed71fa43-c720-4cbd-ab9a-b00126df9be2", + "id": "cdf7526d-d953-49f7-a0dd-92fa26276380", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77390,7 +77390,7 @@ } }, { - "id": "a1bb1ea6-200d-4422-a83c-97b04705e0b9", + "id": "d2e384d2-3e3e-4e55-a0e8-e54f63cc2875", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -77466,7 +77466,7 @@ }, "response": [ { - "id": "b9811c95-e435-4edf-827c-af35d23f50e3", + "id": "63055d75-56fc-400a-9a09-543c1c1df207", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -77556,7 +77556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb1c6457-0e1f-447b-b0d3-36b601ff02b9", + "id": "d81d8ed4-f628-4ee4-af25-f17eceb44b05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77646,7 +77646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1a410b7-6daf-417d-8a80-3fa7ebfb0517", + "id": "ef968169-380e-46ac-a3e3-8694d0dafefa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77736,7 +77736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17dc80b6-0830-4e2d-8994-46166556cebd", + "id": "e93d79b8-4811-42a7-b8ef-a83ae72d3142", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77826,7 +77826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4604de74-fbde-4c82-a375-412d745fa981", + "id": "f2250a83-81da-453c-840c-624921ac178d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77916,7 +77916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cae13ff1-f5d4-4e65-a4bb-60199bf8a7db", + "id": "5691669a-a3b9-4e5b-be6d-ee31358248f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78012,7 +78012,7 @@ } }, { - "id": "982a20a0-8506-41c1-a6d0-7ca4a22f0cbe", + "id": "c2f1694c-22d7-428e-bcd1-61b1dde54520", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -78055,7 +78055,7 @@ }, "response": [ { - "id": "3a6973bb-0b16-4002-ad6a-fa74a242f5ca", + "id": "7ac0a050-79e6-43f0-a03e-2859a4b53e64", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -78112,7 +78112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "187f82bd-c793-4019-b535-0cd36cf0aa7b", + "id": "68aee5cf-8b52-42bd-a50b-3f75a23a501c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78169,7 +78169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75ed0cea-23ef-4073-990b-c5dfe10c4282", + "id": "645599dc-5f70-4eb6-9207-682b918b87ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78226,7 +78226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ed7d1f1-be2b-4dfb-977a-7858c9f49c9d", + "id": "daa5442e-c0c7-4bab-adb2-d74311ae8e3a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78283,7 +78283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc66e5fb-9caf-451e-8e41-af98fae84042", + "id": "2e4b8b49-534c-456e-9d44-39ea2580135b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78340,7 +78340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b633719-1b3a-4c92-89ad-3c9f5c50fa7e", + "id": "3288ac6f-84c3-4caa-9330-e3657a1af25f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78403,7 +78403,7 @@ } }, { - "id": "10f185d3-c2c8-4f6a-9b4b-c9426ebb21dc", + "id": "d7f51a7e-38d7-4ffb-8f50-0a3184dc421f", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -78463,7 +78463,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -78479,7 +78479,7 @@ }, "response": [ { - "id": "bb8a7a31-ac2c-4358-8fcc-2bf2a742c68d", + "id": "bffd18a7-ca85-4435-a2cc-f1b20910877a", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -78534,7 +78534,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -78569,7 +78569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b305aec0-696c-489b-8bce-cb1a64809f8f", + "id": "3674533f-2147-4a8f-a3cf-f1486b46889f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78624,7 +78624,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -78659,7 +78659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "594b4cf8-a019-4893-8e73-02f4c20e6db1", + "id": "b713445b-6e77-446a-a1ea-d968421bacfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78714,7 +78714,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -78749,7 +78749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8884b930-c8fd-4e8b-a536-2029b0c13ed9", + "id": "92b3fc09-bd84-416d-9dec-0bffb260b064", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78804,7 +78804,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -78839,7 +78839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a998dda-4b3b-40d1-b672-e0d7d1ad36ab", + "id": "c73fb392-8ed0-4705-9bd3-a4347ffb9d98", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78894,7 +78894,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -78929,7 +78929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daa3148c-c2ea-4024-ae1f-1c1909f48044", + "id": "8660dee4-cc30-473d-9af9-66358e6d6abb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78984,7 +78984,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79025,7 +79025,7 @@ } }, { - "id": "e165cf8e-dd7f-480e-b211-3814ea208374", + "id": "77852770-63df-4137-a1b2-6b8be43a6e27", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -79068,7 +79068,7 @@ }, "response": [ { - "id": "c95cfb2a-9824-4fdd-af95-51d72a12b3f3", + "id": "2d7b894e-2fcc-4f83-947e-1b7e817a52ff", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -79125,7 +79125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1a76a0-df74-4291-a22b-debbc4dcc27b", + "id": "936390eb-eab3-4a90-abc4-7f51ffb15c6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79182,7 +79182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410563a5-bef3-4ba9-a43b-94e9541bdf2e", + "id": "da171d25-65e4-4b67-b92a-45b9c9f73bd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79239,7 +79239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e75f1b-d8c2-4205-af1f-3c7bc9b3f407", + "id": "02182425-136e-448c-adeb-c676e3270428", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79296,7 +79296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0df399c0-abc5-4ae0-b77c-d4c559bd1fe3", + "id": "5f3e0637-e49c-45e7-a1ed-d706e53306e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79353,7 +79353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3ce8bf3-8391-4cc9-b344-3be246f03bf1", + "id": "927a7087-9272-4d8b-881b-7c9c6d0b3f66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79416,7 +79416,7 @@ } }, { - "id": "1eff870c-350b-47e7-bd7f-302700c0e0b3", + "id": "4973ac03-0a49-49a3-bd6d-5519b99f006b", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -79476,7 +79476,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79492,7 +79492,7 @@ }, "response": [ { - "id": "085c91fa-e36f-46bc-89c9-4e0a9f372791", + "id": "408555fe-5a32-4c33-b2b5-aa76f82f4745", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -79547,7 +79547,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79582,7 +79582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aec2ab79-54fd-49ad-bf77-4cf68dac2b29", + "id": "0bea9cb1-a1e7-4382-8fbd-6881da8ce17f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79637,7 +79637,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79672,7 +79672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b94bb6ad-c09b-4bd4-8eb6-84640dd3a17d", + "id": "a1e1b4e0-c7e8-4c65-ab4e-d57ad07d69be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79727,7 +79727,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79762,7 +79762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "010d785a-37b7-44b3-87cd-d0de8e47ed64", + "id": "0d93f120-d275-4fc8-a3e6-3581500647e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79817,7 +79817,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79852,7 +79852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52adfd11-2f71-42c4-be18-994a565e8920", + "id": "33edc7fa-dd24-42e0-a616-7633b6eb8f04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79907,7 +79907,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -79942,7 +79942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7885977-4282-4f34-ae22-ccc7ea9af682", + "id": "5fc9ab7c-35e9-4c15-93f3-daacd9bcbd23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79997,7 +79997,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -80038,7 +80038,7 @@ } }, { - "id": "3b8db4c8-9245-4032-9c25-9eedbbd6c7d0", + "id": "37750145-62dd-4e6b-93f1-29946e544c6f", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -80082,7 +80082,7 @@ }, "response": [ { - "id": "65bd3457-4a28-4830-a200-22136c853315", + "id": "8f61dc6f-8cc0-4ebd-a518-522a5c510e48", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -80140,7 +80140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc04ad44-2353-4b50-a7fe-df71fdcaf605", + "id": "bd44122a-4d82-4016-9163-ba1e62d6578f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80198,7 +80198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "074ed4cc-610d-42a2-b63b-dae67c909b14", + "id": "1cd8799d-fc57-4a85-88c2-07119190055b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80256,7 +80256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe82b9c-3647-4f1d-aded-c445a52662ba", + "id": "c90086ef-5575-4046-b2b4-6ba48ad94c91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80314,7 +80314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06a76796-1edb-41d4-88c9-100d8145af85", + "id": "73fa9a3a-a433-43a3-b967-c898f3f3c03b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80372,7 +80372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baae763d-7c9a-4b65-8d39-f4ee666b5267", + "id": "42debc73-4401-4610-8775-683474bbc225", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80442,7 +80442,7 @@ "description": "", "item": [ { - "id": "2543325d-ce84-4687-bd37-4c97fb373b5f", + "id": "52859101-30bb-4e8a-9f86-876b996d9b9a", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -80517,7 +80517,7 @@ }, "response": [ { - "id": "1fdb7987-f2c8-46cd-8cd0-1406de4e74a9", + "id": "7d8fe710-6c46-4f80-8862-ee9e69caf6ec", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -80601,12 +80601,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"Ut\",\n \"type\": \"ROLE\",\n \"name\": \"id qui\",\n \"description\": \"c\",\n \"ownerName\": \"ut do mollit\",\n \"ownerId\": \"ipsum\"\n },\n \"status\": \"non enim ullamco\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"1947-10-28T07:29:07.837Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1952-12-14T03:28:14.266Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"magna mollit\",\n \"type\": \"ROLE\",\n \"name\": \"Lorem o\",\n \"description\": \"eiusmod magna ipsum officia\",\n \"ownerName\": \"ex eu\",\n \"ownerId\": \"nulla nostrud cillum\"\n },\n \"status\": \"reprehenderit ad ut eiusmod\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2011-07-05T17:05:00.102Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1980-11-30T15:29:58.608Z\",\n \"createdByUser\": false\n }\n]", + "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"ipsum sint commodo enim quis\",\n \"type\": \"ROLE\",\n \"name\": \"nisi\",\n \"description\": \"officia esse\",\n \"ownerName\": \"esse in adipisicing eu dolor\",\n \"ownerId\": \"ipsum\"\n },\n \"status\": \"cupidatat sunt ad in amet\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2020-11-02T15:45:17.252Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"2004-08-08T00:59:47.627Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"sed laborum\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"Excepteur laboris qui magna culpa\",\n \"description\": \"pariatur irure \",\n \"ownerName\": \"cupidatat ex ad dolor eiusmod\",\n \"ownerId\": \"quis velit tempor\"\n },\n \"status\": \"in consequat\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"1959-03-16T23:45:59.371Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"1987-03-03T07:20:03.153Z\",\n \"createdByUser\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "83a688ce-fa22-43ca-9d15-5c87b6249bb9", + "id": "861efc77-7797-42d7-8e37-b8f0bb21a5a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80695,7 +80695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e1f07e7-3efe-4992-8368-79205b8ceb64", + "id": "e63d2fb7-6540-46b7-a687-556bad155a9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80784,7 +80784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be4cb267-04c9-4340-ba4a-da35f29b5408", + "id": "e239c558-e67c-4d0c-9d26-cf0fb561e4b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80873,7 +80873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99653b13-5f07-41de-adb6-0b58e714606e", + "id": "eb08ffae-aa59-4a69-8737-5860a6fc99df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80968,7 +80968,7 @@ } }, { - "id": "a489e948-9b19-459f-a05e-1793e77adb18", + "id": "51b7d3b7-1b2f-47c3-b714-93ff474c12f1", "name": "Create common access items", "request": { "name": "Create common access items", @@ -80999,7 +80999,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81010,7 +81010,7 @@ }, "response": [ { - "id": "5f39fdc9-e410-4046-8a6b-31d8fdfe8acb", + "id": "638ddc12-f377-4bf8-80b9-ebf87932060f", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -81044,7 +81044,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81061,12 +81061,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ea\",\n \"access\": {\n \"id\": \"irure ipsum dolor deserunt cupidatat\",\n \"type\": \"ROLE\",\n \"name\": \"adipisicing proident labore\",\n \"description\": \"cillum minim eiusmod\",\n \"ownerName\": \"fugiat enim consectetur\",\n \"ownerId\": \"velit dolor anim minim\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"ea pariatur\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"do\",\n \"createdByUser\": \"in\"\n}", + "body": "{\n \"id\": \"labore magna\",\n \"access\": {\n \"id\": \"ut ut id\",\n \"type\": \"ROLE\",\n \"name\": \"dolore velit eiusmod\",\n \"description\": \"minim pariatur tempor\",\n \"ownerName\": \"pariatur Excepteur tempor\",\n \"ownerId\": \"nostrud Duis\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"mollit elit\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"ut dolore ea\",\n \"createdByUser\": \"dolore culpa proident ex\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98390b8a-5283-4fd0-9e42-bfdd89f67540", + "id": "aa004a0e-1573-415d-a2cb-32c71d555e0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81100,7 +81100,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81122,7 +81122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f3e4eea-60e9-49ee-a0ac-608ef7262b6d", + "id": "4a3f51fb-679b-481a-8865-2d89dc9601bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81156,7 +81156,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81178,7 +81178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f10a4841-2eb9-4018-b758-956ed6db96aa", + "id": "0b11346d-22ec-4f52-a57e-9518c8744540", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81212,7 +81212,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81234,7 +81234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "264ea2b1-54a3-4417-be0f-d7ca007807a3", + "id": "6318a044-3392-4a1a-bfb1-799381ae20ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81268,7 +81268,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81290,7 +81290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9b4a40c-3025-4ace-bcb1-b9a224eea369", + "id": "e4edbe12-c8e5-424d-9a7a-a0e41915c7f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81324,7 +81324,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"\",\n \"type\": \"ROLE\",\n \"name\": \"laboris velit elit nulla\",\n \"description\": \"irure exercitation dolor sunt incididunt\",\n \"ownerName\": \"n\",\n \"ownerId\": \"sunt commodo\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"ut ex\",\n \"type\": \"ROLE\",\n \"name\": \"Ut deserunt ullamco officia\",\n \"description\": \"esse do\",\n \"ownerName\": \"mollit anim dolore incidi\",\n \"ownerId\": \"Excepteur voluptate\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -81352,7 +81352,7 @@ } }, { - "id": "11aff965-a864-42ae-a8a4-3c8dc62e0423", + "id": "321bb430-2572-46fe-9008-2f9c68b365a8", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -81384,7 +81384,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81395,7 +81395,7 @@ }, "response": [ { - "id": "90f0827c-b685-4ab4-892d-3be94213b2b1", + "id": "7a346c13-14a4-40d0-8897-783e91ed1d42", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -81430,7 +81430,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81452,7 +81452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cd3ab53-9e64-40f3-9fc3-92451e5eff8d", + "id": "e65c00a1-3f58-47c2-b37b-cdfdce9a29ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81487,7 +81487,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81509,7 +81509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb126417-36da-4abb-ad8f-3b0b1dc63f5c", + "id": "ecd97156-84f6-4417-acc0-a4c3f07a222b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81544,7 +81544,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81566,7 +81566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0642bcc8-3e61-4828-917d-a9b571fa3ca4", + "id": "62f00254-ecb0-4fb5-94d0-ed2c9477ca1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81601,7 +81601,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81623,7 +81623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "995b42c7-7b30-4da0-87b1-ab5cc61728ec", + "id": "0af56e38-fa21-4b27-9b77-9502c239b347", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81658,7 +81658,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81680,7 +81680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f15e2d1d-b607-4241-8876-7fbc75b31075", + "id": "cb79b222-bec2-4ab1-9b8e-48cb6199b4b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81715,7 +81715,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"d6972da8-b23d-bb27-0dbc-6e7e69bd4374\",\n \"urn:uuid:fd520bd4-029f-bfab-8891-536a0acbf679\"\n ],\n \"deniedIds\": [\n \"33d4ed9e-a59b-e550-fc8d-d730ea87393e\",\n \"ac247206-de9e-2c2c-d2f5-fd6754388065\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:5f156103-701d-88a6-413e-e67a2a90ef9c\",\n \"urn:uuid:db7d253a-629f-4827-08d6-cfc21f6b1344\"\n ],\n \"deniedIds\": [\n \"ec432c96-ef56-4d5d-4b5c-6290c442defc\",\n \"urn:uuid:e0d20366-0c3d-99d7-438a-2e7f602dc9c4\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"4950784b-1510-8b73-9991-2a89c1cba66d\",\n \"urn:uuid:de4bab6f-5971-c66e-4c2f-81ddaba1389b\"\n ],\n \"deniedIds\": [\n \"1d75d2bd-faa3-4edb-e677-cf0131010f1e\",\n \"cdde5215-6b11-3ad1-e817-47ffb07e2350\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:a62e1139-2df4-176c-107f-8e88ba26ceb0\",\n \"3346f420-fd65-8dcc-1978-964de741d309\"\n ],\n \"deniedIds\": [\n \"urn:uuid:c34f1cd7-4ed8-5ee5-aa3d-56b92e071b45\",\n \"urn:uuid:6a2b3d15-48b8-c503-f3c1-15fadff672e5\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -81749,7 +81749,7 @@ "description": "", "item": [ { - "id": "2dbac3c5-80f2-48e4-bcc7-0b9eb1d65fa7", + "id": "349b3344-153f-46b8-9ac9-6dc5c97ba37a", "name": "Get Message catalogs", "request": { "name": "Get Message catalogs", @@ -81790,7 +81790,7 @@ }, "response": [ { - "id": "885d6499-8a05-4ecb-9317-5e3607091ccc", + "id": "8bc14063-0e1e-4371-a80d-79a980575fce", "name": "The message catalogs based on the request headers", "originalRequest": { "url": { @@ -81834,7 +81834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59a43f5c-5e69-4819-ada1-db6a2eca983f", + "id": "66a93d5a-e558-4669-8753-94f6badadc26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81878,7 +81878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5af2d2-89c1-401e-94ec-14374300eb25", + "id": "4c671938-b194-46c6-939d-ef55ef82c2bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81922,7 +81922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c40089e5-03fc-4809-af86-050e1d6e9284", + "id": "d737bda4-ee37-4a20-893b-573f9208c12f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81966,7 +81966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d3bd2b-380e-4e60-b13d-1cdcc836b740", + "id": "d1fb8a89-d6f6-4ad8-96cc-a43d13ed979a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82010,7 +82010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e90511-29e8-4e11-90eb-5e539aeef54c", + "id": "4bb58b42-1692-469c-8373-bcd8b164589b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82066,7 +82066,7 @@ "description": "", "item": [ { - "id": "d453a2a7-c76b-488b-924c-9b1c7718457b", + "id": "9566875c-eb8e-488d-8055-4571cd5920b8", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -82107,7 +82107,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82141,7 +82141,7 @@ }, "response": [ { - "id": "a1c473fb-aeca-4d00-b7c0-110eb5bcb05f", + "id": "78998713-6b48-4fa3-b819-700d50ced518", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -82177,7 +82177,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82231,7 +82231,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-60518143" + "value": "-31019731" } ], "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n }\n]", @@ -82239,7 +82239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e96be7ab-af24-41c9-9550-621cadb4b4b7", + "id": "37e1337d-eebb-49f1-a4b6-c4a4c60f570c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -82275,7 +82275,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82328,7 +82328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "301b68f5-1d13-4c6e-b2d3-f51b00f99094", + "id": "a51561fb-476f-482d-bcc2-6fe497f1e46c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82364,7 +82364,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82417,7 +82417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ed0d697-1e2b-4816-a704-f11cddb0be93", + "id": "6f453498-d4a2-4308-bd30-6cf5f4e37beb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82453,7 +82453,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82506,7 +82506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d15f17b7-2419-4537-a989-1f6cd703f773", + "id": "941bb614-1859-43f6-a441-70d505bbb434", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82542,7 +82542,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82595,7 +82595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e87e9da1-b6b3-4b33-89fa-77c5c6f0bdb4", + "id": "3178f064-8191-4c98-9637-0499ea423dd4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82631,7 +82631,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82684,7 +82684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2a69583-dc12-4000-aa83-99e5832adce2", + "id": "e74e7b77-1af0-4341-9f0c-d521403c1c13", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82720,7 +82720,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" }, { "disabled": true, @@ -82779,7 +82779,7 @@ } }, { - "id": "7b9a9606-c610-4ea2-92f7-4cb639fb2e1b", + "id": "287af074-a405-472e-9fc9-9ebcf17782ff", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -82803,7 +82803,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -82819,7 +82819,7 @@ }, "response": [ { - "id": "73ce522a-f49c-49d5-85a9-3e0e2ad2164a", + "id": "fd6bb46c-54dc-481a-8201-ed4ea4d22d1e", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -82838,7 +82838,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -82873,7 +82873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1ebfcd6-4d55-471f-bc08-c2241a313cb2", + "id": "c5b6028d-01c7-44ae-aa64-6d9909dd73de", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -82892,7 +82892,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -82927,7 +82927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b412448a-d3d7-46f2-85fc-d9290d3c5759", + "id": "d13c4aed-0304-40d2-8bd8-660816231994", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82946,7 +82946,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -82981,7 +82981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eebd19f-ded0-4991-b108-3f4b9db17214", + "id": "b9d19202-4412-4a2f-83a1-d594701cdaee", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83000,7 +83000,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -83035,7 +83035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37cc3f55-10a2-4fe4-9e35-ab1be65c9b38", + "id": "e0eee65b-c781-49b5-aecf-db9e724f70ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83054,7 +83054,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -83089,7 +83089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79869946-27ac-4964-86c1-d0bde973cd40", + "id": "f8f0b8e0-56b1-4290-a29e-b216ba28a317", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83108,7 +83108,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -83143,7 +83143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d44183c-99ca-4c19-92f5-e99926036cc4", + "id": "e5812ecc-0a15-46a7-b992-3e7b6e1532d0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83162,7 +83162,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -83203,7 +83203,7 @@ } }, { - "id": "4736016e-df60-4819-9212-9375493cf337", + "id": "4a6a0564-5ca3-483f-bb6d-88a129f2f92c", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -83287,7 +83287,7 @@ }, "response": [ { - "id": "36d7f7e5-b5b1-428e-a8d9-cd3e118750c7", + "id": "e2fe6095-2f23-4ee2-9d26-a0fe9e3109b6", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -83386,7 +83386,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-60518143" + "value": "-31019731" } ], "body": "[\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n },\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n }\n]", @@ -83394,7 +83394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88908206-ff50-4fb2-9fa7-c52b047a4253", + "id": "a8b80403-ed9c-4525-afa3-ccb205c2b337", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83492,7 +83492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f2b429-d6a1-4de1-b0e9-cc35b05dc93c", + "id": "5df1cdfe-b290-420a-ae7f-272df39b9bdb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83590,7 +83590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64b77ac2-2cfb-4da9-96a9-b7fb35845f85", + "id": "38e5baf6-5894-45e3-ab3a-00dff5cbc99a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83688,7 +83688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5c96bdc-e2a1-4f10-92cb-5e7abb7dc768", + "id": "013b9796-30aa-4034-8ea0-7b4b4139c740", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83786,7 +83786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9459b34f-b05f-4421-a863-6862e5fde198", + "id": "65fb0ca7-e055-4162-bd72-26031b1f6021", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83890,7 +83890,7 @@ } }, { - "id": "25998682-92f7-44c7-acb8-3e49cc25e682", + "id": "060ad08e-4ecc-4664-a01f-9264ad2c0663", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -83978,7 +83978,7 @@ }, "response": [ { - "id": "09ecb26f-d69b-4432-9348-993d6fe0961d", + "id": "f7c54225-c289-4597-a6f2-eb70beb579d2", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -84070,7 +84070,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "-60518143" + "value": "-31019731" }, { "disabled": true, @@ -84079,15 +84079,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "nisi" + "value": "aute magna Lorem sint" } ], - "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.17037369743723785,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n },\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.5056990905684953,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.05603012658978468,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n },\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.5612039036171304,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1845e96-8878-4010-9f7d-4a0daff973cd", + "id": "f265a4ef-a921-4759-9713-8e3aad3d9cb2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84178,7 +84178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "615c3f50-4788-4126-86aa-cdd5c6af09f5", + "id": "a9dec361-cafd-40cb-b246-925c9d5fb4fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84269,7 +84269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e097d21-26ec-41da-8fab-925aac0a3fef", + "id": "9ad18abd-833e-4cc4-942d-0fd6de61fd98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84360,7 +84360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1528d77-93c8-4171-886a-f944a6f54f73", + "id": "b700da75-d949-474e-a177-abedc3d14022", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84451,7 +84451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0cb3dd-1779-4d4a-9311-765ccdd51ecc", + "id": "fcd30b7d-890f-4976-96ff-095277b938f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84542,7 +84542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f98c18-6b9a-4116-90b9-aedf553e0fa2", + "id": "4385a7b8-bc0e-4874-9cca-6100d2dc3559", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84639,7 +84639,7 @@ } }, { - "id": "5e69e09c-87e3-4d77-aa54-719d19e4dd18", + "id": "a4364f09-5149-4025-9807-8eedeafd783e", "name": "Gets a list of access items associated with each identity outlier contributing feature", "request": { "name": "Gets a list of access items associated with each identity outlier contributing feature", @@ -84739,7 +84739,7 @@ }, "response": [ { - "id": "3dc6b9e3-cc18-4c3e-8a58-cd8737c0911e", + "id": "d035940e-d577-4aa9-b1bf-d10444505ef4", "name": "The list of access items.", "originalRequest": { "url": { @@ -84832,7 +84832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bbdcf40-b4ef-4f18-8aa5-cfa72b6057df", + "id": "3d978b67-5d98-4caa-99ab-45878864b1c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84925,7 +84925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e65b3c38-a03e-4f0d-be29-91b096a6577e", + "id": "8dcdf53a-feba-4c4e-b2fc-6e72fe48703c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85018,7 +85018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4a46b1a-dad5-4a27-a1e8-6b1ba8ddf32b", + "id": "7582df2b-12ac-4b80-be01-25ade5fcba35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85111,7 +85111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "230c9d47-0b92-4bd3-b921-27928be63bef", + "id": "50dfa7c9-123a-45c2-a77b-d1eeb9907ba2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -85204,7 +85204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79cd99e0-3d34-43bb-bfea-15ad7bf23951", + "id": "778a64aa-6c91-4828-82cd-2aabbc41526d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85297,7 +85297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fefaaaf3-0c91-48e2-85de-506ca4d20236", + "id": "c5f41f10-1565-4e30-a720-9c92bb0eb1a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85396,7 +85396,7 @@ } }, { - "id": "bf4d8371-4f05-46d7-b617-2cc1dfb670b6", + "id": "881b875f-9315-48b4-9244-46e9bfd86d11", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -85439,7 +85439,7 @@ }, "response": [ { - "id": "a1228d4c-7a49-4b3e-b6de-a4c4bbb6d3b2", + "id": "4e61d82e-900f-47a5-b735-526e541d69a7", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85486,7 +85486,7 @@ "_postman_previewlanguage": "text" }, { - "id": "537e3be5-8c97-4311-b012-4ce4a0318b70", + "id": "4cf52d1f-5c6c-4aff-8bba-20d6ebd2e225", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85543,7 +85543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c080e971-89bf-4cbe-9e74-184131ce4a26", + "id": "0a20f82a-f695-4b08-844d-f35bf49d1bf9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85600,7 +85600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06a3f150-86c5-40b0-8772-5a5011685fd5", + "id": "355bfe0b-4ae3-45fd-b328-ceaacc814f0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85657,7 +85657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da9051f-7e30-454b-a91a-7769f7af63e8", + "id": "28cfd496-b2fc-46fd-ae62-73cd31a894e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85714,7 +85714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba26721e-bc2a-4e3d-a58d-05c3bb92e3c8", + "id": "6cde4f15-2592-4252-ab55-6d64f455dcd6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85777,7 +85777,7 @@ } }, { - "id": "25e902ee-f449-4414-ba50-c7df30191625", + "id": "24da5b8c-45e8-449d-924a-a76555083336", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -85820,7 +85820,7 @@ }, "response": [ { - "id": "453ce4e0-bc5d-4c2d-b756-dfc5881da674", + "id": "f329a8e1-ba52-434d-bad9-4fbca86a653d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -85867,7 +85867,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ddb46b63-0ada-493a-891f-59796359ea40", + "id": "f4a0959a-e6bd-4d56-9b8e-25c241f7d3bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85924,7 +85924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d84f38c-2b6a-4714-9ebe-890a73848b37", + "id": "8e82f40f-f458-40b2-be02-6f9f49c25f5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85981,7 +85981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b4d2f48-31ef-4c6c-84e9-5ac530158d52", + "id": "ba4eb3cf-ee17-4017-8781-774fcf4aec30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86038,7 +86038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d0be83e-cee5-45dd-b48e-d8871aba20b8", + "id": "198427fb-231e-4e85-acdb-bd0300d90a17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86095,7 +86095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c62ef7bf-531e-4d00-be5b-4424eafd6a5a", + "id": "adbc77f2-7c26-458c-8150-ae42505e6f1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86158,7 +86158,7 @@ } }, { - "id": "cbc7038a-a365-4699-84aa-85a4219270ce", + "id": "f0b6265e-fa86-46d2-9f7b-d4a82d936bfa", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -86182,7 +86182,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86198,7 +86198,7 @@ }, "response": [ { - "id": "233fc2e0-db07-4153-9344-48eb38234051", + "id": "5d1b4480-155e-4862-8a97-9bdf7bf47ad2", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -86217,7 +86217,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86247,12 +86247,12 @@ "value": "application/zip" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "71ca2341-b10b-4052-a049-4d32d6f42e2a", + "id": "8a9c32df-33d2-42aa-be18-0d1e7dd35144", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86271,7 +86271,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86306,7 +86306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c6fc501-047b-4bf2-842c-436c9cb70594", + "id": "ffc01274-9b64-42d8-918a-032823458cf1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86325,7 +86325,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86360,7 +86360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f54b3a16-9ff4-44c7-84f5-e1259dcad67f", + "id": "1727c9d7-9894-43d6-8603-47162ab55287", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86379,7 +86379,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86414,7 +86414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df914206-131f-40f7-aac7-43a825824f74", + "id": "60d98f71-1447-497f-8a1d-6f039a81a4ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86433,7 +86433,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86468,7 +86468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38a17e1f-7f98-4cc9-81ee-ef31b6fabe55", + "id": "fe6c3835-512e-4e8a-9bf5-e6f894eb324b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86487,7 +86487,7 @@ "type": "text/plain" }, "key": "type", - "value": "STRUCTURAL" + "value": "LOW_SIMILARITY" } ], "variable": [] @@ -86528,7 +86528,7 @@ } }, { - "id": "f7c0fb0d-76e1-411c-84bb-040d63eab59c", + "id": "ce73b7de-8c5e-40ba-b5c2-d05a653ab83e", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -86569,7 +86569,7 @@ }, "response": [ { - "id": "61631b88-5f09-4e9b-b169-2062ad7a92b7", + "id": "290b69a3-6e5e-4e86-acac-050ff119d3ef", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -86614,15 +86614,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "nisi" + "value": "aute magna Lorem sint" } ], - "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"pro\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"laboris quis\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", + "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"et eiusmod officia\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80bbadf9-482c-4c40-ad9e-d20a9c82759f", + "id": "3486d88c-bd11-4d9e-8915-8eaf2b8d261a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86666,7 +86666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c32bc43-1db0-4658-9751-a45437696b29", + "id": "a2d458f2-01c2-4bfc-a03f-a00dfd967cb4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86710,7 +86710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec98a6ff-c402-4c52-ad3d-022eabf711fc", + "id": "a2e6ae92-9d29-4813-8788-22ab0345022d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86754,7 +86754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4d4ba37-a91b-4483-92f1-fac902c643bd", + "id": "8636c69a-bdf9-48cd-a167-b8dc1ec12dfd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -86798,7 +86798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c3ec43d-1958-488b-bd88-58913ceb18f3", + "id": "7e2bea24-8c46-4ecf-86b0-91d9b20f9f59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86842,7 +86842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff6dd763-19ba-4e1d-ac7a-4fc1dd0affd2", + "id": "f3b167d4-6386-412d-a590-83ef4ac91eb1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86898,7 +86898,7 @@ "description": "", "item": [ { - "id": "5d6b8b28-4384-4b12-9d9e-a0157459532d", + "id": "ecec8b90-40cd-452d-b87a-d269a814db88", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -86968,7 +86968,7 @@ }, "response": [ { - "id": "765a5c92-208e-4d29-8e43-8f16c9d9a04f", + "id": "cb154ba4-ad28-4a6a-bc25-ad9a71b1e1ed", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -87036,12 +87036,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"anim ad incididunt exercitation deserunt\",\n \"type\": \"deserunt elit\",\n \"peer_group_id\": \"laborum aliqua reprehenderit\",\n \"attributes\": {\n \"voluptate6\": {},\n \"proident_612\": {},\n \"exercitation_c0\": {}\n }\n },\n {\n \"id\": \"Lorem\",\n \"type\": \"anim do reprehenderit\",\n \"peer_group_id\": \"occaecat esse\",\n \"attributes\": {\n \"sit_6\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"commodo reprehenderit nisi in adipisicing\",\n \"type\": \"quis Lorem nulla\",\n \"peer_group_id\": \"veniam cupidatat eu\",\n \"attributes\": {\n \"incididunt_7b\": {}\n }\n },\n {\n \"id\": \"in consequat\",\n \"type\": \"proident consectetur\",\n \"peer_group_id\": \"labore Lorem incididunt\",\n \"attributes\": {\n \"cupidatat_0\": {},\n \"esse_c\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5a814960-3afb-4c3b-80ae-4d0ec0ace7dc", + "id": "72f075e1-f488-4606-8021-828589b5ca1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87114,7 +87114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81e998d-725e-4d17-a5f2-ba805c16c685", + "id": "17e475d3-0ac0-4045-a3cd-1c4fc9d7317d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87187,7 +87187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c4aeaea-378e-4b2b-9c59-202bb0335654", + "id": "7a21c2db-5036-4985-bab4-b942fe85dc39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87260,7 +87260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f834e4b5-0953-4531-876e-9cf611583e7f", + "id": "681c8031-3081-412c-a8fb-f20aac9d785a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87333,7 +87333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35f98aa6-da7c-4f29-966e-f434e13f690e", + "id": "17726e22-6981-45b8-b054-207a485ff39a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87418,7 +87418,7 @@ "description": "", "item": [ { - "id": "7ea24b88-8941-4395-8e03-64b1fd2c5259", + "id": "5fb81904-0464-4b55-b13e-f989a317ab45", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -87461,7 +87461,7 @@ }, "response": [ { - "id": "57ff209b-78ba-47df-b080-3b2213ce46b8", + "id": "cd0244c8-c4d8-460b-819c-f17fcf42d48e", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -87513,12 +87513,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": -15601433.839658707,\n \"featureWeightedScores\": {\n \"ine17\": -78525384.67513943,\n \"cillum_7d\": 37881784.383741796\n },\n \"threshold\": 92266731.98840106,\n \"identityAttributes\": {\n \"deseruntb2\": {\n \"value\": \"ullamco mollit\"\n },\n \"dolor_a\": {\n \"value\": \"nulla quis proident dolor minim\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 58597987.62960118,\n \"featureWeightedScores\": {\n \"ullamco_8d_\": -13360071.48617284,\n \"veniamc83\": -39849838.00513184\n },\n \"threshold\": 17129534.9751222,\n \"identityAttributes\": {\n \"exercitation_2b\": {\n \"value\": \"consectetur\"\n },\n \"Ut18\": {\n \"value\": \"in reprehenderit\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", + "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 77917679.29593313,\n \"featureWeightedScores\": {\n \"laboris7e8\": 86892934.28293371,\n \"laborum_5\": -70470122.93416724,\n \"cillum_8\": -20406065.089415163\n },\n \"threshold\": -25640964.7731473,\n \"identityAttributes\": {\n \"ullamco_9\": {\n \"value\": \"Ut Duis irure eu\"\n },\n \"laboris594\": {\n \"value\": \"in nostrud amet Ut\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": -80585936.2103671,\n \"featureWeightedScores\": {\n \"eu_0\": 96785781.63069052\n },\n \"threshold\": -32892619.63881693,\n \"identityAttributes\": {\n \"exercitation_ff\": {\n \"value\": \"elit magna veniam\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5bf3f9c2-4719-4246-ab67-caae2198aac7", + "id": "3fa2d811-a210-4973-b8ce-720935d1eab3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87575,7 +87575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "385916e7-018d-4152-912d-5a6863b0a176", + "id": "68fa5795-f777-4073-9345-4361e6261bc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87632,7 +87632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb586e3d-78f0-4a1b-9401-f9f7240762cb", + "id": "ed15a82c-a2d8-4085-ac2c-0dfa43334f5b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87689,7 +87689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e7b21d9-9cb9-458c-9642-eb830096ed59", + "id": "a91dc63c-6df2-43db-9c97-40a681667803", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87746,7 +87746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d53e37d4-12ed-42a3-9403-31cb3a1c6bf0", + "id": "9e05b6a8-423c-411f-a665-76ff097d6bc5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87809,7 +87809,7 @@ } }, { - "id": "79b65fe9-3073-4ec8-9008-e8998d656c19", + "id": "375a4a57-29b2-4d64-951a-281ea1a194d5", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -87839,7 +87839,7 @@ }, "response": [ { - "id": "62ec3b1d-8bc6-40a0-8b5d-0cb72c42607d", + "id": "9dc30dd2-7f02-42c4-ab9d-eebc181309da", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -87883,7 +87883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c87139b-fddc-42ef-aeec-85cec3f077cd", + "id": "89c906aa-2396-4c74-8446-dc6fd254bc1b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87927,7 +87927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ebbc91b-6ac9-41c2-8f09-df2635cf1f88", + "id": "2af2add4-e365-47b3-9662-bb1648699106", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87971,7 +87971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89d110b6-f51d-4b75-92d2-87f79b6099f3", + "id": "212cdb5b-f8e1-45f8-a50d-da1ed64c63d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88015,7 +88015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a6efebd-7d2c-467d-a5e4-efa2b42377c8", + "id": "b4d91760-d7cc-4fb7-994c-760d8f24c0b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88065,7 +88065,7 @@ } }, { - "id": "06aa2b9c-f02b-465e-a7df-8d9461f722af", + "id": "19f02e7e-536c-49f1-97ad-b90cc468b0df", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -88108,7 +88108,7 @@ }, "response": [ { - "id": "ec03f4ba-2c16-48e1-89af-eb9b9984941c", + "id": "7fd74f67-6649-4f84-a966-2a5d3d2532c1", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -88165,7 +88165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abacce3a-d7b4-4303-9f31-cb2628b53f1d", + "id": "a00a5c8d-77fd-4428-9935-597b6a788072", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88222,7 +88222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbfd36a0-7eee-4409-a030-a8797319627a", + "id": "a505d8d0-52df-48be-bb24-250fc30b7d68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88279,7 +88279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce78389-32ad-41b0-bbd9-c8a575eb7db8", + "id": "ebf50fca-fd29-4935-9fd2-4dbef76b8d21", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88336,7 +88336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a826ab4-37ca-46a5-b20d-256daa0d0840", + "id": "0a398429-cb17-4b1f-abeb-e09ae7ddb0fb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88405,7 +88405,7 @@ "description": "", "item": [ { - "id": "7a30769a-056e-420e-86ab-883b89e612cc", + "id": "2dd9df7e-d8b5-4c91-9555-107c33e4e4f3", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -88447,7 +88447,7 @@ }, "response": [ { - "id": "3bdb17c9-33bd-47c2-ac18-e95265223d22", + "id": "abc185d1-a2e2-477b-ac26-04c5ea4d1802", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -88503,7 +88503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c48f8a47-652e-426e-87a2-4c0c4892c6b4", + "id": "88917dac-a294-481e-be89-efa6baa9234e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88559,7 +88559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30d396ed-6465-4003-86b4-3340bd3aeb45", + "id": "d6a67636-9b9a-44da-b510-e92c2ac725ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88615,7 +88615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68da35f1-353c-4b74-8462-51a8978d1cb8", + "id": "985fd53c-6d1a-4b83-8112-1350d6e01070", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88671,7 +88671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87453742-360b-4827-b0fb-629c34dff557", + "id": "2635451c-27c7-4311-8261-3f3eb5817ecd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88727,7 +88727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f0fc5c6-a76c-4624-9719-6d403a5963a1", + "id": "1d4e0036-af2f-4467-8055-e5162d62487c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88789,7 +88789,7 @@ } }, { - "id": "4be515f5-ec92-474d-8d3a-4f2ecd633028", + "id": "a8b0bf8e-7458-44a9-a63d-0cc1742f5416", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -88864,7 +88864,7 @@ }, "response": [ { - "id": "8a2c30c6-db42-4ce2-b318-48f79f3e74f2", + "id": "8e129dc1-8fd7-4ec3-aa0e-e546c813dbb0", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -88948,12 +88948,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"minNumIdentitiesInPotentialRole\": 20,\n \"scopingMethod\": \"AUTO_RM\",\n \"prescribedPruneThreshold\": 83,\n \"pruneThreshold\": 70,\n \"potentialRoleCount\": 8,\n \"potentialRolesReadyCount\": 4,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"emailRecipientId\": \"sit in voluptate aliquip\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 39,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\",\n \"dataFilePath\": \"commodo aliquip o\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"1956-07-10T07:03:42.421Z\",\n \"modifiedDate\": \"1992-05-09T17:05:46.367Z\",\n \"type\": \"SPECIALIZED\"\n },\n {\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"minNumIdentitiesInPotentialRole\": 20,\n \"scopingMethod\": \"AUTO_RM\",\n \"prescribedPruneThreshold\": 83,\n \"pruneThreshold\": 70,\n \"potentialRoleCount\": 8,\n \"potentialRolesReadyCount\": 4,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"emailRecipientId\": \"ea\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 39,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\",\n \"dataFilePath\": \"veniam est dolor in su\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"1979-02-14T09:27:15.150Z\",\n \"modifiedDate\": \"1961-09-10T20:05:06.301Z\",\n \"type\": \"SPECIALIZED\"\n }\n]", + "body": "[\n {\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"minNumIdentitiesInPotentialRole\": 20,\n \"scopingMethod\": \"AUTO_RM\",\n \"prescribedPruneThreshold\": 83,\n \"pruneThreshold\": 70,\n \"potentialRoleCount\": 8,\n \"potentialRolesReadyCount\": 4,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"emailRecipientId\": \"dolore\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 39,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\",\n \"dataFilePath\": \"velit\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"2001-06-25T09:41:28.051Z\",\n \"modifiedDate\": \"1970-09-24T15:06:44.632Z\",\n \"type\": \"SPECIALIZED\"\n },\n {\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"minNumIdentitiesInPotentialRole\": 20,\n \"scopingMethod\": \"AUTO_RM\",\n \"prescribedPruneThreshold\": 83,\n \"pruneThreshold\": 70,\n \"potentialRoleCount\": 8,\n \"potentialRolesReadyCount\": 4,\n \"status\": {\n \"state\": \"CREATED\"\n },\n \"emailRecipientId\": \"proident sint culpa\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"identityCount\": 39,\n \"saved\": true,\n \"name\": \"Saved RM Session - 07/10\",\n \"dataFilePath\": \"qui eu\",\n \"id\": \"8c190e67-87aa-4ed9-a90b-d9d5344523fb\",\n \"createdDate\": \"2022-08-20T00:31:21.813Z\",\n \"modifiedDate\": \"1949-09-30T14:18:10.185Z\",\n \"type\": \"SPECIALIZED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5f368d5-c5a0-46d6-875e-b407b4d08b49", + "id": "c7b15634-9627-4d68-b16b-ce1dd94fb450", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89042,7 +89042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a179d00a-64be-4077-9af5-c36bcde5283b", + "id": "9c4f2e8a-7c6e-4f5a-ba01-b9a82bf5026c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89131,7 +89131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31976211-1c27-4f0c-b733-58b8baf1f3ea", + "id": "f2c64e1b-7c1a-43be-a0d5-e978671407c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89220,7 +89220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1539982-98dd-4459-8bc3-dcb18cb228bb", + "id": "d66ccaa1-a536-4572-ae84-6de497318aca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89309,7 +89309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adf69e78-9944-4c04-9373-d57b00072054", + "id": "1a9106a5-8316-4dd5-8de0-67e4bac167d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89404,7 +89404,7 @@ } }, { - "id": "344d1f95-fc07-499a-b89c-492162d71819", + "id": "8c1bec9b-05b2-435b-bde5-1d9af120dd55", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -89458,7 +89458,7 @@ }, "response": [ { - "id": "7646a5ec-4e68-40f2-a29a-66dfe3c6c7c1", + "id": "fbdf59f9-f58d-4332-b5e2-04d6b730f0a0", "name": "Success", "originalRequest": { "url": { @@ -89515,7 +89515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00147de2-0477-49df-b6ce-48b88b8326b0", + "id": "30630fc2-20c1-4a99-be8f-942e628d6704", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89572,7 +89572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a707e4-284d-4ab5-9737-6672b428620c", + "id": "63a74254-4d11-4d13-bfef-e53ca6266a2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89629,7 +89629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18319eb7-4d82-492b-a840-6cf56adef361", + "id": "91c6bf41-f75d-4d14-af80-ef5fcee78f4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89686,7 +89686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e551e56d-8c86-445e-a63b-19b5c46e8040", + "id": "39cf824f-eacd-40d9-a370-24c8f0f69be9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -89743,7 +89743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "346e1ce7-4d74-4ea8-9c5d-fb8f18430d79", + "id": "99fed5a0-7eed-4b9b-99a2-afbc3a5c7c58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89800,7 +89800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f82f0a9-32cb-4465-bf39-68e27475ae67", + "id": "1f6e44b3-3e77-44ca-aa0b-0e44219292a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89863,7 +89863,7 @@ } }, { - "id": "1bbf72e3-d51e-4b69-bf09-aecf524cec63", + "id": "67824500-b7c3-43b3-b4fe-52e3f48e2df3", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -89904,7 +89904,7 @@ }, "response": [ { - "id": "ada5e939-ccd9-4366-b8f2-808e2a7a2585", + "id": "06eb5357-8746-4f71-9da9-8e7237df1a63", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -89948,7 +89948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e32daf31-2b9b-45e4-9184-fcec288893a3", + "id": "1b4db6e5-e359-402d-91e4-3ac0c9557296", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89992,7 +89992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "236f0fba-5b83-47c0-ad8e-2438a364f877", + "id": "8a958334-4a30-4d0d-bfe7-23726baf3789", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90036,7 +90036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3b1c36d-70ed-497a-9571-e5fc09344a32", + "id": "e46ce170-f606-46a8-8f8f-6aec436d7d52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90080,7 +90080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04fa8a9e-767e-490a-b4ce-5077865396b9", + "id": "8688efee-f779-4797-9711-a0b6eead5eb7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90124,7 +90124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e6c9316-67f1-4581-87c7-995714273bd3", + "id": "b7431379-f515-422d-956c-ca2238334d92", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90168,7 +90168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "534f3e82-3e0a-4a56-b5f2-145d4ed840ea", + "id": "5e67ca99-a183-408b-8533-d5ee4f5f60e1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90218,7 +90218,7 @@ } }, { - "id": "7d57ec25-15dc-4ec4-ad7b-c36e5a44cdd9", + "id": "1c7e857a-66af-4f80-9943-eaf5c858f009", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -90260,7 +90260,7 @@ }, "response": [ { - "id": "67d8e063-ec9e-4327-9432-14f2e4be8c45", + "id": "502af488-8007-4bf3-ab22-0086f1e95311", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -90305,7 +90305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da315cfb-ef99-4be1-8416-f2d8c71e3ad1", + "id": "106da015-8144-45b5-bb01-3374a5d8c28a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90350,7 +90350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11cc6656-ab04-4602-a543-5adef36d5fbe", + "id": "798e394e-b57c-4c9d-8049-4f3d96859344", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90395,7 +90395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7244fb0-4d93-4443-ae2b-76a42a63e2d2", + "id": "f50d1112-d476-4bfd-89ce-73a30959436a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90440,7 +90440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed67a56-38c6-4db8-841f-6f2354792b01", + "id": "074ae3f3-c932-4859-b4ca-d09368affbc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90491,7 +90491,7 @@ } }, { - "id": "6babaf7b-c5a0-4585-891e-d809cb2b294a", + "id": "9fa6f87b-47db-41cd-a02f-11b0b57062d2", "name": "Retrieve session's potential role summaries", "request": { "name": "Retrieve session's potential role summaries", @@ -90579,7 +90579,7 @@ }, "response": [ { - "id": "88e86b33-b1bf-437c-9d4c-bde435fe8227", + "id": "15912fa6-b71a-4cf0-8224-946b19b1b3ba", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -90665,12 +90665,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2001-08-17T16:04:45.682Z\",\n \"saved\": true,\n \"description\": \"esse exercitation\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1945-07-20T10:46:04.928Z\",\n \"saved\": true,\n \"description\": \"minim cillum sunt\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1961-06-15T09:53:26.393Z\",\n \"saved\": true,\n \"description\": \"est nulla veniam occaecat nisi\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2012-01-17T16:27:12.977Z\",\n \"saved\": true,\n \"description\": \"dolor adipisicing dolore in\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "766f6bde-a577-468f-b537-f9e92d679c70", + "id": "3fcdee0c-ff34-4897-ac89-d61d05394659", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90761,7 +90761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72187c6e-b179-4483-9b9d-256fd1e648e4", + "id": "fe73cb10-7d1a-4d81-b543-2e0ba9098584", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90852,7 +90852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81a85225-24c0-4eba-b8c6-c8701696cf84", + "id": "edeb149b-8d34-4f05-9c91-8f16d01dcadb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90943,7 +90943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae47b2e7-f65e-4ada-b380-d5866ca7c0f0", + "id": "f6b9cf38-9ac0-4265-bd31-23c94da87192", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91034,7 +91034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bac65d3d-3fd4-4dc2-a14e-d2dbced9bfbe", + "id": "6fce34cf-bda2-4ec9-96b9-66c4a9bd6758", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91131,7 +91131,7 @@ } }, { - "id": "4c75a6bf-a6dc-46d4-b2bd-d0e6843e4acf", + "id": "5ee6221c-488c-4b3d-a86c-7dad1de575c9", "name": "Retrieve potential role in session", "request": { "name": "Retrieve potential role in session", @@ -91184,7 +91184,7 @@ }, "response": [ { - "id": "8bfe215c-1369-4b5f-9797-c12cbe60407b", + "id": "6b1a9113-354e-401f-b441-76eb4a8abd2b", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -91225,12 +91225,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"elit8\": \"Lorem minim cillum sint qui\",\n \"ut9a9\": \"irure veniam dolore aute Lorem\",\n \"incididunt_c\": \"esse cillum dolore do\"\n },\n {\n \"laborum_d00\": \"ad officia ut consequat ipsum\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"Ute4\": \"Excepteur dolor anim\"\n },\n {\n \"sit_4\": \"ex nulla consequat dolore\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1959-09-23T12:38:36.603Z\",\n \"modifiedDate\": \"1999-03-11T09:23:09.991Z\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ex43\": \"irure\"\n },\n {\n \"ut4\": \"elit fugiat occaecat\",\n \"eu__dd\": \"incididunt culpa deserunt consectetur\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"infd5\": \"dolore nulla\",\n \"nulla7ae\": \"Ut officia sed\"\n },\n {\n \"in_16\": \"sit ex in\",\n \"mollit_1\": \"ad ex dolor\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"2024-11-16T11:42:12.186Z\",\n \"modifiedDate\": \"1992-05-07T06:12:35.507Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed7f7c13-6a06-4128-9c0a-d3674c6b599b", + "id": "a671d3f5-252f-4d3d-bc25-5e6554255121", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91276,7 +91276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb47e15b-44e4-4bb8-8026-0bcd8a498312", + "id": "bef9b222-d178-4bca-a9a3-65e093645c66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91322,7 +91322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea15cf80-68c1-4255-8a14-de0bfeee1307", + "id": "2afdebd5-b70b-4819-906e-4434da692fcd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91368,7 +91368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2da93fd5-36a3-41fa-a5ac-28ec49595baa", + "id": "e267eb5d-eaad-4073-bfdb-7245885c0857", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91414,7 +91414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce081cd5-e319-4deb-b792-d2a87d1f85bc", + "id": "29cfcc9a-f780-4f5a-b34d-3489a5c902ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91466,7 +91466,7 @@ } }, { - "id": "b15bfdc0-fd7e-468c-b6f5-749ac117bfa1", + "id": "049ef6dd-ce7d-4db3-9b1d-614db16087c8", "name": "Update a potential role in session", "request": { "name": "Update a potential role in session", @@ -91532,7 +91532,7 @@ }, "response": [ { - "id": "18c41179-11a0-4833-9589-e87596c52f88", + "id": "f2b26ffb-e0f2-4b2e-bbad-3d0bff31d6da", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -91591,7 +91591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfbcd088-fe06-4992-b87e-1b490dfd2413", + "id": "febc3e26-ec15-4044-8fdd-e95634bb1b70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91650,7 +91650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5ecd3e1-33df-4113-92c0-de1dbf7133a2", + "id": "1c0bc3e2-26c1-4f8b-9156-6d0dfa7f0f01", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91709,7 +91709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd064689-fb87-4682-9361-35c3b1803d04", + "id": "05312846-a6ab-4f63-a793-ee9b052d66e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91768,7 +91768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad501ad-5a0c-4d4b-b1ca-71a25278ce07", + "id": "62046689-07ee-4d6f-abe7-ebacfa72840c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91827,7 +91827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f7942a-debb-4352-b10a-d22f25e601a9", + "id": "2c9853dd-b388-4d89-8a68-d89a792e6aa3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91886,7 +91886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2233efa0-f983-4617-ae31-bfb0b184e860", + "id": "9875a08c-7deb-4d41-8119-b7d1d4e07081", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91951,7 +91951,7 @@ } }, { - "id": "e9a96add-5667-451e-b61f-f4c40db72690", + "id": "c21f73d9-5f54-4808-98fb-99b88d4f014f", "name": "Retrieves the applications of a potential role for a role mining session", "request": { "name": "Retrieves the applications of a potential role for a role mining session", @@ -92042,7 +92042,7 @@ }, "response": [ { - "id": "792da531-fc75-4468-9059-6bdefddb0af3", + "id": "75177a6c-189a-4bef-9828-6d1358fc3cea", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -92121,12 +92121,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"consectetur tempor do fugiat\",\n \"name\": \"adipisicing sunt\"\n },\n {\n \"id\": \"labore do\",\n \"name\": \"sunt dolore amet\"\n }\n]", + "body": "[\n {\n \"id\": \"Ut\",\n \"name\": \"occaecat dolore amet tempor do\"\n },\n {\n \"id\": \"voluptate irure labore nulla\",\n \"name\": \"est consectetur dolor\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e551214a-d24d-4b50-8c5d-9c13d7e4f683", + "id": "6a9311ce-1664-42bb-8570-847ab48bd524", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92210,7 +92210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08e33a37-82ae-440c-9435-6e8c348d0b9a", + "id": "d50d933c-9d92-4f09-af15-6ba289fe7d06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92294,7 +92294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bed24fc-52f3-4af2-9e56-5e123193ab89", + "id": "c547fd13-c732-470e-ab2b-1f81661cc3c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92378,7 +92378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d13cdce-d900-4089-a23e-829d44d7d64d", + "id": "bf73462c-8dc9-496f-967e-004a9ebdb20d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92462,7 +92462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d95905a-81d7-4c3e-b513-fa4244ccea81", + "id": "eebf9ae6-e5dc-462e-844e-0820b58644ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92552,7 +92552,7 @@ } }, { - "id": "60ec311c-95b1-4a56-b626-b7fe7a75c707", + "id": "3e3cc064-ed83-4c7d-9c2e-3115e3dbff89", "name": "Retrieves the entitlements of a potential role for a role mining session", "request": { "name": "Retrieves the entitlements of a potential role for a role mining session", @@ -92643,7 +92643,7 @@ }, "response": [ { - "id": "989aaa02-2ca2-459a-a337-0a4d8b5437de", + "id": "ef60eead-95dc-4023-8971-4600eb6ad883", "name": "Succeeded. Returns the entitlements of a potential role for a role mining session.", "originalRequest": { "url": { @@ -92722,12 +92722,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"dolore anim sit cupidatat ea\",\n \"name\": \"dolore in laborum eu minim\"\n },\n {\n \"id\": \"reprehenderit\",\n \"name\": \"pariatur laboris fugiat enim\"\n }\n]", + "body": "[\n {\n \"id\": \"in dolor\",\n \"name\": \"nostrud sit culpa id cil\"\n },\n {\n \"id\": \"Duis sed\",\n \"name\": \"laboris ad quis\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "067ea16e-7aca-45b9-a35c-736c9f2202fb", + "id": "8a7e9c18-ccd0-43b6-96c0-ee97d497f6a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92811,7 +92811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58b90e5b-3b9e-4dc5-bbf0-3e0b2d4edc01", + "id": "bbfee989-ec03-42fa-a084-b233235247d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92895,7 +92895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f90df5e-0207-417b-b8f7-f0e0979e8f1c", + "id": "8459f76d-6076-4115-9c8f-65a3a99f0612", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92979,7 +92979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82b5d9c2-8953-4a17-822c-8c7586812e94", + "id": "cea07153-9a8e-4a25-967d-f5b7688b5430", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93063,7 +93063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd4bd131-7306-436b-a13e-180dc24c2deb", + "id": "531a276c-b84e-446e-bcb8-de7a77034003", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93153,7 +93153,7 @@ } }, { - "id": "5217fe6b-f2c9-490e-92ae-9948f80537ad", + "id": "d3c304ae-81f6-40db-9a02-880e8492618b", "name": "Retrieves entitlements for a potential role in a role mining session", "request": { "name": "Retrieves entitlements for a potential role in a role mining session", @@ -93262,7 +93262,7 @@ }, "response": [ { - "id": "6917fef3-9819-455c-86c2-febbad98f20d", + "id": "1739e187-48b7-4fc6-a58c-219943ff467b", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -93364,7 +93364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf59d0e-0180-43f7-8bf2-93063199501e", + "id": "8c424621-63d1-4978-abe9-3c33533a9ae4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93466,7 +93466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31e65561-ffd4-45ce-841d-f34150a78354", + "id": "b177e98b-d945-498b-886a-b28d98625de0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93568,7 +93568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c89ef5c9-f7bf-4bf9-ba3a-e349f5259a2c", + "id": "f4bc42d8-58f5-44d7-93ac-11a8aecbade9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93670,7 +93670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19332b55-a686-4b12-87d6-38ceb52ad495", + "id": "948ebb92-363a-4043-9b6a-2a3ad177ce9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93772,7 +93772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d134828-af43-43ee-9c6c-2aa4078640b2", + "id": "e770d866-c251-4592-9bc8-baa2a07cca6d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93880,7 +93880,7 @@ } }, { - "id": "cfca1d9a-6aae-4b91-b060-3edb13f7c44c", + "id": "2462240c-80ab-48e6-a876-5afca102eefa", "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", "request": { "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", @@ -93944,7 +93944,7 @@ }, "response": [ { - "id": "e3e7dac4-4aee-4302-9930-7e7c2b9a969b", + "id": "a3a71446-2547-4034-a965-091c526b74da", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -93996,12 +93996,12 @@ "value": "application/json" } ], - "body": "{\n \"aute_1\": -89288899,\n \"labore_c\": 47959285,\n \"sunt_9f\": -54077150,\n \"culpa_e8\": -68180747\n}", + "body": "{\n \"nisi_16\": -90003453,\n \"do_1\": 55366056,\n \"consecteturcc0\": 52230713,\n \"proidentb\": 86511232\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "79da0cb1-b548-4241-bca0-382d270f29cb", + "id": "ce639e1a-8014-49db-b074-4643505065f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94058,7 +94058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec2dbef-3551-4145-b3b1-5f28009aa522", + "id": "e18e4f7c-7625-4f7a-a5db-7f4bd1411e76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94115,7 +94115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b97009a-c896-45fa-bbe9-85314d946c5b", + "id": "583b8985-b9ba-43e1-bf79-7a7839b4b62f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94172,7 +94172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07569483-9297-46b0-9460-0819b14210e2", + "id": "6af4c37c-6162-43a0-b78e-3b7bcf6221ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94235,7 +94235,7 @@ } }, { - "id": "9db272ad-2a55-45b1-afd6-7ad23f0235c7", + "id": "8fc6fc2e-0c61-4f5d-bddf-6d3146fddbc2", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -94302,7 +94302,7 @@ }, "response": [ { - "id": "f44b0049-1af6-4910-a901-d8cc0317126a", + "id": "87d25b27-cf75-460d-ba43-dc0d058ff9e1", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -94357,12 +94357,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"elit8\": \"Lorem minim cillum sint qui\",\n \"ut9a9\": \"irure veniam dolore aute Lorem\",\n \"incididunt_c\": \"esse cillum dolore do\"\n },\n {\n \"laborum_d00\": \"ad officia ut consequat ipsum\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"Ute4\": \"Excepteur dolor anim\"\n },\n {\n \"sit_4\": \"ex nulla consequat dolore\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1959-09-23T12:38:36.603Z\",\n \"modifiedDate\": \"1999-03-11T09:23:09.991Z\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ex43\": \"irure\"\n },\n {\n \"ut4\": \"elit fugiat occaecat\",\n \"eu__dd\": \"incididunt culpa deserunt consectetur\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"infd5\": \"dolore nulla\",\n \"nulla7ae\": \"Ut officia sed\"\n },\n {\n \"in_16\": \"sit ex in\",\n \"mollit_1\": \"ad ex dolor\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"2024-11-16T11:42:12.186Z\",\n \"modifiedDate\": \"1992-05-07T06:12:35.507Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b9fb5b0-a25f-425f-9a83-82bb1d10daa5", + "id": "4e438b1e-e854-4462-8e47-729c991e6a97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94422,7 +94422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0856809e-a882-4bef-bdd1-243cd62ffb2d", + "id": "47ddbcff-e1fd-43ec-9922-2a45b6ab5078", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94482,7 +94482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "463e3e44-88c5-4995-abd0-95566ffa090f", + "id": "d3c8fdaa-be08-444c-904f-f9c605d45e64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94542,7 +94542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32307239-6fc6-4adb-ab45-b4ae129cb172", + "id": "5b2b6802-be17-4dd4-96b5-bfe79d17218b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94608,7 +94608,7 @@ } }, { - "id": "8e4b3ec9-b5dc-4e9b-969c-0b3b93d63dfa", + "id": "5c4e0a58-4b43-4301-8526-79da4425448d", "name": "Retrieves identities for a potential role in a role mining session", "request": { "name": "Retrieves identities for a potential role in a role mining session", @@ -94644,7 +94644,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -94708,7 +94708,7 @@ }, "response": [ { - "id": "d8a8e48a-0960-4fde-9388-319cadf8f7c8", + "id": "38b2d117-bb29-41c2-8c8c-bda68431c00d", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -94739,7 +94739,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -94801,7 +94801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25a4f5cd-2803-4ee9-9f8c-15ddc323152f", + "id": "60d5b987-f07c-4ef5-8abf-f37a5d8e0d38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94832,7 +94832,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -94894,7 +94894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66093d14-6a15-44e6-9189-b474eb47f692", + "id": "1617f7cc-28e6-47e2-82a4-812e67f6dfba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94925,7 +94925,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -94987,7 +94987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff78f13-80bf-4208-81d5-727a44c76000", + "id": "bec9334b-a9a5-4287-8fda-a5db402ad510", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95018,7 +95018,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -95080,7 +95080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e99561e4-b7e7-49b5-b6ce-9de4a8f46ef9", + "id": "70d223fc-418a-4af9-bd2e-e55eeb720395", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95111,7 +95111,7 @@ "type": "text/plain" }, "key": "filters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -95179,7 +95179,7 @@ } }, { - "id": "fa0d00b9-fe50-4fd1-8319-91d0684cc54e", + "id": "9923348c-33f1-4e09-8f9c-7507306eb028", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -95233,7 +95233,7 @@ }, "response": [ { - "id": "c68411e8-2c5e-4c75-aa12-e281cfb3a545", + "id": "c2941b18-2a99-4069-86e1-cccfedd5a0b1", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -95275,12 +95275,12 @@ "value": "application/zip" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "1a24206d-ddba-464a-9460-9f537ffd3780", + "id": "1702b72d-2f0f-465b-b6a1-beaf92e1148a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95327,7 +95327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a643e40e-28d2-4200-97a7-c82ca61d2508", + "id": "43d21fcf-66de-4da1-8c30-51aeaf7bc173", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95374,7 +95374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd209eb4-2d63-43ec-9b6a-c6abe030f895", + "id": "2f2d2493-8345-4b54-b874-1bc3830c58f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95421,7 +95421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "968fd15f-2629-43f2-a130-a5239c8ba893", + "id": "22cd628e-7068-4896-baa0-b2d00da4a0f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95474,7 +95474,7 @@ } }, { - "id": "fa271761-a7db-4616-8c13-6c50e39802dc", + "id": "66d47600-e737-4f0e-b0c2-b1213bd0a9d5", "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", "request": { "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", @@ -95541,7 +95541,7 @@ }, "response": [ { - "id": "62707ea1-2fea-43d2-9b44-47a138e9eb02", + "id": "7e5d2ef6-5902-4447-a014-e0ef074e9489", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -95601,7 +95601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfd1ada0-3b3c-4e30-8453-5f7df0a6508d", + "id": "560856eb-a293-4a5d-bfaf-b17b9bedc9b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95661,7 +95661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b540be3e-f50e-451a-82dc-cfa230a66646", + "id": "02836e28-4599-4d7e-8ccf-4b16a941e070", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95721,7 +95721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e03e7c82-3f71-499a-84ae-81f2d5820296", + "id": "bf440751-13ac-4733-940c-b7baf393b265", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95781,7 +95781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b31d8913-4f8b-4c37-b1cb-d124a0188d13", + "id": "92a4a412-ed47-42cf-bf72-ab346e7b9231", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95847,7 +95847,7 @@ } }, { - "id": "a1fb0fea-aa8f-436d-8ec4-39687a1779fe", + "id": "3d9ac7fc-a040-4aef-a9f5-06d7595acd4d", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -95912,7 +95912,7 @@ }, "response": [ { - "id": "27836c78-024b-49cd-8065-a20cf1d1aa69", + "id": "b7027518-af36-4dbd-b1cc-2d7316cb1ac4", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -95960,7 +95960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0217326e-48de-4756-a7f6-eb6eaa619d6f", + "id": "fd858514-57ba-4eac-9b5f-bf15921e02d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96008,7 +96008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92de6db4-7f12-4462-9003-c9f428fbe854", + "id": "c233eb41-6db6-42e8-9eac-f15119e14cd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96056,7 +96056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ac0ab2f-1afa-4512-ac7f-e82182c4cdc9", + "id": "f55c5b59-45a4-42c2-b34c-af266263e104", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96104,7 +96104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e9ba02-43c4-4185-b885-321ee8db60f6", + "id": "58933d5d-80ec-4347-b90b-0a79bdf9842e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96158,7 +96158,7 @@ } }, { - "id": "65e679c8-d99d-41c3-9c93-d709a87cc085", + "id": "1356be62-de7d-4020-8fec-2f2d0ca18a3d", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -96224,7 +96224,7 @@ }, "response": [ { - "id": "054e237a-7190-4114-bb2b-41be47a3966b", + "id": "474dd43a-a505-484b-b52f-aacef52ceac5", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -96268,12 +96268,12 @@ "value": "application/zip" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "02d33db8-f1b6-4c5d-a18c-48fed48f8695", + "id": "078dc28b-3f12-4fc5-94be-092b0d77a16d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96322,7 +96322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5da3f144-4f5f-4479-ade9-b4865a882e27", + "id": "4333d9b0-26d4-4edb-908b-a230a1cae9fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96371,7 +96371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f5e413-5095-443f-bc22-aef447a82650", + "id": "91673afd-dbe7-40e0-8989-727d9766a1f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96420,7 +96420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e7c5b3-7ef0-4870-87e1-efecf8738ce7", + "id": "de4aef09-260c-4f81-8472-879424baecc7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96475,7 +96475,7 @@ } }, { - "id": "f89ef38d-545a-4388-92b9-aba9570b6d79", + "id": "cee90195-b8f6-47c5-a1a7-80e05edf35a7", "name": "Create request to provision a potential role into an actual role.", "request": { "name": "Create request to provision a potential role into an actual role.", @@ -96561,7 +96561,7 @@ }, "response": [ { - "id": "56a44b32-194f-496b-935a-1fe361b050ae", + "id": "cf9bd304-22a6-4cea-af61-f53319924238", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -96635,12 +96635,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2024-07-12T17:09:26.438Z\",\n \"saved\": true,\n \"description\": \"ullamco quis\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n}", + "body": "{\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1979-12-18T14:07:06.253Z\",\n \"saved\": true,\n \"description\": \"sint est dolor cupidatat\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad96a634-3654-40b6-9812-797623048957", + "id": "aa933774-ce78-447f-b14f-728b2a147c70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96719,7 +96719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31c42993-6e97-4ead-95e6-3ab59b30f818", + "id": "f4dc5479-c869-4377-a407-ab72b4b828f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96798,7 +96798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d06061fd-d6b3-43ba-a38a-99e969fbc19c", + "id": "d9c88ade-3bae-494a-9213-c88e3a6ca1ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96877,7 +96877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "270da784-4585-4a68-b132-3425d6b5f499", + "id": "028d65e9-5b25-4c9f-b6d5-c083d5e49495", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96956,7 +96956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "413c5e2d-951b-451c-8b9a-e7d966208e2f", + "id": "1d544c5c-c292-4789-8886-87dad9879d8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97041,7 +97041,7 @@ } }, { - "id": "98058c9d-1223-4d87-acc8-0d0c0c6156f8", + "id": "0a94226b-fb80-4a6b-9bdc-936a9fd48713", "name": "Retrieves excluded entitlements for a potential role in a role mining session", "request": { "name": "Retrieves excluded entitlements for a potential role in a role mining session", @@ -97141,7 +97141,7 @@ }, "response": [ { - "id": "58847aaa-e794-4b63-9f6a-607c676cb216", + "id": "8d1b9b06-ab36-4043-885e-900fa0ed534e", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -97234,7 +97234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd0235e3-ad25-48bc-b7df-6565ab99ab8d", + "id": "912afbb4-76d8-4616-842a-963c8ad9710a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97327,7 +97327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ac6c8c-c64d-45c7-a914-86ba43c25e76", + "id": "299e435e-16a6-4bb2-aa16-46b674d24e22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97420,7 +97420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8a5c50f-8a18-4677-8eeb-e95ff7e8482b", + "id": "80b270f9-0950-47a7-9787-356c72a07ee8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97513,7 +97513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eee5415b-3a58-48c4-a652-b7566790131d", + "id": "94815723-52e4-4280-895d-10b9ded89b3f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97612,7 +97612,7 @@ } }, { - "id": "6f84a809-7f1c-4a5c-8fb5-e59a49c69134", + "id": "65998176-8ab1-4ebf-9362-3612df3baedf", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -97687,7 +97687,7 @@ }, "response": [ { - "id": "5b6835e0-093b-4825-ae5f-fef722cda8a8", + "id": "28cdc927-58e7-4f53-b706-bad5245cdb1a", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -97771,12 +97771,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2001-08-17T16:04:45.682Z\",\n \"saved\": true,\n \"description\": \"esse exercitation\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1945-07-20T10:46:04.928Z\",\n \"saved\": true,\n \"description\": \"minim cillum sunt\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1961-06-15T09:53:26.393Z\",\n \"saved\": true,\n \"description\": \"est nulla veniam occaecat nisi\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2012-01-17T16:27:12.977Z\",\n \"saved\": true,\n \"description\": \"dolor adipisicing dolore in\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1e5be8b-eb9e-46c8-b0d3-f3d8b825baee", + "id": "b877f7a8-cfd4-43fa-bb25-39b984d5b304", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97865,7 +97865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3499f0e4-e6f0-4667-af3e-f40ba6e68a3e", + "id": "8484e158-cd47-4faa-b71f-27eafad7c974", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97954,7 +97954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f12c15be-ccec-4ae7-b78b-e9d4b1697513", + "id": "43bf4e30-f9d0-4035-8331-96e64273d7a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98043,7 +98043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f44711-3c9b-40c7-9ea6-66ced3a2bf7f", + "id": "ed6264d2-3f74-44eb-9b2d-2768d6dec0a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98132,7 +98132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94bdf5b4-c29f-456d-8233-398487c962dd", + "id": "f675868f-eaf2-4a60-87f6-dfeaab0d3fd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98227,7 +98227,7 @@ } }, { - "id": "ccdd785a-f3b7-4af2-b9f9-53f82eec78e4", + "id": "146ceb4c-197d-429a-b94a-f7d171dcb7b3", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -98268,7 +98268,7 @@ }, "response": [ { - "id": "b3ef47b4-015f-4458-b6e1-1ca7b3cd751a", + "id": "d662a708-1ffe-4d93-a013-4807c2450f47", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -98307,12 +98307,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"elit8\": \"Lorem minim cillum sint qui\",\n \"ut9a9\": \"irure veniam dolore aute Lorem\",\n \"incididunt_c\": \"esse cillum dolore do\"\n },\n {\n \"laborum_d00\": \"ad officia ut consequat ipsum\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"Ute4\": \"Excepteur dolor anim\"\n },\n {\n \"sit_4\": \"ex nulla consequat dolore\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1959-09-23T12:38:36.603Z\",\n \"modifiedDate\": \"1999-03-11T09:23:09.991Z\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ex43\": \"irure\"\n },\n {\n \"ut4\": \"elit fugiat occaecat\",\n \"eu__dd\": \"incididunt culpa deserunt consectetur\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"infd5\": \"dolore nulla\",\n \"nulla7ae\": \"Ut officia sed\"\n },\n {\n \"in_16\": \"sit ex in\",\n \"mollit_1\": \"ad ex dolor\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"2024-11-16T11:42:12.186Z\",\n \"modifiedDate\": \"1992-05-07T06:12:35.507Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1aace966-131e-4e50-beac-42b999da6526", + "id": "953d402f-ec81-41ca-b662-45ac3233730e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98356,7 +98356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d07a9ef-0540-4810-9a26-d517a27259f1", + "id": "6ac5bc88-b609-4e36-8d3c-f90fee81b8a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98400,7 +98400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cfff8fe-de25-4557-ac16-b0c07535d8ea", + "id": "c222645a-33cc-44cb-bc94-9d63942487ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98444,7 +98444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb82d1d-e030-4f09-90de-33268a62ff6c", + "id": "fb7c8c9d-0c31-4ed6-b135-bf946009123c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98488,7 +98488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75072dfc-e5e8-404b-ae87-39b04a54dfc3", + "id": "8d878fc7-a16b-48e6-965b-6fc1fd3d7b8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98538,7 +98538,7 @@ } }, { - "id": "db3373a9-2eb6-4a38-a34c-2e965f4da020", + "id": "ec1e873c-4b3e-43d6-9be3-e46d5565104d", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -98592,7 +98592,7 @@ }, "response": [ { - "id": "266d1267-2caf-438f-8673-6fccffeb7ee2", + "id": "74f108c8-6965-4b4d-8ef3-4c802b960a59", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -98649,7 +98649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63932a29-e4e8-4555-acb6-8b7891b8e77d", + "id": "75055809-fcd8-42a2-a256-0d3462054225", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98706,7 +98706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20830ed8-68b2-409e-8310-46d4cb4b4c2b", + "id": "0e7e2c85-b876-4330-b576-23d07705cd85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98763,7 +98763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "849bc6b3-5b58-4216-ba72-5b93cab21eda", + "id": "46556575-5c7f-4cf7-8b89-3f749ca6dc45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98820,7 +98820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b78125c7-3f58-4bf8-ac37-8881ef1711bf", + "id": "830993c3-022c-4046-9f18-8af201ad61f9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98877,7 +98877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8521f606-d14b-4f93-a3ab-e80479d18a5e", + "id": "dc5d7a71-c39a-4300-a217-553c28bca195", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98934,7 +98934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebc44bd7-4725-4388-a68d-16cf58a8e6df", + "id": "d8a5c056-f019-4bb4-945b-1ee7aefd8903", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98997,7 +98997,7 @@ } }, { - "id": "90553eb8-f14d-4885-96ce-799473b79a66", + "id": "fa48d3a6-158f-47dc-bb4c-6badfda7c450", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -99064,7 +99064,7 @@ }, "response": [ { - "id": "3ebe8682-c089-442b-a8fc-929cbc5e1e02", + "id": "9f3e350e-6806-4df1-83ee-c1d3e4b468ba", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -99140,12 +99140,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1978-11-27T05:32:34.556Z\",\n \"modifiedDate\": \"1982-05-19T00:05:09.177Z\"\n },\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1975-02-23T14:49:25.787Z\",\n \"modifiedDate\": \"1947-11-15T07:51:51.073Z\"\n }\n]", + "body": "[\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"2021-05-22T23:57:43.810Z\",\n \"modifiedDate\": \"1997-02-02T14:21:51.366Z\"\n },\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1988-03-08T17:13:50.831Z\",\n \"modifiedDate\": \"1973-01-24T22:43:37.081Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8464f1f7-8286-4466-b5b1-267b408b2fe5", + "id": "7e3c3523-908f-4af9-8279-7192e1d7d9b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99226,7 +99226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5b46734-a28e-4fb1-9a08-7ad8405e816d", + "id": "be6fd1a5-20b4-4a70-904c-88cc9bbd294d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99307,7 +99307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6903101b-0496-48cb-80ea-a8cbc91c363f", + "id": "5ff647b6-0e81-41c2-a74f-5b2f8e9999de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99388,7 +99388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daf78718-b5c7-482b-84d7-3f108abaed3b", + "id": "ca9b2281-aab7-4b77-812d-80c2e44fe67b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99469,7 +99469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a770391f-2a04-40e8-bcdc-0d8e42cea750", + "id": "ce3cdb29-8634-4f9d-af7d-a02eae59d6c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99556,7 +99556,7 @@ } }, { - "id": "3db15fff-e91e-49a9-9ae2-8af4b3d00772", + "id": "9c15beb2-080b-413f-9875-9bea09b29b7d", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -99647,7 +99647,7 @@ }, "response": [ { - "id": "e0e495cf-2df8-4d75-9a54-aba863c39a5c", + "id": "9ca256d5-9ad9-4911-b382-a26760fafcd1", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -99731,7 +99731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ded194b-c975-4904-839c-3c7cd290aa3f", + "id": "daab697d-1486-4b38-b283-ad9d023a392b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99815,7 +99815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9977b071-19ac-4c0a-abba-156c20c1367b", + "id": "02dad9f5-4b73-4ecd-825f-5110e9e6b7b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99899,7 +99899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "134d260a-a583-4f6e-a29f-cf58a2c62454", + "id": "83ee1f59-be04-41aa-8506-a16c1b493540", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99983,7 +99983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ca98958-c58c-4834-b269-8dee339eab0c", + "id": "2f1aea6d-8e71-426a-be67-068a19c4e5d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100067,7 +100067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4105a38-12a0-412c-90a6-3ac8649619e6", + "id": "7b41d177-188a-4fcd-b769-afea838ac4ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100163,7 +100163,7 @@ "description": "Use this API to implement functionality related to object icons (application icons for example). \nWith this functionality in place, administrators can set or remove an icon for specific object type for use throughout Identity Security Cloud.\n", "item": [ { - "id": "b88963c5-4431-46e7-b751-62c104242dcf", + "id": "7367a007-c02c-4346-a696-764200fe5b23", "name": "Update an icon", "request": { "name": "Update an icon", @@ -100231,7 +100231,7 @@ }, "response": [ { - "id": "51a9ba0e-76cd-4213-9cf6-dea0e412d178", + "id": "5a1b6675-e53b-4779-8daa-c80343cd3763", "name": "Icon updated", "originalRequest": { "url": { @@ -100292,7 +100292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b842ddd8-e1a1-48e7-a96d-83a7ad0705e5", + "id": "a22b01d8-e26f-48f4-9fce-d1f520d2cbe7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100353,7 +100353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37e2d63-3947-4247-ae0b-4132659603bc", + "id": "25cc1543-f668-4f86-805d-3c80c11f6c0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100414,7 +100414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2d4ded7-e844-4222-bba9-fa2b75e4e54b", + "id": "2ed4acda-cc5f-49db-a208-33ec2c2f36f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100475,7 +100475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e51461b9-b0e3-48ae-97ea-d3401d37b357", + "id": "f2b867ff-23de-444e-aefd-fd4364eb3d2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100536,7 +100536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e2b0ea0-874d-4cdf-addc-584afe1dde2f", + "id": "454fe49c-f975-4f9b-8040-a622a4d3725e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100597,7 +100597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2177bbc0-b7e5-47e6-9cca-e38bef09f6f8", + "id": "c9be6b5b-eaec-495e-b6bc-b40a91339bb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100664,7 +100664,7 @@ } }, { - "id": "a88273e0-a043-4c78-a833-0744f4667fb6", + "id": "b7c3a1e5-ad15-4a7a-8994-5b14929c6b8f", "name": "Delete an icon", "request": { "name": "Delete an icon", @@ -100716,7 +100716,7 @@ }, "response": [ { - "id": "ecf09739-e9d4-4e75-b5ef-082002cd76bb", + "id": "db645420-a5e6-4b90-aee8-c7268a11c503", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -100751,7 +100751,7 @@ "_postman_previewlanguage": "text" }, { - "id": "08cc9bba-fed9-4741-9b10-3880a34f7523", + "id": "7516b7af-b428-477b-9c2c-20335060737f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100796,7 +100796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d795f897-09c0-4818-bd15-3c78df0520e9", + "id": "6894ec48-4333-4c41-9f34-1f9c43500ee9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100841,7 +100841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ded3a996-e842-4d07-a72c-712bc886bfe9", + "id": "f08b0a72-b140-4c6e-bf28-f47b1435fbd1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100886,7 +100886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf943bd8-4f6f-4494-a110-3c7f8d6216fa", + "id": "c51aed0e-4631-4797-91e7-321e6d57e536", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -100931,7 +100931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29db3f91-3d66-414f-a880-9c26ef69c83b", + "id": "d2887582-17ff-448b-acfb-578a9ef04971", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100976,7 +100976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5c82b55-4dde-4a24-b9f4-031745037998", + "id": "4b1848e6-2d66-45a5-896b-5c8291e5d97b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101033,7 +101033,7 @@ "description": "Use this API to implement identity functionality.\nWith this functionality in place, administrators can synchronize an identity's attributes with its various source attributes.\n\nIdentity Security Cloud uses identities as users' authoritative accounts. Identities can own other accounts, entitlements, and attributes.\n\nAn identity has a variety of attributes, such as an account name, an email address, a job title, and more.\nThese identity attributes can be correlated with different attributes on different sources.\nFor example, the identity John.Smith can own an account in the GitHub source with the account name John-Smith-Org, and Identity Security Cloud knows they are the same person with the same access and attributes.\n\nIn Identity Security Cloud, administrators often set up these synchronizations to get triggered automatically with a change or to run on a schedule.\nTo manually synchronize attributes for an identity, administrators can use the Identities drop-down menu and select Identity List to view the list of identities.\nThey can then select the identity they want to manually synchronize and use the hamburger menu to select 'Synchronize Attributes.'\nDoing so immediately begins the attribute synchronization and analyzes all accounts for the selected identity.\n\nRefer to [Synchronizing Attributes](https://documentation.sailpoint.com/saas/help/provisioning/attr_sync.html) for more information about synchronizing attributes.\n", "item": [ { - "id": "892dc513-913b-4812-9e8d-e3d55e025cad", + "id": "acbca118-9f5b-4f48-b899-a379e7e03643", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -101054,7 +101054,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "identityId", "disabled": true, "description": { @@ -101075,7 +101075,7 @@ }, "response": [ { - "id": "06792d5d-0d4f-4787-bf68-0265534fee14", + "id": "22444dc4-5f77-4f45-94f7-80af48c200ed", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -101120,7 +101120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ac48474-63c6-4d12-b979-e9f7aeaa884b", + "id": "5f66d305-9d1f-41c9-961d-d0309bfd715c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101165,7 +101165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a53129-8cde-4cc8-a970-560e9d574107", + "id": "7edfe836-91f6-48f8-a83b-2d3422255a13", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101210,7 +101210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96c9f0b2-5bfa-4316-8076-68bc2d4ef455", + "id": "689bb6df-3be1-4a1f-b70a-945116dc3c4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101255,7 +101255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff37b8e0-c984-4713-9ade-401370dd8baf", + "id": "e04cc511-a32b-48ee-b09e-d9518f22fc9f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101300,7 +101300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d521b42b-5b5b-4ff3-8ddd-cc2003357201", + "id": "3510259e-99b6-44ad-8d7a-79ba9a548caf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101345,7 +101345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d293d361-cda1-4e4d-82e9-88548b3c2ee6", + "id": "3f4d8757-7d8a-4c22-b526-4488497b0377", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101396,7 +101396,7 @@ } }, { - "id": "0513a65a-8df5-4f55-9d05-5b0e5ae7c89d", + "id": "86c9a0b4-0f55-49fd-931b-a405db3c8a56", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -101438,7 +101438,7 @@ }, "response": [ { - "id": "84f350c9-2278-4962-9834-ed24dbf5b684", + "id": "982c6543-ccb7-4c80-b17a-e91046a42cef", "name": "Identity's ownership association details.", "originalRequest": { "url": { @@ -101483,7 +101483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85cd8541-05cb-4a89-b5ed-d9cabd278db6", + "id": "9f34e28f-582f-4c62-a32c-b57e246b6c99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101528,7 +101528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c14ae62f-d75f-4be7-abf0-40b8733a2770", + "id": "330e7c20-a6bf-401b-a63d-366510647680", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101573,7 +101573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41180f47-3789-48f8-ad93-0e8392553bef", + "id": "29bd3d32-1b5b-4f31-abf0-ace654547f11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101618,7 +101618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e09ec709-c8ba-431e-ab20-a1c983553c66", + "id": "f9a44a41-ead3-47a4-b99d-e426f6726947", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101663,7 +101663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae9b36eb-4ad1-46b1-bb5f-c70e6f99ac1f", + "id": "743d4391-22ab-4156-8a5e-31fa22bacab4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101708,7 +101708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64215a75-ac3f-46d4-a92a-c0dadfe62c69", + "id": "962c8a7d-e08f-4d26-8330-cb3fc46c1a09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101759,7 +101759,7 @@ } }, { - "id": "21cede47-9773-40a1-b776-4676c7c8871c", + "id": "b8282259-6f20-4ae3-a487-76e68b451aa3", "name": "List Identities", "request": { "name": "List Identities", @@ -101843,7 +101843,7 @@ }, "response": [ { - "id": "f52ea75a-b9e4-4ad4-91d2-2f83df7adeae", + "id": "bd807c5c-a6d7-43fc-b2e1-be42149c6f3a", "name": "List of identities.", "originalRequest": { "url": { @@ -101941,7 +101941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa5c2389-2ff3-4c1c-9e44-4aa9e3a316cd", + "id": "cc28dfa2-e1c1-4756-8b1f-f3460cb000d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102039,7 +102039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "476bdbc7-8002-4cb2-8bf8-bba211cb7bae", + "id": "8e2aad17-03e9-4ab0-a0a2-a9938448ae04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102137,7 +102137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4098da61-9b17-4682-8d80-f76380ecf27f", + "id": "a03d56fb-ecb6-4f51-81dc-22478dc45082", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102235,7 +102235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f80a08a-bce9-4229-8316-5bf008425125", + "id": "091940bf-d2c1-46d3-a93b-9959518824bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102333,7 +102333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e3a4e3-dad0-41b2-a4e7-e8e7b1c0f439", + "id": "cb1c3967-51dc-4342-9a18-6bdf4354fcbd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102437,7 +102437,7 @@ } }, { - "id": "36763d1a-4961-4cfa-9913-eb69493b5db3", + "id": "8aebfd89-1c2f-4cd1-961c-6b7ddd899563", "name": "Identity Details", "request": { "name": "Identity Details", @@ -102478,7 +102478,7 @@ }, "response": [ { - "id": "4502d0b7-040f-42ff-bc5f-1542629f34bb", + "id": "be49f5e6-a63f-41ea-a87b-8de7ca3ed68a", "name": "An identity object", "originalRequest": { "url": { @@ -102522,7 +102522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b23a2e9e-a730-4799-bd92-78b094b9a7d6", + "id": "0f7c4b1f-9359-466c-92d1-45204c87aae8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102566,7 +102566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a59d0bc9-7755-48a9-a31b-76095c6e9e5d", + "id": "b1c15678-0f8b-4955-9c50-8bb293c4a7b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102610,7 +102610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c736a54-aea2-43c2-831b-1da661e3fc87", + "id": "679d2263-a033-427f-8dde-be82108494b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102654,7 +102654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "387c9314-a333-4918-aea1-4c14c11aaff6", + "id": "4563370c-ec67-45af-af0a-4dca7582b0de", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -102698,7 +102698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "727d884e-8553-4e88-a879-848537e953e0", + "id": "1deeed3d-5075-460a-a4dc-e8286f98b3c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102742,7 +102742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ecf3de9-5171-4f59-b8e0-a45920f28b29", + "id": "09655e68-b743-41d9-9366-f1dbc4a63b99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102792,7 +102792,7 @@ } }, { - "id": "2aa48f71-228b-43ed-8212-7671abcc91f5", + "id": "3e27ea4f-6672-479e-be8c-8d50d6baea20", "name": "Delete identity", "request": { "name": "Delete identity", @@ -102833,7 +102833,7 @@ }, "response": [ { - "id": "8d4fe458-947c-48bf-acd6-cafb2bac36e1", + "id": "ec2ad783-28be-4a05-93a1-26191be96044", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -102867,7 +102867,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d471c936-da8d-4e73-a9ab-5406aa02dd0b", + "id": "01e9f43c-a92b-4122-8f69-6c467f54b0ef", "name": "Client Error - Returned if the request is invalid. It may indicate that the specified identity is marked as protected and cannot be deleted.", "originalRequest": { "url": { @@ -102911,7 +102911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e05677b4-8dae-4035-b9be-dd80bc2d2aea", + "id": "a4c33eee-9099-4568-8bee-69b0de4d2387", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102955,7 +102955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbcecdc6-aaa2-4935-8067-8ef013605389", + "id": "0464c5da-f4d0-427b-af7e-2c8784af09d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102999,7 +102999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79cf241b-736c-4d66-8c65-7907cfae31f3", + "id": "bf470967-63f5-4019-afed-5763cc5a558d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103043,7 +103043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ff2c441-ba73-40a8-ae6a-db2c96a2350c", + "id": "2a19d8a1-ee79-427b-a3ce-8111cc4ec69b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103087,7 +103087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94e5725d-1aa7-4a77-ac73-354606bbfa3f", + "id": "49382b9d-84c2-4f2a-8d96-dfae7cc6b9de", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103137,7 +103137,7 @@ } }, { - "id": "cbc2e8af-cbef-45b0-969d-2f523ffbac33", + "id": "17efe701-b28a-4d4f-9a4d-015837c5f4fe", "name": "Invite identities to register", "request": { "name": "Invite identities to register", @@ -103180,7 +103180,7 @@ }, "response": [ { - "id": "514d55f2-3b0a-427e-be6e-bd18d4c3cdd8", + "id": "3e0dbba0-9c13-440c-bce4-51720ba72043", "name": "Responds with an initial TaskStatus for the executed task", "originalRequest": { "url": { @@ -103232,12 +103232,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"tempor_30d\": -30375944.08349693,\n \"quifc\": -12428373.75241366,\n \"in_a\": true,\n \"Duis_b04\": 43123207.69429344\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"in_5\": -69096202.74537049,\n \"esse0\": -48477855,\n \"nulla5\": -24670544.026133046\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "14c8fefb-f6e3-4cf7-8b70-4046601ddb48", + "id": "2da1b195-e916-4ff1-a8c0-ec90407edb61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103294,7 +103294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e80c5d1-ef71-4d57-86b2-783d17d26076", + "id": "08ac65c5-278b-4bf5-9377-b929a225711e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103351,7 +103351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c347d656-6eed-4a47-9243-9a808bb550e9", + "id": "11a5ad82-a01d-4338-975b-f088636bddef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103408,7 +103408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c45744e3-e729-4db9-9798-0583b75ec65d", + "id": "ca3942f9-62e6-4746-9aa5-889dda20e680", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103465,7 +103465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57b1bb04-4d4c-43bd-82ab-c9b8be3df5b1", + "id": "2d1340bd-0958-48c8-a5b2-19ff43b04812", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103522,7 +103522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d29b4548-f055-4276-9794-7e1677d50099", + "id": "e6ae6b98-24b9-47fc-b3e5-28834b7f5090", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103585,7 +103585,7 @@ } }, { - "id": "b1b419a3-e3ae-4e69-9e27-a2a20bd8141f", + "id": "7e742d3e-820c-47bc-ba57-82132e2c8373", "name": "Send password reset email", "request": { "name": "Send password reset email", @@ -103636,7 +103636,7 @@ }, "response": [ { - "id": "26a6ddaf-f3ce-4715-bda6-8a989eb363b4", + "id": "303e8205-7c40-442d-a9d4-1eb893cd421b", "name": "The email was successfully sent", "originalRequest": { "url": { @@ -103686,7 +103686,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6c289596-fb39-40dd-ad34-7eb681ab2fe6", + "id": "d986183c-a6c0-45c9-9120-3797b7d2d916", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103746,7 +103746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5abeaae6-bc2d-4810-93f7-802039efef15", + "id": "ee8d78b7-e0b0-4e19-9d02-704a809b7fc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103806,7 +103806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db8261f0-dff3-4489-b57e-096f7b21966c", + "id": "19e2275a-b182-473d-b018-dcd0b643dbe3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103866,7 +103866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9abea4b-d7be-4a6c-b258-271176fff81a", + "id": "984af5f9-4f2a-4ab6-8d70-c71b40cba16d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103926,7 +103926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff892160-d6e7-4960-b5a1-1f660c2e9353", + "id": "96dc8599-ac3c-44dc-b459-78465ebdf8aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103986,7 +103986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d77fae8-41d0-4cae-be42-2e47366ce254", + "id": "4fe4ec19-2682-4c86-a196-270861d7b98e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104052,7 +104052,7 @@ } }, { - "id": "e26addd6-c604-42b6-ad90-6da7666d4dd9", + "id": "66c62e56-5f6f-4af9-ae1f-38bbc8aa292a", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -104095,7 +104095,7 @@ }, "response": [ { - "id": "6fe99890-acfe-4ff2-9504-197b50b896ba", + "id": "cbb1506d-9d14-4f80-8d5e-ece225a39989", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -104152,7 +104152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b10e3a-d1e8-43fd-900e-b9bfea673b34", + "id": "cb4031c7-d77b-477f-bf91-813c29b5061a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104209,7 +104209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a3d95ea-7025-4fa0-a53b-c25d83cf09be", + "id": "d6937458-464b-4891-b62d-8e9f40f8923a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104266,7 +104266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14c55a38-0411-4e23-8d16-c63ebfcb6a48", + "id": "74eee75c-24b1-4e1c-be53-d2acd2db0cec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104323,7 +104323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e551e1a9-b68d-42b1-9df1-943c9feae549", + "id": "f0511856-e05e-4fdf-9c52-4aca65342b3a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104380,7 +104380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e25ba6c3-42a9-4cb3-9348-668d5da9f886", + "id": "e0d78352-dcfe-491e-bff8-46c0e7dfb474", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104437,7 +104437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42a9e105-ae42-4c19-82d9-488adc50d87f", + "id": "18130d73-af4a-4e60-b3ba-b9e7b155585b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104500,7 +104500,7 @@ } }, { - "id": "ecea0d51-6cca-4b33-babf-fabec04fbf36", + "id": "ae94a2cc-558a-40a1-a879-5dacbe9f1a13", "name": "Reset an identity", "request": { "name": "Reset an identity", @@ -104546,7 +104546,7 @@ }, "response": [ { - "id": "23bdc451-d741-44f8-a088-ad10a6cd78c3", + "id": "be46816b-c05c-4762-8fb8-a3b34567cd51", "name": "Accepted. The reset request accepted and is in progress.", "originalRequest": { "url": { @@ -104581,7 +104581,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9675b57a-7f03-43d8-b8be-d26793932324", + "id": "365f9c8a-9cde-4481-812b-963addfc3993", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104626,7 +104626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d84e33f0-c8fb-4fd1-a6c0-7f6adb3b0a61", + "id": "f70ad257-2a9f-4d18-b3af-36437931f20d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104671,7 +104671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a1eb02-134d-40cd-8745-4f3459ec26b4", + "id": "c9cffbba-9ffc-4b4b-bff5-2cafa9d4e889", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104716,7 +104716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b6998e9-6aa1-4d60-b8d3-8ed06a01da0d", + "id": "3793b8c5-1a19-4038-8b03-b3851e5ce4ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -104761,7 +104761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e7e0c8-1faf-42e0-8c2b-0e675a8f9174", + "id": "18dbe477-679e-41bd-ad99-68120a552d95", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104806,7 +104806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a12e415c-99fa-40e5-93f3-326a065eb0ba", + "id": "26f7bfeb-1280-4a5e-8a7d-7106c867b218", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104857,7 +104857,7 @@ } }, { - "id": "c3824f62-da53-44a0-97e4-905772f02367", + "id": "d35b34c5-e24e-4af1-afe1-96e4ad587c70", "name": "List role assignments", "request": { "name": "List role assignments", @@ -104918,7 +104918,7 @@ }, "response": [ { - "id": "e0be4707-731a-40aa-ad5e-4fb93f5f1f2e", + "id": "e63e67e5-4408-47d5-953b-825a6b11a3b2", "name": "A role assignment object", "originalRequest": { "url": { @@ -104982,7 +104982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04ce0392-b920-4484-83e2-9fc23a046f33", + "id": "e766f271-cec6-4940-b684-a9c9677974c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105046,7 +105046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf2e903a-2e63-45fe-9a1e-0a43855845cd", + "id": "243d77a0-d9ef-4e30-90fa-52b7c67752b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105110,7 +105110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af37497-e27a-4e0a-9e21-0dbd56f22451", + "id": "282be8d9-b462-4d0d-8b9f-dd16b91698ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105174,7 +105174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d6738b9-6d37-4dff-be6d-ce1fabceeecd", + "id": "9878029f-db0d-4caf-98e7-a088364b90c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105238,7 +105238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe6e2ecf-1afb-42c3-828c-1b8378b62577", + "id": "b94016a0-e894-4417-9085-648e412ffe87", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105302,7 +105302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad60c3dc-bc38-4871-b82f-ef6080da21e8", + "id": "4ff9c896-f3e2-4d9f-988c-52f7839c0786", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105372,7 +105372,7 @@ } }, { - "id": "70872a1f-15f4-4151-9b5e-274bccfcdf0f", + "id": "ebc76f71-903d-40dd-9e98-d9c2d644b69c", "name": "Role assignment details", "request": { "name": "Role assignment details", @@ -105422,7 +105422,7 @@ }, "response": [ { - "id": "2a8daee4-95f1-4cc4-9eaf-24333e00c6a2", + "id": "acc143d0-3e90-4b49-9cec-0bccc09da636", "name": "A role assignment object", "originalRequest": { "url": { @@ -105468,7 +105468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ab3350e-2432-4ef9-9efa-95a89fb78b0f", + "id": "aa99233b-cc52-413a-acb9-64609ebf75ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105514,7 +105514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e29b41b1-9f48-454a-a9e5-2d27e1c778ac", + "id": "b4525204-07d4-446d-9f5e-0cefa82b2c4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105560,7 +105560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd22f370-d83f-4e8a-814c-291247402104", + "id": "c1c3ea32-27d1-4d89-9f7f-35798b343a57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105606,7 +105606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffb20aad-fcf6-4750-b3b0-e950c609fa31", + "id": "c7e8b9cb-d5a2-48a1-8180-34bdd6cca1e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -105652,7 +105652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bb917e7-f7b1-4ccf-abc1-c01344dec4ff", + "id": "3975714f-c94d-4aac-aaea-017fe37084dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105698,7 +105698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2f198a-3aa6-4aee-bd6b-e875f12281e6", + "id": "3fb87229-0031-4815-a1d1-cfbfde4d59c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105756,7 +105756,7 @@ "description": "", "item": [ { - "id": "87c708ca-a25b-42e2-a847-9671c747c3ca", + "id": "34aa1e45-37c6-4602-b38a-1f3e1e4b00e9", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -105822,7 +105822,7 @@ }, "response": [ { - "id": "1d55cedd-3947-435d-8a6c-10acdd675a62", + "id": "8eeb101f-272d-43f0-a1dd-64d72a5fb30f", "name": "List of identity attributes.", "originalRequest": { "url": { @@ -105902,7 +105902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af457fd-4410-4d1b-a168-a1ffc728e6e2", + "id": "a55e4f69-aedc-4efe-9275-17c5e657accb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105982,7 +105982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "354aef04-bfa9-4cd5-ad33-5a14588ea645", + "id": "8cd85db2-f17c-4b1c-9df8-6566644d3986", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106062,7 +106062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b38b73-3308-41f5-948d-e8c94d462003", + "id": "a49394f9-eb8b-46fb-a990-df0e95662b2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106142,7 +106142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98d3c819-b19f-45e1-bf58-54d09f65c70e", + "id": "b6a9af83-354a-4a55-af27-3f91ad022b62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106222,7 +106222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fe2a094-ad66-4362-bd81-c89d5012b9bd", + "id": "bc8f1cb2-7e2a-4afc-abec-abd5f8ab89f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106308,7 +106308,7 @@ } }, { - "id": "401410eb-1288-49e1-b686-741f7d02e2b2", + "id": "28ab4a16-7212-45ed-94ac-ad440078a04b", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -106350,7 +106350,7 @@ }, "response": [ { - "id": "0da07d01-3e50-4d38-bbce-d74acf568a9d", + "id": "92671a88-2bc2-448c-86b9-41aacfe25688", "name": "The identity attribute was created successfully.", "originalRequest": { "url": { @@ -106406,7 +106406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1538e5a3-abd8-4d52-bd64-6c2cda4b6d08", + "id": "58dc73a5-7cae-48b1-ab2e-086f961a172c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106462,7 +106462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b381e02-7f53-4038-aa55-41b5da3e64e8", + "id": "3d4c00da-be9e-47d5-8873-7edbb49b061b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106518,7 +106518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5a18ca7-0e57-4dc5-9929-dc176f1d7f4e", + "id": "2584f059-39a2-4425-ae8d-de8beb5146fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106574,7 +106574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc9c6203-e54e-4a7c-9a84-8b05f1065ec4", + "id": "dcc4eab3-6d2b-45fa-a070-aadcd850d64c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106630,7 +106630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4424a503-4ba1-4b83-9d17-6b022a02351f", + "id": "d4af64de-ebf8-41f6-8f31-18d70b7a5e73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106686,7 +106686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "623c1146-a215-4b50-89e1-f1864cac5343", + "id": "a56c9f11-86b7-4c13-b347-6fd11dbb3467", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106748,7 +106748,7 @@ } }, { - "id": "a0cb0d7c-a197-4533-b8ce-f4b879177483", + "id": "00f07bbe-6a6d-4259-a070-7385e3202f3e", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -106789,7 +106789,7 @@ }, "response": [ { - "id": "5b369ea7-3d6c-4b06-b90c-ab9710cf206e", + "id": "8a9d57a5-693f-4889-b940-891bcb872547", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -106833,7 +106833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9716c60d-69de-4f1c-866c-87b50ced4c03", + "id": "5dcb8d83-bc97-419d-92b7-4bd4e1a157a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106877,7 +106877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47512730-0b5b-4dc3-b144-7339a0dbc952", + "id": "71b1fcb6-31f5-41f4-9366-a0433085bbcc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106921,7 +106921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be3b2684-9495-4cf4-96c8-47e083fda3f1", + "id": "2ae70222-2101-4ceb-aa3f-fccf9d49442a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106965,7 +106965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5cd745b-5651-4846-a92d-5a398026433f", + "id": "2b2fadd5-d6b2-42c3-9c9d-b823dd47dcb0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107009,7 +107009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d8c250e-53ec-4a1b-b9b1-e08bcd11b4c0", + "id": "b751d038-cb99-4fc5-894c-7708093055e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107053,7 +107053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00f2df6-43b9-4d2c-a59b-f0bf21cb213b", + "id": "23b57801-e6b1-40fe-82db-d0c1326f1d07", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107103,7 +107103,7 @@ } }, { - "id": "15fefd6e-ca88-49fc-8232-eb4eb380bc44", + "id": "8dc8eb57-a15b-483d-aec3-82e175a73edc", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -107157,7 +107157,7 @@ }, "response": [ { - "id": "7116a31b-7e08-4573-b555-5357a6d77ca1", + "id": "cb37367e-3c99-45d5-8ce0-5e83b5b59be2", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -107214,7 +107214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44fb5cc9-9e9b-4025-ae49-8f393c6f48ea", + "id": "f8c66b23-bb1c-4b80-af47-70c2424b0a78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107271,7 +107271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "addb2597-8091-4a4e-a4c5-ac6bc20dd8f1", + "id": "939a6e0c-f8e9-44ff-bf2a-0a9f2ec3d676", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107328,7 +107328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f05732c-3497-4149-9e45-087f39a0138e", + "id": "a66256fd-b3e5-427d-850d-56bca6a38eff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107385,7 +107385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2463372-3759-41af-bbb0-7c06f3c99748", + "id": "4c46ea13-b29b-4ce7-80c2-f35399a474a7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107442,7 +107442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c642fc3-a7f6-40fb-ae7f-cfd3fec0aa31", + "id": "1820fd7c-e3fd-4e6b-873f-213357d14e86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107499,7 +107499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7720991-ebd8-443f-88d5-aeecc2bd843e", + "id": "a47f3d9e-a838-4365-9db9-01c4c145ef40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107562,7 +107562,7 @@ } }, { - "id": "28ea8211-088a-42a7-b12c-8262383ef964", + "id": "027ec4e8-0299-41a3-857d-f67ff89a2b30", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -107603,7 +107603,7 @@ }, "response": [ { - "id": "b3f40197-25e8-4b46-ac46-38e7214535fd", + "id": "5939e2fd-d3ed-4a65-9f2e-64ea36f86c8d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -107637,7 +107637,7 @@ "_postman_previewlanguage": "text" }, { - "id": "093629c2-607e-48c4-a699-5607ba3dc06d", + "id": "08080605-8cf1-4f07-9e9a-6557feca10db", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107681,7 +107681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a1df8a4-7516-46ab-a147-cccac3002654", + "id": "b97aedcf-073e-4a45-ab69-cae19ddd97a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107725,7 +107725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a68d5ed-1253-470b-9b15-1c9033312d97", + "id": "4c23ca05-5564-4532-8372-341775b3c75e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107769,7 +107769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66dc5aaa-d10d-4825-a27f-0f96f4199f84", + "id": "4d196c4e-ea1d-46d6-a5d5-572cca4f9c6a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -107813,7 +107813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba7d9711-0eee-4828-90cf-3a268d7f7168", + "id": "2c9e51b9-e6a2-4744-930b-ce239e410dfb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107857,7 +107857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4da73033-2575-4562-96e2-f1e76fc516d0", + "id": "281dc10e-8b5e-4187-8990-dc343ccd65c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107907,7 +107907,7 @@ } }, { - "id": "2864093e-cb8d-4acd-acce-731510bc0d75", + "id": "53bf1836-a30e-4667-b2b5-a4cbd2497885", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -107950,7 +107950,7 @@ }, "response": [ { - "id": "5b0c41db-d390-4b71-9c25-0c524d0b4e44", + "id": "699c77ec-f824-45c9-8600-d7d49d549828", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -107997,7 +107997,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ccfe2e33-5896-46b8-9c5d-f4697f1a2c17", + "id": "854a494e-f346-46ac-92b1-3c2dc6da1cc4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108054,7 +108054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54b00205-3d50-46b0-bac2-d9c92adf5d2b", + "id": "fded9e10-d883-4740-9b33-f5df1748e8e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108111,7 +108111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4adba564-1fc2-4655-81ae-5a71ee577b81", + "id": "d1479e3f-352e-4cdd-8ede-10244a6e429d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108168,7 +108168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b8571e-0ccc-4cb8-9a71-9f9285747fb5", + "id": "4fbb60ba-a1b3-49e2-810d-97ef2212d065", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108225,7 +108225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b115c642-8d46-465c-93dc-4eafe4b4044c", + "id": "a5959b38-36cc-4c88-b024-b3b3c6a5f363", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108282,7 +108282,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4c5dad-b685-40ad-9635-d34f1320ad66", + "id": "7b4f1daa-c2ff-4263-9975-420e1e2ad5d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108351,7 +108351,7 @@ "description": "", "item": [ { - "id": "c560612b-3b24-4fa3-8e40-b501907274c1", + "id": "0b43302c-907f-41ad-9b4f-49522138214b", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -108426,7 +108426,7 @@ }, "response": [ { - "id": "e7dee387-8ccd-43b6-995b-8eefd056406a", + "id": "1dd67e32-5dc6-477f-849e-1cc91b9ea4d2", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -108515,7 +108515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd06256a-6436-4c24-9189-b80e5774a0dc", + "id": "d33c6242-570e-4950-9c3d-1ee854b82163", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108604,7 +108604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "941e5d8b-755b-4f17-9353-9ae64388c9a7", + "id": "4da98a10-0d7c-4167-a216-e75f9983d77f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108693,7 +108693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25262c5d-5d00-40b9-b743-ab65a2d2807e", + "id": "c70e70b1-0a8b-4971-97d7-7dcc5d93501c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108782,7 +108782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bd845cc-ceef-4edd-bd74-3d05f81da998", + "id": "541bba2f-dc3f-47c6-9c00-c4c9c6b4d7c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108871,7 +108871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37878198-60e8-4be8-84d1-2afdd4a89145", + "id": "4dde2446-d095-4834-ad9b-9011ce84fe80", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108966,7 +108966,7 @@ } }, { - "id": "a4d63678-06d2-4ff3-979d-a0e9cd05990e", + "id": "f9b38f10-b066-4688-a8d6-03c51638fed9", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -109007,7 +109007,7 @@ }, "response": [ { - "id": "263894b3-7ca2-4064-899e-d226dfda617a", + "id": "02875109-ceef-4b96-911d-0265ecfc793a", "name": "The identity object.", "originalRequest": { "url": { @@ -109051,7 +109051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "816a7f67-0ee3-4aee-b4e7-62f66701ec50", + "id": "755154c2-d69e-474c-8d5b-11519f45e4a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109095,7 +109095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ddf4334-8ab2-4ded-8096-182556340293", + "id": "1c1ad18c-1066-40a1-94e5-45c6902a7445", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109139,7 +109139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ae9b1b4-3556-44f8-97c7-eb58a3b86350", + "id": "d82eabf4-7b06-40d0-810f-0668d73fb2a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109183,7 +109183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4081337e-2c8f-4b98-9906-69828ab3e8df", + "id": "89d34174-87b7-4887-8e93-5934eafa19da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109227,7 +109227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0d1f890-5480-4aa9-9458-5fb1d79d0605", + "id": "b257c695-0c8f-4249-8815-d76bba339766", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109277,7 +109277,7 @@ } }, { - "id": "e1157889-75c6-4283-9f08-dc64b3284450", + "id": "fc54aaba-9e04-47db-ab49-484c46f9529f", "name": "Gets a list of access items for the identity filtered by item type", "request": { "name": "Gets a list of access items for the identity filtered by item type", @@ -109356,7 +109356,7 @@ }, "response": [ { - "id": "1b2ffd78-1487-4786-86c5-9703d4de47de", + "id": "06326929-49df-409a-a1e1-3d57fe6f0982", "name": "Access Profile", "originalRequest": { "url": { @@ -109438,7 +109438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fddb88d1-fa2b-4fba-add8-b8963ed13254", + "id": "ab9ac09d-b2ac-4dfb-8e11-e5b557329713", "name": "Account", "originalRequest": { "url": { @@ -109520,7 +109520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5364a54d-fa06-411d-ab8f-24c5c28f0ecc", + "id": "ee2bf9e3-40a1-4e72-ab96-13a5cac4f37b", "name": "App", "originalRequest": { "url": { @@ -109602,7 +109602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "745572da-2c1c-4707-ba04-9e0b8b09f710", + "id": "c6741edf-40c8-4d08-acf6-3f78898ab2d9", "name": "Entitlement", "originalRequest": { "url": { @@ -109684,7 +109684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a5ea8ff-3efe-4f25-9a9d-ed46bbc55863", + "id": "0350a4f9-0f4e-48c8-88de-631cc0551662", "name": "Role", "originalRequest": { "url": { @@ -109766,7 +109766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dbce964-bca6-4d61-adf1-d38d31740527", + "id": "aee00549-731f-450d-a9a6-55ef289fadda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109848,7 +109848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b75b80b-a481-405a-a5a9-dd2794e53b80", + "id": "71692e4c-b304-4c38-9cd8-a05a63b942b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109930,7 +109930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1bdcfc-4fb1-40fe-b170-8cfa08de2288", + "id": "8a571b13-61b6-4623-a427-32247c7b7523", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110012,7 +110012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c260701-ce0e-425f-a7d6-3a08aeea000b", + "id": "59f4de13-4ed2-4707-a60a-371a5672e248", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110094,7 +110094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48dfd217-e817-44e6-af4b-da9076bab884", + "id": "06eb0ecd-af07-4b7a-97fe-7d4e5b1444bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110176,7 +110176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef22862-3793-4aea-a99e-14402f974805", + "id": "1b82df86-20e9-486b-93eb-64e5cfc35a48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110264,7 +110264,7 @@ } }, { - "id": "a336a4c9-8867-49e3-850d-277296bc5a9e", + "id": "46f242ae-29da-4872-b1b1-ff2262c8f93a", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -110352,7 +110352,7 @@ }, "response": [ { - "id": "8dd1c255-da5c-4d74-9fe0-33d286426053", + "id": "fb089baa-d62c-4d46-a4b5-bfe870dd6c7f", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -110443,7 +110443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f700c260-c9c1-4c75-b53e-3f6773c689be", + "id": "ee9bd989-f51b-4c87-a4b0-e3401c84994c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110534,7 +110534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "827c6271-d827-4c9c-b69f-10d86eef53e2", + "id": "d1f6a114-ffa4-4576-abe2-c67fb7faa2c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110625,7 +110625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6929378d-eb08-4373-a394-ea2a048f65e8", + "id": "99c32d7f-c0e2-4c87-a763-64c2f3c9c4ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110716,7 +110716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ab1271-57c1-4525-913d-a036a308f3e9", + "id": "94185542-6970-4e9b-b018-8a157918fcbc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -110807,7 +110807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed145b9-0cbb-4789-a6d0-534a49866311", + "id": "26bdad0a-3dc8-4098-ab79-5cc4ad14e68e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110904,7 +110904,7 @@ } }, { - "id": "08b05b0f-addd-4e8e-8385-898a3c07d9d7", + "id": "6cebcb3e-e71b-4346-b73a-40d3cbd6bd7d", "name": "Gets the summary for the event count for a specific identity", "request": { "name": "Gets the summary for the event count for a specific identity", @@ -111001,7 +111001,7 @@ }, "response": [ { - "id": "76b82533-0a02-482c-b9a7-be9827a87c83", + "id": "d957906c-7ce1-47b5-aa18-05167d22b7e0", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -111101,7 +111101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d69979fe-3659-4a94-8ba6-847b52b41d5c", + "id": "46ed0311-d69c-4502-82fa-0a491d0351da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111201,7 +111201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d20ead6-3197-4464-9646-cf8569263eb3", + "id": "f2a9867d-ae37-415c-8424-61f9c150c67b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111301,7 +111301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39563702-6eff-4256-9629-6963453ed48c", + "id": "41d899ba-f23c-491d-93f0-0b39c73f19dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111401,7 +111401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19876892-9ab4-4495-8afd-bce60c22ad28", + "id": "a75ddc08-8501-4398-b73b-86784c03a049", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111501,7 +111501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82b08178-ad3a-4175-a9da-35c78dd86c07", + "id": "376ac317-1ecc-4616-930f-f757344514c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111607,7 +111607,7 @@ } }, { - "id": "d6ea9e55-472e-43f1-929e-6d73a8ec9ef3", + "id": "3ff47ef3-b862-4238-828f-0ecd9ffcc138", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -111660,7 +111660,7 @@ }, "response": [ { - "id": "5a271b76-82ed-434b-8fc1-16f9464c7093", + "id": "99dbad8e-1b1a-48b3-8334-17d7cdc45984", "name": "The identity object.", "originalRequest": { "url": { @@ -111706,7 +111706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "484327b3-e8dc-4eed-a80a-6070ae1ca13a", + "id": "33216ba4-434c-4635-832e-240193d984a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111752,7 +111752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c47b1a60-b822-4ce8-a64f-0e999631e735", + "id": "8b41d96b-2083-4598-8f7b-c08787b70ff2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111798,7 +111798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03ed5abf-77d2-421f-9233-8c4f9b8175dd", + "id": "2e5abe67-58ad-4294-8fd8-648a4d2d7284", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111844,7 +111844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5da356d-0225-4cdb-86ac-3050dba4810d", + "id": "a16e69d9-12f4-4563-a6da-aa79ab764f97", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -111890,7 +111890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c51824e3-e34a-4abb-97e3-00976dc3de6c", + "id": "2866b5f9-fb54-4906-a8af-29f841dd16f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111942,7 +111942,7 @@ } }, { - "id": "04c96dab-5f6e-4f89-a679-122840b2f77d", + "id": "0b3fb6a6-d3a2-4b35-b23f-42d27488e327", "name": "Get Identity Access Items Snapshot", "request": { "name": "Get Identity Access Items Snapshot", @@ -112006,7 +112006,7 @@ }, "response": [ { - "id": "9dc1fdfe-9ae9-4f5d-b910-2b0513248938", + "id": "7a502678-473b-4279-bf37-a629ebd0469c", "name": "Access Item AccessProfile Response", "originalRequest": { "url": { @@ -112063,7 +112063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fe6a744-57fd-42e2-9c0a-bab6162f5aca", + "id": "f260fc95-073e-4a56-b315-776065f69839", "name": "Access Item Account Response", "originalRequest": { "url": { @@ -112120,7 +112120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b47b785-1902-45f0-8197-6be2a557cdd7", + "id": "aa1dcd80-e8a4-4113-b8a6-92d630866e74", "name": "Access Item App Response", "originalRequest": { "url": { @@ -112177,7 +112177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4769ac04-be4d-4c50-9f0b-9eab1310b391", + "id": "81672b5a-7939-42a2-adda-6ab71db37b2d", "name": "Access Item Entitlement Response", "originalRequest": { "url": { @@ -112234,7 +112234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d268e014-0a43-4590-87be-154eda699f77", + "id": "460f2902-4bc4-4712-b0cd-e4fa8af479c6", "name": "Access Item Role Response", "originalRequest": { "url": { @@ -112291,7 +112291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88360175-1514-4a6a-b246-a6b7d45142b4", + "id": "6f9e8d58-1dd5-4c88-83f2-9d2fd85fbcd0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112348,7 +112348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ae92ee-3b97-4596-8479-4781770a5217", + "id": "53f82060-a94b-4f25-9805-5f368a3f991b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112405,7 +112405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efec27da-5def-4165-bba8-eb2e673ffe70", + "id": "4d672764-42ed-4329-beda-a3d5aa300782", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112462,7 +112462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a82def1-6807-4ff8-b021-7be81b34b308", + "id": "eb441f42-8c80-4db3-a84a-596263283273", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -112519,7 +112519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76358a28-f134-4bf5-a7d0-490dcc0aa283", + "id": "1c49776a-ac85-46fa-8b28-9d15ba6a8c32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112576,7 +112576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99c7544a-ab33-4018-8815-fc16f1a1f881", + "id": "fc38ec71-0247-449c-9fdc-77152de0cd30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112639,7 +112639,7 @@ } }, { - "id": "b99e0eaa-ceff-4be7-bccb-02814db8c970", + "id": "d382b04d-d931-422f-a1fe-fa58462ba8ef", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -112754,7 +112754,7 @@ }, "response": [ { - "id": "1f46bb47-84d0-4f31-ac4e-1fd2c63af0ed", + "id": "0541e4d0-ad35-4bb0-b485-b002e06e6eff", "name": "AccessItemAssociated", "originalRequest": { "url": { @@ -112854,7 +112854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b22adfe4-b042-4578-90f4-e0945b7095e8", + "id": "0cad59d0-da85-4bdb-8046-eebda8090ee0", "name": "AccessItemRemoved", "originalRequest": { "url": { @@ -112954,7 +112954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8145647e-a28c-4190-a070-1edd57b38ec7", + "id": "49ddf542-c178-4b81-ba51-d04616c51b87", "name": "AttributesChanged", "originalRequest": { "url": { @@ -113054,7 +113054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6be1b5c-f21b-4cc6-818b-2cb8b48ca78e", + "id": "88a26deb-69da-429e-a041-9587707fdb59", "name": "AccessRequested", "originalRequest": { "url": { @@ -113154,7 +113154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b226b13f-1643-4e81-973f-bd13f6355186", + "id": "b433853e-31c5-4409-8980-3eb6a757a97d", "name": "IdentityCertified", "originalRequest": { "url": { @@ -113254,7 +113254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c5bb60-4c7c-4f44-8cc4-4f57c6b346b5", + "id": "31d8ef93-6f83-45ce-87cf-876460985661", "name": "AccountStatusChanged", "originalRequest": { "url": { @@ -113354,7 +113354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b97d6b6b-9a18-4493-900e-d8879d0e759b", + "id": "ffd5e4a3-0c34-495a-b4ab-ad181c9e819f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113454,7 +113454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9058215-33ef-43bc-9a59-a3f9b2bff818", + "id": "2fd5f25e-83bc-483d-b5da-6625004ddd02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113554,7 +113554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a1b7d77-fb61-42f0-acde-4f59f5578b8b", + "id": "d2d82402-e8f1-494a-9700-451cbd3e9a02", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113654,7 +113654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "317f46de-7973-4c4b-a987-113ea3eb663c", + "id": "9936e893-46dd-4e71-8099-f2879875e9c4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -113754,7 +113754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7210a099-4686-41ff-9031-fb0569d50e64", + "id": "d53e77e8-39cd-4a98-958a-5d49f5c3096c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113854,7 +113854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8195353d-97bf-4950-b474-5a84bf7bbe8d", + "id": "d166431b-2ec9-464a-8b84-4c96b47e48e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113960,7 +113960,7 @@ } }, { - "id": "a6d52977-f059-4cac-adbf-fffe86e408b7", + "id": "501fe247-4c3b-4b5a-a438-be4b259d9939", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -114002,7 +114002,7 @@ }, "response": [ { - "id": "2eda4a8d-a1cc-41d6-b436-60d89a6a65da", + "id": "f2245214-d620-4097-8929-23dde016e27d", "name": "The start date of the identity", "originalRequest": { "url": { @@ -114047,7 +114047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a05d80-c05c-424a-be7b-0af49295a7c2", + "id": "11103615-c717-4714-a26f-ea65586b01fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114092,7 +114092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8e74666-f16e-47ea-9b0d-c038fe00b814", + "id": "1f04b951-fe2e-488f-be14-3a0be03c872c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114137,7 +114137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb8e3d95-bd68-42d0-b33f-acf293dd73fd", + "id": "21fe56c7-0a6b-4173-8497-b0a3068bd9be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114182,7 +114182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f68f4cf-d260-4992-92cb-2d2c1e3d0367", + "id": "48f155de-e424-4260-8dec-b0007113ec22", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114227,7 +114227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86037bf7-e629-46e4-ace7-f5dc61430ba6", + "id": "c0ba8689-55a3-45db-8f71-661fa5bce1ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114278,7 +114278,7 @@ } }, { - "id": "a45086a8-5541-436b-a878-713495a250d5", + "id": "2a4e5637-5db1-4375-b533-8dfd3e4ef804", "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", "request": { "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", @@ -114321,7 +114321,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "elit dolor occaecat eu" + "value": "quis non" }, { "disabled": true, @@ -114330,7 +114330,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114384,7 +114384,7 @@ }, "response": [ { - "id": "b8f5e634-e725-4730-a2bd-382c3e0c2515", + "id": "64e3566f-824b-4c26-96b4-90d8a4b73894", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -114422,7 +114422,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114484,7 +114484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4563910-1d25-40f8-b59f-9b260ea10dad", + "id": "1cae879d-9ca5-4bd8-9b67-1a0d262660f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114522,7 +114522,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114584,7 +114584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c337c816-0c86-4ae7-9da1-b07a6766cd8f", + "id": "ce03d9e6-c62c-4e6e-8a15-6ac1405fce96", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114622,7 +114622,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114684,7 +114684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a827b87c-35c2-40e0-ae64-dbbfe913d8ba", + "id": "8ed1e702-0eed-40c7-8294-712657f1db8f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114722,7 +114722,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114784,7 +114784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456e3272-187f-4719-ab44-e30731c9355a", + "id": "284b76e2-07e8-48a5-a6f1-7dfbe34f07cc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -114822,7 +114822,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114884,7 +114884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b751ad-1af3-4d3c-83d7-eb77e8b98151", + "id": "dd7950d6-d579-4d93-a829-dd6f36f570f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114922,7 +114922,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "qui fugiat labo" + "value": "aliqua pariatur aute sunt" }, { "disabled": true, @@ -114990,7 +114990,7 @@ } }, { - "id": "57cc1601-7594-4109-aade-865528f245f5", + "id": "7e258946-a7f3-4b84-951c-02bca250337b", "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", "request": { "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", @@ -115102,7 +115102,7 @@ }, "response": [ { - "id": "4778e7cc-a47b-4120-8a5e-f341501dbb28", + "id": "4b018479-0ae5-46b7-b89e-8f23db55de28", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -115203,7 +115203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25fe63e2-faca-4b48-b4ff-0abee85d4606", + "id": "e9d49d03-9a9f-482e-8bf2-c26a89f71c6f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115304,7 +115304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469a849d-b700-4b87-a85f-c3b10a316a50", + "id": "4fde37b1-4059-42ea-9ba7-4487674704b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115405,7 +115405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1d07489-e58c-46dc-ba89-fcf06aac0ee7", + "id": "cc2e3601-d496-410a-bb82-3522c419a8c5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115506,7 +115506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817b8036-e754-4ac2-8cb0-a20bc79f4574", + "id": "22bb9c41-3f83-4fd1-8ceb-5d732ae8dfec", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -115607,7 +115607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c62d8ad0-05dc-4d95-aae5-790089c8cd00", + "id": "e79c8f3f-5713-4011-a60c-6b126bcbeab3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115720,7 +115720,7 @@ "description": "Use this API to implement and customize identity profile functionality.\nWith this functionality in place, administrators can manage identity profiles and configure them for use by identities throughout Identity Security Cloud.\n\nIdentity profiles represent the configurations that can be applied to identities as a way of granting them a set of security and access, as well as defining the mappings between their identity attributes and their source attributes.\nThis allows administrators to save time by applying identity profiles to any number of similar identities rather than configuring each one individually.\n\nIn Identity Security Cloud, administrators can use the Identities drop-down menu and select Identity Profiles to view the list of identity profiles.\nThis list shows some details about each identity profile, along with its status. They can select an identity profile to view and modify its settings, its mappings between identity attributes and correlating source account attributes, and its provisioning settings.\nAdministrators can also use this page to create new identity profiles or delete existing ones.\n\nRefer to [Creating Identity Profiles](https://documentation.sailpoint.com/saas/help/setup/identity_profiles.html) for more information about identity profiles.\n", "item": [ { - "id": "8801880d-e6eb-4063-9f54-67cbd44e8fb1", + "id": "fc119e00-7176-4a4e-bfe4-3d8fd8307010", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -115795,7 +115795,7 @@ }, "response": [ { - "id": "4e8f2a8d-69b9-4dd0-8653-2d6c4dbc22f9", + "id": "30ef1724-9a47-4f6f-9456-60cf3743bd1c", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -115879,12 +115879,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"5796e88c-b8fb-2797-3eb3-97ba24156024\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:65a4b92d-3e0b-e4ba-684c-4e4fa2817396\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", + "body": "[\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"5fea50cd-6832-d378-c6b6-3ecdd4d7f9db\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n },\n {\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:427a59ab-9666-b107-5849-c1a753e69852\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28269912-fce4-4870-b322-e87ece9373ef", + "id": "0ce83536-5d59-4eb7-bdb6-5ae84b8a96c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115973,7 +115973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a56a82e4-e366-4b15-9572-ece227a4d0bc", + "id": "3fde4247-0f43-42cb-ad9f-cf9c75350bff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116062,7 +116062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b99ebd-4819-4e2f-9e55-4380eb48cf68", + "id": "fb2ac156-d2d3-4b62-b17d-3d0d4137d296", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116151,7 +116151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50027c1c-d415-41e9-8d60-6462a7144d20", + "id": "1381310e-49af-4cee-a6d4-3ac5e1aa94dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116240,7 +116240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "992419a8-5344-4235-96d0-63f78c9319fb", + "id": "e83e4d14-7354-4b5c-832b-d1eb4a4524fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116335,7 +116335,7 @@ } }, { - "id": "7723b77b-2712-443f-b50d-4854ad5d0f19", + "id": "1fe9f58d-5811-4687-b452-b2d78e344284", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -116366,7 +116366,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116377,7 +116377,7 @@ }, "response": [ { - "id": "9d1cc8cc-67df-4985-a683-d49da4256a98", + "id": "7085ecde-3b28-4807-a42f-0b40ba06d10d", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -116411,7 +116411,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116428,12 +116428,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"59a3aa6b-7de7-81b6-aaad-0c06c73db274\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"0daf3979-aa81-2589-33d1-c2cd006c35b9\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7a40254-87d3-4359-bb7b-07586e519c62", + "id": "45d67b20-570e-4ab3-8077-dc0c95541282", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116467,7 +116467,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116489,7 +116489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb4a65b7-5a3c-419b-81fa-4be8564db7b9", + "id": "d96d3f34-eb93-421c-8596-1f8dcd7181fd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116523,7 +116523,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116545,7 +116545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88be065b-b7fb-4901-bfb4-1cdea3a569b0", + "id": "e7286576-8aab-4503-a0df-f85380c0e2b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116579,7 +116579,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116601,7 +116601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b06bd3f-3766-4510-a925-bd7a660d627f", + "id": "1007ba05-18a0-4706-a089-e856e2007e9e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116635,7 +116635,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116657,7 +116657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea4f95e1-af59-4ed1-8a98-c3f92bb466d0", + "id": "424801f1-01ba-454b-9b87-b2a8351b754c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116691,7 +116691,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"f9475c36-c9c0-4c78-659e-7afbb30aec85\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "raw": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"urn:uuid:d8b96d0c-3eec-f87a-0fcf-0770fdf0a256\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "options": { "raw": { "headerFamily": "json", @@ -116719,7 +116719,7 @@ } }, { - "id": "0eebccf2-853e-427c-8b1b-a59dee92734a", + "id": "ec02e67a-f693-4068-91b7-c849fde8ee2a", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -116762,7 +116762,7 @@ }, "response": [ { - "id": "86966019-f91d-42e4-93e3-6f8e618f044b", + "id": "6099ac38-782c-4d81-8e58-f1b13f08fbc7", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -116814,12 +116814,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1980-02-10T04:49:37.403Z\",\n \"launched\": \"1988-10-03T01:36:25.012Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1994-08-16T17:43:56.656Z\",\n \"launched\": \"1977-06-21T03:10:50.901Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cb90e413-fe54-4157-adf7-34d1aba7bc08", + "id": "d0308429-e3ad-48ef-8c86-573382104f5d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116876,7 +116876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc704ea8-c5ca-4945-80ca-8fbce32402a2", + "id": "7657ad3f-2554-4a1e-8f2f-f78576207ec8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116933,7 +116933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2017233c-490a-4c1d-af4a-037436de47ad", + "id": "2b6239f0-e680-4a1a-a792-852aafc0651b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116990,7 +116990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ba1377-ec2f-4de8-b93b-445a47fbcf72", + "id": "9067c82c-0823-4ff6-bbf8-de1dd5992976", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117047,7 +117047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cfead63-3269-4bc3-b474-9f0111bcc809", + "id": "0906a3a4-cd46-4b31-b777-8c1c4142b507", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117110,7 +117110,7 @@ } }, { - "id": "bf5a8c61-f66f-4cb6-a334-877b1eeebb8d", + "id": "ec614c8e-732f-4141-bd54-fb8888056f5d", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -117186,7 +117186,7 @@ }, "response": [ { - "id": "92bc2096-5731-4006-a7aa-cdb4111c9eae", + "id": "2cf0641d-0169-4a2e-88ff-cad302d7fe30", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -117276,7 +117276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dd2fb90-373c-4725-914f-ea60e117f90e", + "id": "8c75bbe1-eccf-4039-9eec-5ca1233f1331", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117366,7 +117366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9d809eb-24a3-4e3c-b7cb-08d9e037b95d", + "id": "51cc185a-f19e-40ca-9daa-3296e79c9888", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117456,7 +117456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "732bb814-5367-4fad-aaa8-c7b4a4f58505", + "id": "6df65749-6a18-4f14-9a46-c045ce184b74", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117546,7 +117546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "432c9228-a0aa-435a-a327-4fcbca038d96", + "id": "dc508182-8f30-45de-9319-d8e329ecb845", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -117636,7 +117636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0b0aa04-35e2-4bf8-85e8-4686cc16d72a", + "id": "60546378-830e-40fb-913b-171374cb7181", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117726,7 +117726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad8625bd-5626-4f24-b5fc-1e6f2da9bc0c", + "id": "0a201db4-11f1-4aea-b58c-65386532fedc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117822,7 +117822,7 @@ } }, { - "id": "5e2ed813-265a-407e-83cd-bf9140d688c9", + "id": "240a4e2f-a328-46a8-8f18-4fffdc03f010", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -117865,7 +117865,7 @@ }, "response": [ { - "id": "223b82b0-5754-4a00-a82a-5718643732f4", + "id": "5a0d6722-2025-438b-b0d8-0bfa1cc2cec5", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -117917,12 +117917,12 @@ "value": "application/json" } ], - "body": "{\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"voluptate_1\": {},\n \"minim_a\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Excepteur_99\": {},\n \"mollit_f\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"esse_5\": {},\n \"velit05e\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"labore_f58\": {},\n \"do_\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"exa3c\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"magna379\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n}", + "body": "{\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"incididunt_9f\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"aute97\": {},\n \"commodoa\": {},\n \"do35d\": {},\n \"id_9cf\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Excepteur75\": {},\n \"in546\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"dolor_79\": {},\n \"elit_27\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"etc1\": {},\n \"Excepteur_0d3\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"reprehenderit_44\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1b24ea9e-7054-429e-bd4b-5a16d2762bad", + "id": "e05600a8-5cf9-4989-93e8-4a1a46721b89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117979,7 +117979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b09944d2-d3c6-49c5-af56-9047596c4dc1", + "id": "59354c60-f330-4258-afe9-0ac215732b36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118036,7 +118036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fb6de15-9167-4b7f-805a-6fe57f7eca6a", + "id": "e88112e6-1581-44ef-8c21-248252c6692e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118093,7 +118093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c55f76f-904a-4a47-801d-a7bb50a382c2", + "id": "1efea50f-7903-4b17-8e41-69ac129f1193", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118150,7 +118150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e26f42e-1f3c-4d9f-bee8-1831d45baadb", + "id": "00a7c863-cf06-45d6-8760-07039a5e628b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118213,7 +118213,7 @@ } }, { - "id": "b95e9c93-130e-4e44-a467-25004d0d3a3c", + "id": "0fc092cf-9eef-4b05-9975-771d2bc683af", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -118245,7 +118245,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118256,7 +118256,7 @@ }, "response": [ { - "id": "75ef2990-b0e0-4416-891c-30cda1376bd4", + "id": "25c81be0-6335-4bc5-9704-85dcb996e738", "name": "A preview of the identity attributes after applying identity attributes config sent in request body.", "originalRequest": { "url": { @@ -118291,7 +118291,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118313,7 +118313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c520792-23b8-4ec5-b8de-5c59bdc72cb8", + "id": "2cf42935-fe2b-4f85-a1a4-f011ccb61e8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118348,7 +118348,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118370,7 +118370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f771949-d78d-48a7-9cc6-bda531db7c26", + "id": "ca9ac5a8-3f7c-4bdf-8676-5d6acc325564", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118405,7 +118405,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118427,7 +118427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dc175a1-a3f1-4917-81aa-f9e4a7562793", + "id": "d7165bcf-49d1-48de-8e29-cbbdbdd64e93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118462,7 +118462,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118484,7 +118484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "684614b1-2eb2-4782-97ef-c7ee897086af", + "id": "373b078f-92e8-4e37-a4d1-314d6cffcc08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118519,7 +118519,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118541,7 +118541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "869bd7cb-590e-4704-bdb1-5aeef216703c", + "id": "aed4c8d3-44ff-4b80-b87e-1bedccedada5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118576,7 +118576,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"d0812cfc-a4da-bd13-4aca-b020a50a3bfe\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:181e8a40-11fe-13c5-cea2-8f12b6b16dd1\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -118604,7 +118604,7 @@ } }, { - "id": "8b66a4a0-3971-43ca-a1bc-221f00a14b13", + "id": "52c74445-b543-4cdb-86b6-068c2944f688", "name": "Gets a single Identity Profile", "request": { "name": "Gets a single Identity Profile", @@ -118645,7 +118645,7 @@ }, "response": [ { - "id": "cbebef9a-d49c-4afe-a739-374da43b4995", + "id": "08f6270e-2532-4e75-95ba-061b64d30643", "name": "An Identity Profile object", "originalRequest": { "url": { @@ -118684,12 +118684,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"59a3aa6b-7de7-81b6-aaad-0c06c73db274\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"0daf3979-aa81-2589-33d1-c2cd006c35b9\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "03b63458-7259-405d-8a67-9fb4c09f53d6", + "id": "b236605c-ec4b-4570-858f-8f17514ba370", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118733,7 +118733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c93df91f-81a4-402a-a32d-77d926ca5fb8", + "id": "ad77da6b-9222-4d56-bf7d-89c8eb47e814", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118777,7 +118777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7dad7f2-ac92-4342-99a8-66893063da59", + "id": "8f989bc6-bb00-4237-a1c9-69ea42f78635", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118821,7 +118821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18e9df91-ac17-4812-a5a0-cd9644a1bf8a", + "id": "7a787866-56b5-4db7-8b5e-35dae5e68d8b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -118865,7 +118865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "867d8be7-209f-4d8c-b8a8-e17759584e96", + "id": "48c13bf8-847f-4f77-9023-7c00a1172d21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118909,7 +118909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5143ffca-5acf-44e3-b3e6-3e7ca6c53101", + "id": "82e06edd-e8c3-4f0e-88ee-8ea4572034f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118959,7 +118959,7 @@ } }, { - "id": "e460f8a4-dd9d-4c6f-82dd-62da9b2a54b0", + "id": "ec910cd0-44ec-4986-bd2b-62f0b452d675", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -119000,7 +119000,7 @@ }, "response": [ { - "id": "f375eb69-a4ad-4dd2-82af-7d16e8fceee6", + "id": "c5221767-19d8-4a6d-8d45-c8b941c43eab", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -119039,12 +119039,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1991-05-18T20:57:15.925Z\",\n \"launched\": \"2019-08-26T16:59:06.240Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1948-11-25T20:51:39.442Z\",\n \"launched\": \"1992-02-24T18:56:03.121Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0273d8e2-e563-472d-9686-6cfc48cda309", + "id": "476dcaaf-903f-4d47-bb14-6bcf1e77162e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119088,7 +119088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3949be9f-885f-4263-95ca-6d7a61f7fecd", + "id": "d49624dd-4075-46c9-9687-60fb493a0740", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119132,7 +119132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e365cfc-801c-4314-85f6-fb2ff353eaf3", + "id": "34d068bc-5709-4408-9a71-e69547435a0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119176,7 +119176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dcdd3dd-09b1-4035-8ae9-bfff02eb1292", + "id": "88e54b3c-d613-4171-b114-15f82bf70d63", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119220,7 +119220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c7ff75b-d70b-403d-bb7d-421531663230", + "id": "7d8c76e5-1aab-4ab4-866b-b0abb7c413c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119264,7 +119264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abc02647-7504-4f4b-8178-27ec30b41f4c", + "id": "fd54056e-cee1-4338-b1de-6d6071ddb8c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119314,7 +119314,7 @@ } }, { - "id": "e4fc678b-2f08-4844-b189-f874d56f7642", + "id": "1628c058-8685-4f3a-a515-2e996c3c90da", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -119368,7 +119368,7 @@ }, "response": [ { - "id": "180b6f08-d73a-4761-b938-390be3ec7434", + "id": "ab35b848-9309-48df-8c5b-4c71b6e08d10", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -119420,12 +119420,12 @@ "value": "application/json" } ], - "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"59a3aa6b-7de7-81b6-aaad-0c06c73db274\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", + "body": "{\n \"authoritativeSource\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"name\": \"aName\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\",\n \"description\": \"My custom flat file profile\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"William Wilson\"\n },\n \"priority\": 10,\n \"identityRefreshRequired\": true,\n \"identityCount\": 8,\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n },\n \"identityExceptionReportReference\": {\n \"taskResultId\": \"0daf3979-aa81-2589-33d1-c2cd006c35b9\",\n \"reportName\": \"My annual report\"\n },\n \"hasTimeBasedAttr\": true\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4193c217-c6a3-497e-a024-6ea4c4663058", + "id": "6ea31137-7a58-4533-8de2-42191f4416b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119482,7 +119482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcf6e55a-f4f9-45f7-a138-52fea6063509", + "id": "7ed4ca42-d03e-4348-a46b-027000aa2a07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119539,7 +119539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdad0635-9047-4477-b261-898aae0df88e", + "id": "493b87c9-49fc-44b1-ad0f-7c25b3e221b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119596,7 +119596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50da7725-7de0-4e8f-9084-def537cedaf6", + "id": "31790d96-54c4-4231-99f4-5720d5789a9d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119653,7 +119653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8c28be9-5bca-4511-8836-0feb273af1b7", + "id": "2d62b348-a89e-48d8-8e06-887aaf865374", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119710,7 +119710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39838d2f-af11-46a3-8b90-bdd9a14e682a", + "id": "c9436db1-6df0-419a-b889-bcbe48e37cd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119773,7 +119773,7 @@ } }, { - "id": "115b363e-622c-48fb-a6cd-46f5fe118457", + "id": "99d6c918-2019-4a2a-a8ef-5218aeb65c54", "name": "Default identity attribute config", "request": { "name": "Default identity attribute config", @@ -119815,7 +119815,7 @@ }, "response": [ { - "id": "6b2c2623-159c-450c-9475-5f2e0cfa0e55", + "id": "3d42b7a9-9a02-4c15-ab13-ff028d8e0459", "name": "An Identity Attribute Config object", "originalRequest": { "url": { @@ -119860,7 +119860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68a708b9-344a-4e7f-a295-f60c6ed85955", + "id": "c278c27a-eac3-496e-9da9-3f9a2d8085cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119905,7 +119905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65352023-6694-43c5-8f3c-948f21a2aa09", + "id": "639dd5b9-4fc4-4ee0-8522-ee72f68ecb1f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119950,7 +119950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b760bc-ad1a-4085-81be-d9b1431c09ae", + "id": "a78af878-b609-4d90-9b05-289f999207c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119995,7 +119995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d290090-db7c-46d1-8459-cea061e71500", + "id": "a2503b2e-a57d-4af9-b507-589e3476fbf8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120040,7 +120040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23e9114d-d7b7-405f-8cd3-9217af13843e", + "id": "621efef2-c54b-4671-9e9c-94c723171e0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120085,7 +120085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76b89f61-212b-4b22-98ac-1d2fc8dce818", + "id": "fb7be2e9-cb44-40d8-83b5-644550c1f8cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120136,7 +120136,7 @@ } }, { - "id": "145cbd36-c268-4124-94ff-b4a7c4197c7c", + "id": "14b651a5-24e1-4ab2-86e2-ae9551a9db0f", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -120178,7 +120178,7 @@ }, "response": [ { - "id": "eedfee2b-ee78-4007-96ec-ac762b8db9ee", + "id": "0e1d34a2-468f-4dc6-9b01-8d210b3391a3", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -120223,7 +120223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d899eda-a32a-45aa-90a3-517fe4e6c017", + "id": "08da4880-5e6c-47d9-9c31-80f2d023aff5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120268,7 +120268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab12fccf-a1ac-49f1-a33b-880b4b83056b", + "id": "98a44d89-a8b0-4673-8188-ae7793e1c08d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120313,7 +120313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f15535c6-b698-4a4d-861f-15904ee71bcd", + "id": "a80ced85-52a5-469d-94fd-1526022506cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120358,7 +120358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c77cb1b-e743-4eb1-980a-aca7371dcd5a", + "id": "35ded689-eb70-4cd6-b483-e35f100a2df3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120403,7 +120403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "def7d7b0-be24-45f9-8ed3-b9d12100e99e", + "id": "020af9fb-aa0c-48bc-ab62-18c4b4815308", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120448,7 +120448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb386ed3-3c68-4624-8468-a2a330931545", + "id": "05a8fefb-d344-4e39-84b8-d0ebe6cf6e32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120505,7 +120505,7 @@ "description": "Use this API to manage Launchers.\n\nLaunchers are objects that allow users to launch various tasks from ISC such as Privileged Workflows.\n", "item": [ { - "id": "f0f3d726-304d-41c4-9fa4-df0911d14d1c", + "id": "e3c51643-e01d-4e61-ad83-5c5c3809f470", "name": "List all Launchers for tenant", "request": { "name": "List all Launchers for tenant", @@ -120562,7 +120562,7 @@ }, "response": [ { - "id": "5a2a9fcc-1357-41f5-bc1c-6ed6c44e282c", + "id": "582cb433-addb-4e38-9c46-35ebd3432b24", "name": "List of Launchers", "originalRequest": { "url": { @@ -120628,12 +120628,12 @@ "value": "application/json" } ], - "body": "{\n \"next\": \"anim et reprehenderit pariatur sint\",\n \"items\": [\n {\n \"id\": \"1b630bed-0941-4792-a712-57a5868ca34d\",\n \"created\": \"2024-04-16T20:07:30.601Z\",\n \"modified\": \"2024-04-17T18:02:07.320Z\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"123180847373330f0173c7e1756b6890\"\n },\n \"name\": \"Group Create\",\n \"description\": \"Create a new Active Directory Group\",\n \"disabled\": false,\n \"type\": \"INTERACTIVE_PROCESS\",\n \"config\": \"{}\",\n \"reference\": {\n \"type\": \"WORKFLOW\",\n \"id\": \"2fd6ff94-2081-4d29-acbc-83a0a2f744a5\"\n }\n },\n {\n \"id\": \"1b630bed-0941-4792-a712-57a5868ca34d\",\n \"created\": \"2024-04-16T20:07:30.601Z\",\n \"modified\": \"2024-04-17T18:02:07.320Z\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"123180847373330f0173c7e1756b6890\"\n },\n \"name\": \"Group Create\",\n \"description\": \"Create a new Active Directory Group\",\n \"disabled\": false,\n \"type\": \"INTERACTIVE_PROCESS\",\n \"config\": \"{}\",\n \"reference\": {\n \"type\": \"WORKFLOW\",\n \"id\": \"2fd6ff94-2081-4d29-acbc-83a0a2f744a5\"\n }\n }\n ]\n}", + "body": "{\n \"next\": \"sunt amet elit dolore\",\n \"items\": [\n {\n \"id\": \"1b630bed-0941-4792-a712-57a5868ca34d\",\n \"created\": \"2024-04-16T20:07:30.601Z\",\n \"modified\": \"2024-04-17T18:02:07.320Z\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"123180847373330f0173c7e1756b6890\"\n },\n \"name\": \"Group Create\",\n \"description\": \"Create a new Active Directory Group\",\n \"disabled\": false,\n \"type\": \"INTERACTIVE_PROCESS\",\n \"config\": \"{}\",\n \"reference\": {\n \"type\": \"WORKFLOW\",\n \"id\": \"2fd6ff94-2081-4d29-acbc-83a0a2f744a5\"\n }\n },\n {\n \"id\": \"1b630bed-0941-4792-a712-57a5868ca34d\",\n \"created\": \"2024-04-16T20:07:30.601Z\",\n \"modified\": \"2024-04-17T18:02:07.320Z\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"123180847373330f0173c7e1756b6890\"\n },\n \"name\": \"Group Create\",\n \"description\": \"Create a new Active Directory Group\",\n \"disabled\": false,\n \"type\": \"INTERACTIVE_PROCESS\",\n \"config\": \"{}\",\n \"reference\": {\n \"type\": \"WORKFLOW\",\n \"id\": \"2fd6ff94-2081-4d29-acbc-83a0a2f744a5\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2a1ccc2-eb5a-45a9-bc52-6da665799c27", + "id": "0ac4f79b-bfeb-49e4-a8fd-e7e1e0cb018e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120704,7 +120704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b000268-ccaa-4056-87c6-e9f4affad9d2", + "id": "49290410-e3fa-4ddb-b1b9-932872c9a9e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120775,7 +120775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb321c5-fbb2-4d26-ada2-22493ccb9850", + "id": "22c551c6-0967-41e1-9f97-ad1179b50aa0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120846,7 +120846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "287b9eb0-721a-4418-87ff-2fc729d43033", + "id": "b908708c-adc0-47b2-996c-d0d81d50e154", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120917,7 +120917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9812446-7987-4754-8f35-eb5d19623e1f", + "id": "7345e189-50d1-4467-aba5-757dcdf40935", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120988,7 +120988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68677c22-d325-4c7b-8aa4-238e48679e1e", + "id": "fe783bea-4930-42fe-8c1c-f2297c230c17", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121065,7 +121065,7 @@ } }, { - "id": "7df00915-59ee-4471-a45c-e9e3a91dc105", + "id": "bab4cca3-d97a-499d-9620-ca1390820095", "name": "Create launcher", "request": { "name": "Create launcher", @@ -121107,7 +121107,7 @@ }, "response": [ { - "id": "81e0af19-a3a6-463c-865e-2adc53330b1e", + "id": "8bcbb6f5-e670-4bd6-8761-9f60c4f1a101", "name": "Launcher created successfully", "originalRequest": { "url": { @@ -121163,7 +121163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c7a6ff-35aa-4b92-beb8-6ebeee515873", + "id": "dcfc560f-6b28-41ff-ba4b-8d5fadb1b8b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121219,7 +121219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98b440d1-b308-4a74-a78b-44747cb3f6de", + "id": "0e1359ea-cdb9-4134-afb8-e92cbf5c8b3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121275,7 +121275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c1e2e05-e7d7-4aa3-91f4-0f8b49370dcc", + "id": "f91bf01c-2ba5-4310-b4ba-94b95fc691ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121331,7 +121331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45e333ee-75bf-4547-96b9-1d9d4fee8a67", + "id": "961568ad-0595-4b79-bb93-5824d32b219a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121387,7 +121387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10295d7b-98c3-40f7-8b8d-b3abd345de44", + "id": "f6cc85ad-a03f-40eb-b605-096010cea2f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121443,7 +121443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f723679b-1d26-414d-bd09-252604384718", + "id": "6d391e1f-cbdf-4b3c-9020-63e5f266ad68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121505,7 +121505,7 @@ } }, { - "id": "b48ae1ff-933b-479a-a545-f583e8db9a99", + "id": "1ff55f34-6000-49c2-97c8-4d4cac652094", "name": "Get Launcher by ID", "request": { "name": "Get Launcher by ID", @@ -121546,7 +121546,7 @@ }, "response": [ { - "id": "3b9d1920-d219-4b56-a6a3-0710e8b50355", + "id": "fb7fb8cc-dc3b-499d-82e2-7e05cfd77106", "name": "Launcher retrieved successfully", "originalRequest": { "url": { @@ -121590,7 +121590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "940f515c-56f4-4839-9f31-9fea48f4cfcd", + "id": "ce196229-a2b1-4027-b11a-b1c334d4bb89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121634,7 +121634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f01f2632-958e-4983-a5fa-64751db39cc3", + "id": "9d52e4b6-3645-4149-ba2c-c652b45c8c77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121678,7 +121678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79a1dee2-0c16-4d2a-ae1b-d3215c3fbae6", + "id": "8da45ed2-f2ae-4030-a668-b0168ab17146", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121722,7 +121722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9a1a033-035a-4843-bacd-13bc3d2d20ff", + "id": "a51bd785-7ecc-4dd9-98cd-f3a921bc5a8c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121766,7 +121766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1c153f9-2a57-42ee-8f7e-41304f482394", + "id": "ca15023d-09e9-44c5-963b-6132b77cf8a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121810,7 +121810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9082604c-b617-4a7d-99df-9f190d21a546", + "id": "f1bf5bfd-e72e-4bce-a9d3-0812b88d4220", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121860,7 +121860,7 @@ } }, { - "id": "f01872ed-0d4f-4650-b602-ef2fe9bd10e5", + "id": "1f573991-839a-4970-9973-25da3165e2bb", "name": "Replace Launcher", "request": { "name": "Replace Launcher", @@ -121914,7 +121914,7 @@ }, "response": [ { - "id": "636e52ff-dee7-438a-91d5-d48a0ffe3599", + "id": "e062194b-a7ae-44c7-8760-9b22c39caf9f", "name": "Launcher replaced successfully", "originalRequest": { "url": { @@ -121971,7 +121971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb010fd-a7b7-40aa-9a6d-cd791d8c3102", + "id": "970c318e-a3c8-446b-b2f0-6bcd5dec39a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122028,7 +122028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a79ff5a5-ff0d-4bc3-a877-c90cc75f9342", + "id": "513da52e-127e-4ead-931c-43fa19c578f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122085,7 +122085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "093f4424-36bb-4576-b629-e8330bd6afd9", + "id": "bc0fe6ca-e516-4e5c-9ecf-6617fd389ccb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122142,7 +122142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "730388fc-4c23-4382-ac9e-3681cdb05194", + "id": "abace1bf-7ece-49d6-a607-7ece18fccd1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122199,7 +122199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2598ae5b-11e7-4f5d-a650-de5b9e07b430", + "id": "1632fc7c-f629-4c8b-b4e1-b50c3d5dcc24", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122256,7 +122256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d84778c9-58e6-444f-9123-3248293a07c2", + "id": "c675eb13-e546-4f27-aae7-8c1c07e34273", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122319,7 +122319,7 @@ } }, { - "id": "d6c3ffc1-c0d4-4a38-8e08-ad3d9bc4ed82", + "id": "2a25c250-81a6-45da-9e5e-6660ef2b291e", "name": "Delete Launcher", "request": { "name": "Delete Launcher", @@ -122360,7 +122360,7 @@ }, "response": [ { - "id": "842f9e63-f01e-45b5-9e08-91e789ed4d5f", + "id": "f4fc03cf-a4bc-458a-8c6a-8742efebaead", "name": "Launcher deleted successfully", "originalRequest": { "url": { @@ -122394,7 +122394,7 @@ "_postman_previewlanguage": "text" }, { - "id": "72f47d81-4639-4d5b-b013-cfc47d1de749", + "id": "787ed699-60cc-4c74-aa80-92d6aad8e6d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122438,7 +122438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06bdc3c2-ce1d-462a-a479-50ce2e8e9766", + "id": "566eaae1-54fb-4dc1-8f47-569496920358", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122482,7 +122482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e64a1432-43b3-4ece-8277-0a0f4fcb4b0f", + "id": "8797332c-4ba6-4f8e-9bb4-5545c36c965b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122526,7 +122526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a99c6a-d068-4240-a355-72e3e4d80f93", + "id": "e12eeb70-bc85-4547-a691-ddc32d14c030", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122570,7 +122570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ad02811-5e81-4eb7-844a-117a5e45b3e7", + "id": "1b4d410f-0b9d-4f03-9327-4dd363ccac22", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122614,7 +122614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93e3fe47-790c-4aca-b0ae-dbbf04466ad4", + "id": "ec9e5c0d-0c75-4b67-8cd2-c7e985a7d621", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122664,7 +122664,7 @@ } }, { - "id": "3915291f-33fd-4680-978d-b957ca5f405f", + "id": "419f07de-5ba0-4f8b-b238-0fda8b839729", "name": "Launch a Launcher", "request": { "name": "Launch a Launcher", @@ -122707,7 +122707,7 @@ }, "response": [ { - "id": "2828a66e-39d0-4a58-9ac5-8b35ee8e8517", + "id": "6f51a5eb-35ce-47b9-a113-7ac4446fd29f", "name": "Launcher launched successfully", "originalRequest": { "url": { @@ -122753,7 +122753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b15984-5922-4a2c-91d0-1326ec9ce3ba", + "id": "e1589b07-ecce-4b00-9c3c-4cbb8439a1bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122799,7 +122799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd4502d-d712-4ada-8f5d-e803b6fcf2ab", + "id": "5555e65c-062b-4122-b9ac-742182d3ace9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122845,7 +122845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fccf5b4e-ab7f-463a-bbc3-bd563320851c", + "id": "a5cecee5-9b3c-4cf8-8eaa-8f332fc0a96c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122891,7 +122891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc8e7bb0-4a1f-4a9c-814f-2b1fc5916e9b", + "id": "523ff9d1-bba0-4de3-819f-9528c60ca50a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -122937,7 +122937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80491cc4-ad06-4e79-af45-b31a1a7974c2", + "id": "d0cbc370-d16c-4978-8634-c0cfe42d6917", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122983,7 +122983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf6e0a5e-27cd-4fff-bdce-04283cc38baf", + "id": "cc519c36-da8e-449d-9c17-ea93bdb672d7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123041,7 +123041,7 @@ "description": "Use this API to implement and customize lifecycle state functionality.\nWith this functionality in place, administrators can view and configure custom lifecycle states for use across their organizations, which is key to controlling which users have access, when they have access, and the access they have.\n\nA lifecycle state describes a user's status in a company. For example, two lifecycle states come by default with Identity Security Cloud: 'Active' and 'Inactive.'\nWhen an active employee takes an extended leave of absence from a company, his or her lifecycle state may change to 'Inactive,' for security purposes.\nThe inactive employee would lose access to all the applications, sources, and sensitive data during the leave of absence, but when the employee returns and becomes active again, all that access would be restored.\nThis saves administrators the time that would otherwise be spent provisioning the employee's access to each individual tool, reviewing the employee's certification history, etc.\n\nAdministrators must define the criteria for being in each lifecycle state, and they must define how Identity Security Cloud manages users' access to apps and sources for each lifecycle state.\n\nIn Identity Security Cloud, administrators can manage lifecycle states by going to Admin > Identities > Identity Profile, selecting the identity profile whose lifecycle states they want to manage, selecting the 'Provisioning' tab, and using the left panel to select the lifecycle state they want to modify.\n\nIn the 'Provisioning' tab, administrators can make the following access changes to an identity profile's lifecycle state:\n\n- Enable/disable the lifecycle state for the identity profile.\n\n- Enable/disable source accounts for the identity profile's lifecycle state.\n\n- Add existing access profiles to grant to the identity profiles in that lifecycle state.\n\n- Create a new access profile to grant to the identity profile in that lifecycle state.\n\nAccess profiles granted in a previous lifecycle state are automatically revoked when the identity moves to a new lifecycle state.\nTo maintain access across multiple lifecycle states, administrators must grant the access profiles in each lifecycle state.\nFor example, if an administrator wants users with the 'HR Employee' identity profile to maintain their building access in both the 'Active' and 'Leave of Absence' lifecycle states, the administrator must grant the access profile for that building access to both lifecycle states.\n\nDuring scheduled refreshes, Identity Security Cloud evaluates lifecycle states to determine whether their assigned identities have the access defined in the lifecycle states' access profiles.\nIf the identities are missing access, Identity Security Cloud provisions that access.\n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for Identity Security Cloud to send whenever an identity with that identity profile has a lifecycle state change.\nRefer to [Configuring Lifecycle State Notifications](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#configuring-lifecycle-state-notifications) for more information on how to do so.\n\nAn identity's lifecycle state can have four different statuses: the lifecycle state's status can be 'Active,' it can be 'Not Set,' it can be 'Not Valid,' or it 'Does Not Match Technical Name Case.'\nRefer to [Moving Identities into Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#moving-identities-into-lifecycle-states) for more information about these different lifecycle state statuses.\n\nRefer to [Setting Up Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html) for more information about lifecycle states.\n", "item": [ { - "id": "2f8ac48f-3f19-4218-a5e0-782282ec41bb", + "id": "3a9917d5-2083-4a69-aca0-c66da9d22acb", "name": "Get Lifecycle State", "request": { "name": "Get Lifecycle State", @@ -123094,7 +123094,7 @@ }, "response": [ { - "id": "7521a933-15f2-4dcb-a387-2f4161e8a510", + "id": "171b397e-d0fc-49a3-b84d-e1ef08f07315", "name": "Requested lifecycle state.", "originalRequest": { "url": { @@ -123140,7 +123140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d245212-e918-4d66-a09c-ab61b57afe3e", + "id": "23858652-0bbb-4ac1-88be-40bcdf435d01", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123186,7 +123186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e859ffa6-c583-4531-99c0-8f18cb315094", + "id": "838c46af-e934-43d3-824b-3e17643c8447", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123232,7 +123232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "172bfca9-247d-4136-b423-b818efabf4b5", + "id": "d4c80342-067b-4ba4-ba8f-cf6a072a6553", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123278,7 +123278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781e9092-e30d-4a7f-a979-e8c383d9f705", + "id": "338c0b66-ea76-487b-a50d-aab0c4d8b3fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123324,7 +123324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b53eafb-a965-4d1a-a57e-92c4b6767cf1", + "id": "5e0bee33-7787-4460-943b-267a441c1cbd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123376,7 +123376,7 @@ } }, { - "id": "7517b8c4-c24b-4128-8437-88668a5f25f3", + "id": "5b448f2d-fb9c-4c76-aa0b-a895a0f49990", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -123442,7 +123442,7 @@ }, "response": [ { - "id": "f61db2a2-78c3-4ce9-9868-716bafbcdfc9", + "id": "433e367e-0804-44b7-b205-5b14b3769e95", "name": "Updated lifecycle state.", "originalRequest": { "url": { @@ -123501,7 +123501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8539a523-20cc-4cfb-a491-6c68cf85ffb1", + "id": "c391eab2-397f-4c15-9415-5fb1a87fd0ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123560,7 +123560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42f1f71c-015e-4736-a501-01d022706edf", + "id": "b385178d-94b9-4b7c-b6e3-411e31e2d47f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123619,7 +123619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bec5796-7997-477b-88dc-97da7b724599", + "id": "af7f1695-1bfd-4d81-8948-3cfce927f2b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123678,7 +123678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aa0c6ae-e399-422d-ae82-faed05cede85", + "id": "66bcbc92-abbd-4991-8e5f-8e3a97c74ff7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123737,7 +123737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81abd63c-d59b-4b13-ac3c-cb540d6447db", + "id": "0a5d7aeb-5b10-454f-bed4-b1fd53929eba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123808,7 +123808,7 @@ "description": "Read and write operations for managing client data and statuses", "item": [ { - "id": "1b32973c-d0cb-4772-9109-664d9080aa5e", + "id": "03f417cd-c2b0-4bd9-b571-ae4bb85c51a1", "name": "Specified Managed Client Status.", "request": { "name": "Specified Managed Client Status.", @@ -123860,7 +123860,7 @@ }, "response": [ { - "id": "6e72ee48-da7b-4c00-a038-aaa15952e9c6", + "id": "2504f744-cd99-4df7-8eb6-fd4b82ba7ae7", "name": "Responds with Managed Client Status having the given ID and Type.", "originalRequest": { "url": { @@ -123910,12 +123910,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "body": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b3e952f-7f6b-49d8-a5a5-1d3cec90ad83", + "id": "398b2239-8aa5-4fa2-8c83-96e5892e30cf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123970,7 +123970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "470f6da5-9e44-4c3d-863e-b8d7a6ff0b88", + "id": "ac23888a-665c-4654-a622-02818b30b9c1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124025,7 +124025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56fdd954-a136-4e6c-824c-2d4caa215266", + "id": "16d78b54-8011-41bb-97a8-8b3271d4c743", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124080,7 +124080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5db17222-0897-424d-8efe-41e74ee6e286", + "id": "5fdb058c-0b06-4229-9cc6-0f8a33f1c31d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124135,7 +124135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "560707b2-bf55-4449-9c0b-3a5bcfec43a6", + "id": "d154969c-f4da-4235-9e98-7f9c70d2c752", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124190,7 +124190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40d0f447-d652-4330-b241-2ea45e1a09a3", + "id": "affdc81b-baa0-480f-a782-0b8b5bfae214", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124251,7 +124251,7 @@ } }, { - "id": "4baeac2f-2a76-4926-8d1a-364bad464872", + "id": "20c99f41-91f7-4948-95bd-d8bd28be8000", "name": "Handle status request from client", "request": { "name": "Handle status request from client", @@ -124295,7 +124295,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124306,7 +124306,7 @@ }, "response": [ { - "id": "08019da6-ad66-4968-bb93-8c077163aefa", + "id": "21370a1a-617a-49f4-91ec-3c22cf2db65c", "name": "Responds with the updated Managed Client Status.", "originalRequest": { "url": { @@ -124342,7 +124342,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124359,12 +124359,12 @@ "value": "application/json" } ], - "body": "{\n \"body\": {\n \"body\": {\n \"clientId\": \"1528\",\n \"clusterId\": \"1533\",\n \"orgType\": \"test\",\n \"vaDownloadUrl\": \"https://sptcbu-va-images.s3.amazonaws.com/va-latest.zip\",\n \"clusterJobCount\": 1,\n \"configuration\": {\n \"clusterType\": \"sqsCluster\",\n \"clusterExternalId\": \"2c91808876dd79120176f758af765c58\",\n \"debug\": \"false\",\n \"failureThreshold\": \"0\",\n \"gmtOffset\": \"-6\",\n \"scheduleUpgrade\": \"false\",\n \"va_version\": \"va-megapod-useast1-595-1627543540\",\n \"jobType\": \"VA_UPGRADE\",\n \"cookbook\": \"va-megapod-useast1-595-1627543540\"\n },\n \"connectorServices\": [\n {\n \"name\": \"EndToEnd-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-AzureADSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-OpenLDAP\",\n \"connector_host\": \"10.0.2.64\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"Dynamic-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcADSource\",\n \"connector_host\": \"10.0.5.187\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": [\n {\n \"serviceId\": \"540717\",\n \"date\": \"2021-02-05T22:58:15Z\",\n \"file\": \"temp7081703651350031905mysql-connector-java-8.0.11.jar\"\n }\n ]\n }\n ],\n \"jobs\": [\n {\n \"uuid\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"cookbook\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"state\": \"FINISHED\",\n \"type\": \"VA_UPGRADE\",\n \"targetId\": \"1528\",\n \"managedProcessConfiguration\": {\n \"charon\": {\n \"version\": \"345\",\n \"path\": \"sailpoint/charon\",\n \"description\": null,\n \"dependencies\": null\n },\n \"ccg\": {\n \"version\": \"415_583_79.0.0\",\n \"path\": \"sailpoint/ccg\",\n \"description\": null,\n \"dependencies\": null\n },\n \"toolbox\": {\n \"version\": \"6\",\n \"path\": \"sailpoint/toolbox\",\n \"description\": null,\n \"dependencies\": null\n },\n \"fluent\": {\n \"version\": \"50\",\n \"path\": \"fluent/va\",\n \"description\": null,\n \"dependencies\": null\n },\n \"va_agent\": {\n \"version\": \"89\",\n \"path\": \"sailpoint/va_agent\",\n \"description\": null,\n \"dependencies\": null\n }\n }\n }\n ],\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"maintenance\": {\n \"window\": \"true\",\n \"windowStartTime\": \"2021-07-29T00:00:00Z\",\n \"windowClusterTime\": \"2021-07-29T01:35:24Z\",\n \"windowFinishTime\": \"2021-07-29T04:00:00Z\"\n }\n }\n },\n \"status\": \"FAILED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "body": "{\n \"body\": {\n \"body\": {\n \"clientId\": \"1528\",\n \"clusterId\": \"1533\",\n \"orgType\": \"test\",\n \"vaDownloadUrl\": \"https://sptcbu-va-images.s3.amazonaws.com/va-latest.zip\",\n \"clusterJobCount\": 1,\n \"configuration\": {\n \"clusterType\": \"sqsCluster\",\n \"clusterExternalId\": \"2c91808876dd79120176f758af765c58\",\n \"debug\": \"false\",\n \"failureThreshold\": \"0\",\n \"gmtOffset\": \"-6\",\n \"scheduleUpgrade\": \"false\",\n \"va_version\": \"va-megapod-useast1-595-1627543540\",\n \"jobType\": \"VA_UPGRADE\",\n \"cookbook\": \"va-megapod-useast1-595-1627543540\"\n },\n \"connectorServices\": [\n {\n \"name\": \"EndToEnd-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-AzureADSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-OpenLDAP\",\n \"connector_host\": \"10.0.2.64\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"Dynamic-ADSource\",\n \"connector_host\": \"host.example.com\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcADSource\",\n \"connector_host\": \"10.0.5.187\",\n \"connector_port\": \"389\",\n \"connector_(boolean)useSSL\": false,\n \"connectorFileUploadHistory\": null\n },\n {\n \"name\": \"EndToEnd-JdbcSource\",\n \"connector_host\": null,\n \"connector_port\": null,\n \"connector_(boolean)useSSL\": null,\n \"connectorFileUploadHistory\": [\n {\n \"serviceId\": \"540717\",\n \"date\": \"2021-02-05T22:58:15Z\",\n \"file\": \"temp7081703651350031905mysql-connector-java-8.0.11.jar\"\n }\n ]\n }\n ],\n \"jobs\": [\n {\n \"uuid\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"cookbook\": \"872b622f-5ab5-4836-9172-e3bb77f05b2c\",\n \"state\": \"FINISHED\",\n \"type\": \"VA_UPGRADE\",\n \"targetId\": \"1528\",\n \"managedProcessConfiguration\": {\n \"charon\": {\n \"version\": \"345\",\n \"path\": \"sailpoint/charon\",\n \"description\": null,\n \"dependencies\": null\n },\n \"ccg\": {\n \"version\": \"415_583_79.0.0\",\n \"path\": \"sailpoint/ccg\",\n \"description\": null,\n \"dependencies\": null\n },\n \"toolbox\": {\n \"version\": \"6\",\n \"path\": \"sailpoint/toolbox\",\n \"description\": null,\n \"dependencies\": null\n },\n \"fluent\": {\n \"version\": \"50\",\n \"path\": \"fluent/va\",\n \"description\": null,\n \"dependencies\": null\n },\n \"va_agent\": {\n \"version\": \"89\",\n \"path\": \"sailpoint/va_agent\",\n \"description\": null,\n \"dependencies\": null\n }\n }\n }\n ],\n \"queue\": {\n \"name\": \"megapod-useast1-denali-lwt-cluster-1533\",\n \"region\": \"us-east-1\"\n },\n \"maintenance\": {\n \"window\": \"true\",\n \"windowStartTime\": \"2021-07-29T00:00:00Z\",\n \"windowClusterTime\": \"2021-07-29T01:35:24Z\",\n \"windowFinishTime\": \"2021-07-29T04:00:00Z\"\n }\n }\n },\n \"status\": \"NORMAL\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eeeb07e4-d076-4ce9-889d-0710ff643255", + "id": "7c27de39-892d-470b-823e-9c68613a0282", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124400,7 +124400,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124422,7 +124422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7eb91ec-2be7-4c8f-97a8-9bbe70c5cbdd", + "id": "3299311e-fba1-4f92-b0f6-e09e29020035", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124458,7 +124458,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124480,7 +124480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b7c276-58f0-43d1-9ad9-5b96b17bec30", + "id": "05b3a2d6-8b89-4900-8118-14fd997bee03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124516,7 +124516,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124538,7 +124538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139f3e94-98dd-43f8-b403-2c59d2978ce6", + "id": "16a0f8e8-65a2-4736-818b-88f7c42bdc1c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124574,7 +124574,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124596,7 +124596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fcfc416-1ddc-4c3a-9126-70875fc4a0e8", + "id": "f4743c07-31dc-4656-841d-286fd5ec6ba0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124632,7 +124632,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124654,7 +124654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6ade63c-d913-43e4-a100-5a8274a60018", + "id": "b410187e-d4ed-4a4d-8948-7849c46dfb5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124690,7 +124690,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"NOT_CONFIGURED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", + "raw": "{\n \"body\": {\n \"alertKey\": \"\",\n \"clusterId\": \"1234\",\n \"ccg_etag\": \"ccg_etag123xyz456\",\n \"ccg_pin\": \"NONE\",\n \"cookbook_etag\": \"20210420125956-20210511144538\",\n \"hostname\": \"megapod-useast1-secret-hostname.sailpoint.com\",\n \"internal_ip\": \"127.0.0.1\",\n \"lastSeen\": \"1620843964604\",\n \"sinceSeen\": \"14708\",\n \"sinceSeenMillis\": \"14708\",\n \"localDev\": false,\n \"stacktrace\": \"\",\n \"state\": null,\n \"status\": \"NORMAL\",\n \"uuid\": null,\n \"product\": \"idn\",\n \"va_version\": null,\n \"platform_version\": \"2\",\n \"os_version\": \"2345.3.1\",\n \"os_type\": \"flatcar\",\n \"hypervisor\": \"unknown\"\n },\n \"status\": \"UNDEFINED\",\n \"type\": \"CCG\",\n \"timestamp\": \"2020-01-01T00:00:00.000000Z\"\n}", "options": { "raw": { "headerFamily": "json", @@ -124724,7 +124724,7 @@ "description": "Operations for accessing and managing client Clusters, including Log Configuration", "item": [ { - "id": "227af0a6-133c-4fe9-8ce6-7e047ec87dca", + "id": "1cc3426e-e634-4a63-87f8-52746d15191b", "name": "Get a specified ManagedCluster.", "request": { "name": "Get a specified ManagedCluster.", @@ -124765,7 +124765,7 @@ }, "response": [ { - "id": "e97102eb-2ef8-4f57-9a6f-1c866e68939a", + "id": "3519df22-ba78-49aa-855a-14cafc84e3f3", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -124809,7 +124809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df69fe5b-ad4d-4e45-bbf0-2301591e9f36", + "id": "665177a1-fd22-4ede-aa76-f5a6f115a422", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124853,7 +124853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddf8a3cf-aed5-4ff1-b4cb-9fbbee2112ad", + "id": "e5f50f6a-2516-4fb0-97c4-e85522a99be7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124897,7 +124897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fec5fea-4079-4ce2-8e2d-dbb33c11ada7", + "id": "c1dcd6d8-234e-444f-bc0c-a2f0d459298f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124941,7 +124941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7175169c-9348-4dcd-92ae-399a0ecece80", + "id": "fca917e5-e58c-4995-bc23-41b9738b451b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -124985,7 +124985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6836d6-a175-4c36-81ee-9740c0ad1b7e", + "id": "9368985e-ff1a-459c-876a-9e817759ecc9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125029,7 +125029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d2470a-1139-4388-95e2-4f906ab3039b", + "id": "549bc682-fbe6-4e40-b41f-3e7c99be880b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125079,7 +125079,7 @@ } }, { - "id": "4665cfaf-acb7-4cb8-b693-d961e7c16edb", + "id": "9b413654-3f70-40cd-8713-c55a53be8416", "name": "Get managed cluster's log configuration", "request": { "name": "Get managed cluster's log configuration", @@ -125121,7 +125121,7 @@ }, "response": [ { - "id": "3780d748-b394-4d55-923a-19b6bc3897c2", + "id": "791e41b2-3d4a-478a-9086-a797e8acdb59", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -125166,7 +125166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b767cd3-c813-4f0b-b524-d805a82bbd12", + "id": "8d7c26c9-4bd5-4a69-a645-8060bf3eb2ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125211,7 +125211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a4da39-89b2-4450-a6f9-2c737cc8be7a", + "id": "a5599876-f234-4868-805a-70ee6062b8f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125256,7 +125256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "609c5aeb-67b2-4830-9512-974447bbb9aa", + "id": "09d37423-b0c5-43fc-b4d0-fcd33f84be01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125301,7 +125301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b37cc37-5cdc-4623-9bc2-24b0c14bcfa2", + "id": "71690bb3-8d42-41b9-9b35-3fcdac0376e2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125346,7 +125346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24432c57-b01d-4cf5-9873-aea68420b336", + "id": "16c0e4c5-5906-4fb1-b979-e64ffa868280", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125391,7 +125391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc5f849b-846f-4251-b32b-494c2b5ab52f", + "id": "49478685-62f9-48c9-9300-fbf45142ba0b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125442,7 +125442,7 @@ } }, { - "id": "a6b91324-031a-479c-bd3c-0f2af31fdf26", + "id": "c3534480-338d-41b9-b74c-0e857789a1cf", "name": "Update managed cluster's log configuration", "request": { "name": "Update managed cluster's log configuration", @@ -125497,7 +125497,7 @@ }, "response": [ { - "id": "2d83dad6-f5e3-4784-8358-2746b9823f7c", + "id": "d7b3598d-c618-4a29-bc58-06c64506ef06", "name": "Responds with updated ClientLogConfiguration for given ManagedCluster", "originalRequest": { "url": { @@ -125555,7 +125555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5571e0ce-efea-4bd0-9592-cfc69aa19289", + "id": "212d46b8-949f-46d0-bdf8-1ee982509563", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125613,7 +125613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aa2cb71-6eb4-440f-a39d-c8e5cedf259c", + "id": "a7254f84-ba75-4118-8351-6bd681723079", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125671,7 +125671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea5e84fc-6f99-40e1-a3a5-b84f895aa070", + "id": "4f74de02-9b1d-4e21-966c-41a5eccab41f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125729,7 +125729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ce3db78-3577-4f5e-9171-eaa9d46c4adc", + "id": "58ec4354-e2c9-4a9f-bf2e-4128d46fff33", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -125787,7 +125787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bae0f01-f0b4-4711-97e4-da39411b048f", + "id": "1349665a-51c3-4656-a233-09d33522d4bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125845,7 +125845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b05a258e-ecef-4e59-a95d-9e412ae88bc4", + "id": "915f3798-0790-4d9d-a9e6-c80eadfb6e56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125909,7 +125909,7 @@ } }, { - "id": "2034a9c5-aee3-41ef-879e-5060b442582e", + "id": "41d1e639-242a-4f28-b7a3-a1d3f922e47e", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -125975,7 +125975,7 @@ }, "response": [ { - "id": "2aededf3-e76b-4cdc-a4be-17f4431dd13a", + "id": "3a2bd468-ba35-49a5-ab6b-0eb9729f258b", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -126055,7 +126055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc7b5136-3b91-4d63-a0c0-3395832997ef", + "id": "b0297d72-a0ce-41ff-9675-6bb808f3f98d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126135,7 +126135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d9e812-ae58-410f-90a0-d5cf0f7e23e8", + "id": "f20cbba2-048d-46e1-a43f-a67bddd3b01b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126215,7 +126215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3436cd44-fac0-456a-bfe6-b61758be552e", + "id": "c5c8b52b-250e-4efc-9500-c909cc5ca00d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126295,7 +126295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5fffb91-cfd2-4521-8b7a-87766f92c5d0", + "id": "dd0b0777-fe35-4701-adf9-2088fc55e0f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126375,7 +126375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fa298a6-f097-481c-95c8-3bd1a57a9996", + "id": "ad76fec7-162e-4494-9960-2d25a54d9b99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126467,7 +126467,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "5b376e44-ca1c-459e-aff1-6516edebdefc", + "id": "114a84c6-2b3d-4eb8-9e45-cdac6ebffcc2", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -126498,7 +126498,7 @@ }, "response": [ { - "id": "f2e66aee-fa50-4d02-98d8-bd560e76ffa4", + "id": "05a11cec-e19a-4e82-9816-7da3ff811d3c", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -126543,7 +126543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2426a6d3-477a-4329-9076-801a8d7835c8", + "id": "3955a767-256f-4ad4-8e53-fa8484f1e53d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126588,7 +126588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d92a32b6-9531-4db6-b2dd-038a67f5e635", + "id": "c6c64000-8671-43e1-8377-533f0cb2646c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126633,7 +126633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16cc610a-289c-4a12-bf90-bd73d8419546", + "id": "a7c00792-9038-4a10-9bf6-908f2e1d1a5a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126678,7 +126678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e34cf704-ada4-41e9-8138-8bf8c213945b", + "id": "fb19bb25-345e-4874-8530-feb369890756", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126723,7 +126723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d17fec3b-3a8b-4f08-a8a0-6af926f4ca13", + "id": "f2f044f9-cc2e-4d6a-89e3-b92413fce785", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126774,7 +126774,7 @@ } }, { - "id": "100ec9ca-7ea5-4a27-9880-07db6b1dc0fd", + "id": "a711bd88-d765-4bac-b9e1-99f18c368d02", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -126818,7 +126818,7 @@ }, "response": [ { - "id": "f79c8ff6-7140-4954-99e5-4346b034de5f", + "id": "8eae895f-22f7-4446-8275-1c3221b9ff61", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -126876,7 +126876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b97688f8-7eee-4bb3-a878-d152da1bd6fc", + "id": "66a5c29c-6499-4707-a3c3-3265acb21e50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126934,7 +126934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79c4e2ea-61c0-4eea-b863-3559abea0463", + "id": "c77ca4d4-317b-4966-a887-6d766bb04213", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126992,7 +126992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b47493c-054a-463d-b1bb-0f7c1e52e0a1", + "id": "49472e0a-4fb9-462f-b7c6-d36b1685daf1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127050,7 +127050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88d65cb2-b6c8-4aaf-aef4-602bc94621f7", + "id": "acde1578-31c5-43e5-b794-59cfcedf1add", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127108,7 +127108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5377afba-ef0a-4458-b053-1f753cc96e6f", + "id": "d34cdff0-fb0e-4027-bb17-da163ba2c4fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127172,7 +127172,7 @@ } }, { - "id": "72b2c742-7c40-448c-a0c1-9efbe38bad4c", + "id": "efd3b3ab-bc73-4edd-90eb-57413b941863", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -127203,7 +127203,7 @@ }, "response": [ { - "id": "0959073e-d7ec-4241-a919-aae759507cf9", + "id": "205063a8-d5d0-4057-8e20-1abf2c43c048", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -127248,7 +127248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a6300ec-db01-47f1-85ca-3d24b6868221", + "id": "29cfcc53-f16e-4339-b685-10d009b2b9e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127293,7 +127293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da11f963-dd85-4934-a59b-2eb915f1cb83", + "id": "827b0adc-2b5d-45db-85eb-8c4477a2c55b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127338,7 +127338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbf6b75a-f589-4557-92cb-3dab3d477257", + "id": "6a8d1f4d-c5ac-4644-920a-812258809072", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127383,7 +127383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9919bfe0-ca69-4a72-ad3b-4d3d2e0a2a6b", + "id": "c1ead44a-a955-4585-8994-32bcb31b88d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127428,7 +127428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c8eed4a-b7f3-42de-b471-713e82f3e8a2", + "id": "20860777-0a13-4058-8201-e1148b930b16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127479,7 +127479,7 @@ } }, { - "id": "8757ad61-a141-46fe-8083-c627549cbd7a", + "id": "50c13f24-545a-4ded-96e7-e4de4694fbb2", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -127523,7 +127523,7 @@ }, "response": [ { - "id": "4aaa2ceb-70bd-42e1-a0f3-bc9904d6bebd", + "id": "3ae98f07-0823-4fcd-b028-bf08c67b7961", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -127581,7 +127581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92be1712-a0f4-447a-ab10-24aeaa99c6c7", + "id": "3bfc739f-3391-48ee-ba57-5a6ee80799c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127639,7 +127639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec32ad88-ca77-45e3-9424-07c74b35e366", + "id": "b4833e12-d2ce-40b4-9c2d-0e090ac3cc77", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127697,7 +127697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9fd8a5d-ed8c-45c1-a2da-2ec27ecea222", + "id": "933f453e-9aef-4a64-8b00-2724578bae8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127755,7 +127755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e7bfffc-828a-4cc3-847c-c18282332bf4", + "id": "0b774d7f-bec7-429a-b2a0-2e7033fdfe42", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127813,7 +127813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7735232-37de-4810-a693-0a29965f5e95", + "id": "1bd7e041-921c-43c5-a06a-a4caea82e902", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127877,7 +127877,7 @@ } }, { - "id": "fcc0ee83-6b58-4757-a13f-ad895787a456", + "id": "2959deec-9756-4b3c-a4df-f3a8cad80255", "name": "Configuration of KBA MFA method", "request": { "name": "Configuration of KBA MFA method", @@ -127918,7 +127918,7 @@ }, "response": [ { - "id": "47a184de-83f3-4c48-92c9-af69eefd6260", + "id": "a343c3e9-a8c5-4c98-a68a-ca6bb48ed0e7", "name": "The configuration for KBA MFA method.", "originalRequest": { "url": { @@ -127973,7 +127973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46c28fef-cf49-498f-a321-acc551819282", + "id": "3cd153b0-3160-458c-a238-70cd50936785", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128028,7 +128028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bbbf6cb-ad7e-459d-a940-1a2c228c9694", + "id": "c9f3b89b-7cff-4d18-8f5f-27f55e225b5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128083,7 +128083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4edd7500-7ffe-49ed-8ce5-a4a02d5e0694", + "id": "ec2db2ac-a0e7-4414-9a07-5747d3a43d14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128138,7 +128138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5919bd68-cb0a-4b2e-826f-f5fd8f22061a", + "id": "a597d079-f81a-47f4-b7a5-7223765c65b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128193,7 +128193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75af5cd5-84dc-45a8-8133-f14d70455dca", + "id": "999be3f0-16b9-4464-bfee-07a719be5de3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128254,7 +128254,7 @@ } }, { - "id": "61c0fecc-4858-4b27-bb74-f02468f21679", + "id": "686e9902-a3ed-490a-b184-f1a8281bdf59", "name": "Set MFA KBA configuration", "request": { "name": "Set MFA KBA configuration", @@ -128299,7 +128299,7 @@ }, "response": [ { - "id": "5013b88d-e1f4-4dc1-8547-bdf1b8d77854", + "id": "1e5f5201-c448-4d4c-ab70-0f04775f6d96", "name": "The new KBA configuration for the user.", "originalRequest": { "url": { @@ -128358,7 +128358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca59084f-99b6-460d-8662-700043e3390a", + "id": "2cd746bb-b574-4fd4-92e8-38f38199a9fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128417,7 +128417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1e0d472-c089-485c-b254-6f015935f31f", + "id": "82a0c752-d44b-407c-abf4-19cb1f0733d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128476,7 +128476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2de9791-ab33-44da-a003-fb00da9fb22b", + "id": "0055f8c6-0dfe-42d6-aa9b-71392cd3edaa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128535,7 +128535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c836d4fb-a193-46e2-95ea-cd1d840b53f3", + "id": "0b174492-86d3-4e86-b9fe-a985311548ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128594,7 +128594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32760763-571c-4b73-94f3-85aa8dd3eca5", + "id": "edc3f6bc-6dd0-44c7-a6c2-39f0d4d8a7d5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128659,7 +128659,7 @@ } }, { - "id": "a371d514-0424-41e8-9893-83cd83f167df", + "id": "c8ba2938-97bd-4748-bb78-aaa5e8e4e193", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -128701,7 +128701,7 @@ }, "response": [ { - "id": "60c77eb7-cc55-4e59-8afb-0858825e40e9", + "id": "868b612f-59aa-45cf-974f-c783aa99130c", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -128746,7 +128746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73a4d421-6d5f-4fb7-b039-2f3b1b83c0d7", + "id": "ec57942e-6a5a-481e-a00e-b296dafa80cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128791,7 +128791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd24ce8e-e956-4520-b10d-7605de26b3d6", + "id": "a44155e0-2f32-4f78-ba64-ba6c26182e4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128836,7 +128836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bada9d79-2320-4132-9293-2ba40c1e1695", + "id": "7effcd79-acbc-4500-ba68-6d1f757711d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128881,7 +128881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58615d29-e650-48e2-891a-fb146952ee4a", + "id": "1f441acd-1db2-4412-ad5a-54976bb1dd3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128926,7 +128926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c0b05d8-9168-44b9-b460-525a9a2560eb", + "id": "9e0148a1-1538-4f38-8b73-8e870c88362f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128977,7 +128977,7 @@ } }, { - "id": "8aa9f842-d36e-46a9-b680-781abea51424", + "id": "dfe9a6ee-476c-4485-804b-e856ed9a5255", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -129019,7 +129019,7 @@ }, "response": [ { - "id": "15d81fc2-23a3-40c1-8255-8f3f4f584d80", + "id": "925c0e2a-f124-426f-8510-596105f26456", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -129064,7 +129064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f62784d-83c1-473c-81ec-7aaafb73623e", + "id": "c739675b-052f-4a76-a5b8-0043d1b67e42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129109,7 +129109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d3435d-61ee-4d9d-a5be-3c93f6ede6c8", + "id": "360bbbc7-d66f-4fcd-bf14-1fcd8d444cac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129154,7 +129154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bd36262-6af3-47c4-ac88-e3efdb6ef134", + "id": "82109c9e-1345-4c72-9edc-72b1eccbb1c0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129199,7 +129199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9123abf0-57df-47d7-b3a9-1e31668a3468", + "id": "94052933-12f0-4d84-9c34-c2c1dae4b619", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129244,7 +129244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cebb485c-59ab-4d65-88f7-938c595c3c68", + "id": "2e967c99-6843-43aa-9fd7-25b7fe86df81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129301,7 +129301,7 @@ "description": "This API used for multifactor authentication functionality belong to gov-multi-auth service. This controller allow you to verify authentication by specified method", "item": [ { - "id": "3c5597bb-e7cb-49c1-ad46-46a4a00b64bc", + "id": "57e13598-7520-4148-87e7-b32295d92f80", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -129345,7 +129345,7 @@ }, "response": [ { - "id": "cb59a5bd-e866-4c9c-a798-a729afd5febe", + "id": "234c6957-a02c-4732-b85f-dbb4eafb6f98", "name": "The status of verification request.", "originalRequest": { "url": { @@ -129403,7 +129403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adf445fc-9caa-4c72-b70e-3214ffa5b3af", + "id": "74e7dfbf-690d-4a42-9ae5-e8b5f2d9c6a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129461,7 +129461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a57cff1f-24e5-4187-b046-e28d621b27ed", + "id": "511d1548-ae67-4431-b12f-8344277fcbc4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129519,7 +129519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c74edca-ccae-4424-aea2-da65ad52e8d1", + "id": "c421860a-5a29-4264-b221-90b2541dcabc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129577,7 +129577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e17afe-447c-4c0c-a102-10376f2f843d", + "id": "ddadc3c2-0331-441b-a8b2-834a76e3f4ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129635,7 +129635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d15f6a96-4dd1-406b-9714-1265c838930b", + "id": "a78320b2-6ad0-445f-a07c-823e367ceafc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129699,7 +129699,7 @@ } }, { - "id": "641fbd21-5572-403c-bb31-99a78974147a", + "id": "b6af7b16-ffea-4cb2-a2ad-0dc8f674ad16", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -129743,7 +129743,7 @@ }, "response": [ { - "id": "dfae1cc4-3d5a-41bf-bcde-ea74d26fc72e", + "id": "d4800dbd-45b6-4444-b4da-36af06a86156", "name": "The status of verification request.", "originalRequest": { "url": { @@ -129801,7 +129801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e12451e9-7045-4050-96bd-e27dfadde363", + "id": "7c9c1514-a7e8-4972-888f-d2b4ece93ef8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129859,7 +129859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b750b6cd-86cb-41c2-ac97-77ac4d5e71b7", + "id": "52e55672-5dca-426e-8788-ea07464556e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129917,7 +129917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d8daed-3ca5-4f6e-9f27-da1691904bc3", + "id": "c331ae2a-c785-4a68-b8ad-1211b75ddada", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129975,7 +129975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63601a43-e745-440c-9795-ccc7cd58f285", + "id": "b94bd7ef-0638-4b94-8050-bf74c0c42cc5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130033,7 +130033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587b5bbb-5a73-4e59-8da9-ff8acd25d684", + "id": "cfb23931-97fd-40f7-a03e-5cddef874ea1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130097,7 +130097,7 @@ } }, { - "id": "02ca583f-77b1-45a7-898a-d5a1bda510a5", + "id": "e8944087-49a2-4c7b-bc9c-25a6b9216e10", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -130152,7 +130152,7 @@ }, "response": [ { - "id": "7806ea48-a705-4982-b7a5-f232a0a88394", + "id": "1443116a-205c-4f2d-94c9-4cd2c250dd69", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -130210,7 +130210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3deed9a1-a06e-4427-b25d-fa4c9dc2c037", + "id": "4e52ef5c-00b1-4d51-bdd0-acbbf0e65d60", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130268,7 +130268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "061ab43c-6470-440e-9b2f-eb699ac63cf6", + "id": "577fd384-0c8c-44e8-93d4-20d1bf574d6f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130326,7 +130326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "887000de-516f-4b60-b427-895a29867f0d", + "id": "cb9baaa4-5e2a-4cc4-ba58-20dac1be3424", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130384,7 +130384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc36480a-41d8-412f-be7e-191369acafe0", + "id": "642fc3db-ab6b-4865-aaa7-68aa63b8bafa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130442,7 +130442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd7e5167-6f78-41c2-a74c-73a13073886e", + "id": "04ed4d5f-c627-45f4-a8d5-731ba7407062", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130506,7 +130506,7 @@ } }, { - "id": "6855c479-6489-4acc-876c-ec6a95c9ccd4", + "id": "7dc1ea50-2d92-4fbd-8a8a-6dd251fe4b27", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -130550,7 +130550,7 @@ }, "response": [ { - "id": "6d34cfad-9bff-4ea2-93bb-aa05c1e0d368", + "id": "18c8ed4d-7746-4f90-8020-37ac49922022", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -130608,7 +130608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03586c01-faea-4eb6-96e1-a8450b543a95", + "id": "3d74d055-2a04-49b2-9fda-12d3b88b1a13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130666,7 +130666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42ad3003-e13a-4455-a381-65ef5c09a331", + "id": "89e3678d-45c1-4490-b3f7-5c9f6e038e91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130724,7 +130724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfa23bce-ab51-4ec7-af5e-f10cbc59fe3e", + "id": "cbfa0de9-190b-4085-b80e-0b74cf406b16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130782,7 +130782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c34890a-eb95-4b6d-b59f-3ac1c696e1c4", + "id": "b20df660-ef13-4781-b640-c80a5debdd8a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130840,7 +130840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "627e2fb4-9ba2-4558-a5a6-b77afd9fb028", + "id": "31a85e91-b619-4481-a9a5-57d6a1ba2209", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130904,7 +130904,7 @@ } }, { - "id": "3e7f2f28-cb0e-4d60-866f-ed721e79ae3e", + "id": "6ce07c4f-19d0-4582-a5aa-15bb401c6e35", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -130948,7 +130948,7 @@ }, "response": [ { - "id": "83aa432c-9134-4161-93ed-470abd7dfb56", + "id": "62a38e24-7eff-4e89-ba0e-bd3add744600", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -131006,7 +131006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13b87820-0dcd-4f41-b835-6d2fc981168b", + "id": "65e379ae-0efc-423c-9b22-d8113c4c10e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131064,7 +131064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aea2531-c09b-4b14-a2ef-603c27d6df26", + "id": "7b891c14-4805-4a3e-a57b-20c653140d2c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131122,7 +131122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58f1a270-352a-434d-a44f-bf397cf8e85d", + "id": "df71a70d-505b-48c2-9985-a7f085dc9565", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131180,7 +131180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd3a1c4b-bf26-421a-9b5b-f7fa65e4e528", + "id": "388e932f-631b-4ef8-bd56-97f85046654d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131238,7 +131238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad835c81-5811-402d-a079-66160f77ca3d", + "id": "e2af1636-9f6b-44eb-aca5-f7956da6911b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131302,7 +131302,7 @@ } }, { - "id": "46f96111-e511-4747-8b47-f6074299c7d6", + "id": "93d334fb-fa54-46f0-80fd-e2d8307a4420", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -131346,7 +131346,7 @@ }, "response": [ { - "id": "36899222-0d26-46dc-8f17-1e174a36f7f4", + "id": "5c2ded97-e8fd-46a5-bb45-86ec25c8bb9c", "name": "Token send status.", "originalRequest": { "url": { @@ -131404,7 +131404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6c90c14-cfb9-47c7-b6ba-1a3dc202fb2e", + "id": "e5bee548-f45d-4b83-b0b2-1f86d5cbda50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131462,7 +131462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8d89989-3506-4f97-8876-f7b1e1c4f6ed", + "id": "c342af96-c288-4136-b233-303f0bc78c91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131520,7 +131520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7431c3d2-d964-476c-96e7-a3d043e89ac9", + "id": "6b5fa079-869a-4742-8d89-0de8702a8794", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131578,7 +131578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "287e60a8-c137-405d-b7aa-4cc887e4e3cf", + "id": "9cade920-994e-4875-b9f6-5205d60720d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131636,7 +131636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58e2bb2b-5a53-4a7f-b2c7-b251dee9eadd", + "id": "86ca4741-4494-447b-9046-37005a7477a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131706,7 +131706,7 @@ "description": "Use this API to build a Multi-Host Integration.\nMulti-Host Integration will help customers to configure and manage similar type of target system in Identity Security Cloud.\nIn Identity Security Cloud, administrators can create a Multi-Host Integration by going to Admin > Connections > Multi-Host Sources and selecting 'Create.'\n", "item": [ { - "id": "4c796542-be7e-4b74-b6c4-0493c7c54f05", + "id": "bcae7b8b-e702-4abd-83ca-e6ab6bd223b0", "name": "Create Multi-Host Integration", "request": { "name": "Create Multi-Host Integration", @@ -131748,7 +131748,7 @@ }, "response": [ { - "id": "be717f30-a1d0-483f-a71e-b756615cd5ca", + "id": "166c8650-60ee-4b36-b5a0-dc340ba23e79", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -131804,7 +131804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fadaa28-2e58-4f42-a199-02c809f854c0", + "id": "b5898b58-1fde-489a-9578-a78a2a338485", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131860,7 +131860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83de6ffe-b411-46fa-af4a-ae8472173757", + "id": "4ad802a9-dc61-4e28-b82f-b22310b2b619", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131916,7 +131916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e9c2151-3795-4c61-beb4-a6c3309d65e1", + "id": "1403abfc-d63f-4ab4-94a9-fb1fb4a98b7d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131972,7 +131972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce23bcbc-d195-4b6e-bab2-e7bb3139d38b", + "id": "0249cb5c-900f-448f-b038-6614ac5e0a82", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132028,7 +132028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b126e48-f966-4563-a350-959bc9de7917", + "id": "c2b0e542-1817-4baf-a191-b1f14a6db526", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132084,7 +132084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3067a63b-9b5c-4d2c-b99e-cb830c8006a1", + "id": "fdc64510-7b16-4c84-98b3-0bd801f6b5af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132146,7 +132146,7 @@ } }, { - "id": "58c0d094-7af1-48b0-b5b0-0694b97f0e6c", + "id": "57f16b35-9292-42c8-bdca-a78651ce5862", "name": "List All Existing Multi-Host Integrations", "request": { "name": "List All Existing Multi-Host Integrations", @@ -132230,7 +132230,7 @@ }, "response": [ { - "id": "93c6dd0e-f7a1-496b-ba5d-e20f151950b2", + "id": "d0e7a06e-d15c-41db-93e3-6dfd597dee0b", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -132328,7 +132328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9273715f-089d-4807-885b-58c1159bcfd1", + "id": "cc2e80a7-30b6-42ab-a01f-e6b73efc347d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132426,7 +132426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5d5bd5f-07ea-4d69-ad7d-5c0f72214648", + "id": "97c47bdc-8707-451f-ae12-aaecaecfdbd8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132524,7 +132524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd3b58a9-85a5-40d7-8bc3-285e4ae9fffb", + "id": "847af1d9-f1b7-4ab6-98be-836a9025a6bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132622,7 +132622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c85cd3-53c3-4b7a-afba-5cb3cc3ff939", + "id": "a2ae6b3c-39b2-4d0f-ac63-d977e185856a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132720,7 +132720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "708a8ff5-272e-4f13-8243-0f07664f947f", + "id": "afa0a576-0a5f-43fe-88d4-f8f3ce1ea90b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132818,7 +132818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6077971e-6f9c-41e1-86a4-504fede16ced", + "id": "c1c50762-6923-4dde-ba4b-e6fa367f7cc8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132922,7 +132922,7 @@ } }, { - "id": "3f4873b4-0ff6-4eb3-a3d6-c16735e1c871", + "id": "d8adf52f-6687-4f47-bf66-0951f9aea0e9", "name": "List Multi-Host Integration Types", "request": { "name": "List Multi-Host Integration Types", @@ -132952,7 +132952,7 @@ }, "response": [ { - "id": "fb0a4f38-febf-45d2-8354-dbdfe56e41c1", + "id": "9dc4ba90-d7d9-4c09-90e9-450718ef0ca4", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -132996,7 +132996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f06b5548-2065-4d8c-a521-bd8dd1bdb38d", + "id": "5a937898-b3e4-4d0d-9a78-fdc851e02289", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133040,7 +133040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f3bef61-acea-48a6-beb9-8e00fc1823f6", + "id": "5a770ae9-7b17-4cdf-81e7-2bcd8bfcb50b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133084,7 +133084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa2eae28-274c-4214-bafc-20c35decfdd9", + "id": "90d3f6ad-911a-4e74-ad56-3c54f2606f9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133128,7 +133128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97b775ee-2edc-4d89-963d-dff5daf2b372", + "id": "7610bce5-13f6-4b86-80fb-67a00728cdf6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133172,7 +133172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d017c082-16f6-4cee-81b5-041b9ddacc4a", + "id": "527d783e-86fe-4aae-a313-b93491dec956", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133216,7 +133216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a4de3d3-cb0d-454e-ac8f-f50bc259cf34", + "id": "b3c1f8cc-fa8b-49d0-ab1d-977988e0c87f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133266,7 +133266,7 @@ } }, { - "id": "afc7c636-4f01-426f-8801-5c816fbb736a", + "id": "12e24ecb-3503-452d-9a35-5131e12534b9", "name": "Create Sources Within Multi-Host Integration", "request": { "name": "Create Sources Within Multi-Host Integration", @@ -133320,7 +133320,7 @@ }, "response": [ { - "id": "e16baa3d-489f-44bb-bb95-e8868d23f2de", + "id": "74359146-b3d4-4617-982e-ff3e5f4df5db", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -133367,7 +133367,7 @@ "_postman_previewlanguage": "text" }, { - "id": "652c9584-99c3-46a0-b578-e22aa4489aef", + "id": "f10791a6-2b83-4ddb-b090-d0b3ad2c1a0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133424,7 +133424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5fd4fd8-f4fc-4090-b90d-9a77d6e21e44", + "id": "abdb6145-7b20-43ca-a34b-85f9873c91d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133481,7 +133481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24320aed-78e6-442f-b05a-b7d6bb6640b1", + "id": "362cad40-b13b-4ede-923d-d3128f01239a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133538,7 +133538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12277477-bea1-496f-a3c0-f4eb1e17c500", + "id": "5c764fb9-1c8a-4ede-99ba-a67c311d4ad7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133595,7 +133595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "409d28f2-dfe2-4725-b1c5-8368d94fe6a3", + "id": "15dbf589-9404-4beb-9393-ff2d498087fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133652,7 +133652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e826ba50-8a9a-4dc9-9b1b-3831e89ecacf", + "id": "0ee05c93-c66f-497c-90e7-49d15259d6cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133715,7 +133715,7 @@ } }, { - "id": "d6dbf831-6c44-4f92-bfbe-573e1fb9648f", + "id": "9eaf1274-c82d-485e-8a76-efd563548b80", "name": "Get Multi-Host Integration By ID", "request": { "name": "Get Multi-Host Integration By ID", @@ -133756,7 +133756,7 @@ }, "response": [ { - "id": "67232d42-1620-49ed-8a53-6ce5816461dc", + "id": "b98e5e23-caae-4430-b7d5-7e033da5160d", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -133800,7 +133800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffcb904c-5fec-40d1-aaa2-215c91acd273", + "id": "3de97173-6858-44b8-931e-49b4a4f4d735", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133844,7 +133844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bf86df9-60a2-4932-b7b7-c26bb2f35596", + "id": "dbc57bbc-d1d5-43cf-8928-444a2f301e4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133888,7 +133888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ee1f29-c003-421d-a4af-6f703436c51e", + "id": "e67f3d62-9600-49c1-ae28-a44cf1f0ffbf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133932,7 +133932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28b1eed5-a871-4793-bcdf-92904420e928", + "id": "b1416833-4fbe-44ea-90a1-0be1bbe4f606", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133976,7 +133976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456c126f-5830-4b0f-a72f-bee35bacb9b1", + "id": "04d71917-b5d7-465b-9457-fb6fff44929a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134020,7 +134020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd68bbae-7418-4a2f-b6a9-a6013b730349", + "id": "2ee5758e-d1a2-4524-8f42-ae77bfb928e8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134070,7 +134070,7 @@ } }, { - "id": "1dc913a1-4c96-40e9-ab87-a437478ca328", + "id": "bda6d449-4144-4ee9-bb22-f6f9cc38fcfe", "name": "Delete Multi-Host Integration", "request": { "name": "Delete Multi-Host Integration", @@ -134111,7 +134111,7 @@ }, "response": [ { - "id": "3e6a9ee7-e801-4286-8c11-ebdf66ccd939", + "id": "6b7029be-7a61-4123-8d56-2939c5a9d729", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -134145,7 +134145,7 @@ "_postman_previewlanguage": "text" }, { - "id": "84fb8f7b-be2e-4918-b657-df9650eeefab", + "id": "c6099972-e333-4fb3-aae5-4804d9067a18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134189,7 +134189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08921a11-9b8c-4dbc-932f-144137cbbb18", + "id": "cfabf7b3-047e-4e9f-8c27-b84db0a2aee6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134233,7 +134233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04baf874-a4fe-4405-9f2d-439d81e579de", + "id": "d6aadaa4-1a64-4b31-b352-e481f4e49376", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134277,7 +134277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48b4926c-2519-4366-bd58-f6d090045773", + "id": "1d2850a2-30d7-40f3-bd7f-afbc400b053c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134321,7 +134321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0af0fe50-4a2e-43ce-ab66-a6d7bd310280", + "id": "ba92b529-7ca7-4929-8cfd-c8dccbeb61e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134365,7 +134365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea1ea668-7f2e-4c25-8b4e-9bb58acbb327", + "id": "e40be666-fb54-4e17-92d0-3cb21f4284a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134415,7 +134415,7 @@ } }, { - "id": "d99f7249-14a2-4e6e-9550-cc54de5dadc8", + "id": "3e563fd5-83cb-4b46-a2d8-4fc312a5e013", "name": "Update Multi-Host Integration", "request": { "name": "Update Multi-Host Integration", @@ -134473,7 +134473,7 @@ }, "response": [ { - "id": "8bd58c39-320c-48cc-b4ee-7247e6f77932", + "id": "e41681cf-f7d2-4fc5-af33-a3a1fe1f857d", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -134520,7 +134520,7 @@ "_postman_previewlanguage": "text" }, { - "id": "19ac791f-ee5b-4961-a373-cabeed146211", + "id": "6dd9e3e0-7058-4a5f-a604-459ee8b83400", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134577,7 +134577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "108367f3-16e4-4f0a-819f-4dfb2672928b", + "id": "bc5996d8-4615-469f-986d-a546695e32dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134634,7 +134634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bfce80c-a7be-4d2f-8a1e-67921ebbe471", + "id": "1499d027-c6c0-4dfc-bf60-f5b383cc84c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134691,7 +134691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "616f6225-402c-44ba-8af6-eaa7ce648e48", + "id": "110a8ac2-705c-46e1-b354-7f241a89aed1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -134748,7 +134748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78980684-93e0-4b8c-884f-75633e4b0b03", + "id": "b5ca2f06-1284-417c-83cf-49ad92f25a58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134805,7 +134805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9510ccd1-d469-4329-a43d-c86dbfccc2be", + "id": "e8ab22f8-cc78-4155-8f40-ead244e03086", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134868,7 +134868,7 @@ } }, { - "id": "a858be91-600b-4fa8-be7d-9d7ad67ee33c", + "id": "fb113774-3461-4f29-9231-480a06882fac", "name": "Test Configuration For Multi-Host Integration", "request": { "name": "Test Configuration For Multi-Host Integration", @@ -134911,7 +134911,7 @@ }, "response": [ { - "id": "6bc347d1-5db6-438c-9580-e22bf348906a", + "id": "485b831e-f76e-42c5-a005-c5dd58071531", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -134947,7 +134947,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ce21fc2b-dd91-4351-85d2-9cf60cb83f4f", + "id": "5f57d1de-f7c9-4627-9da6-21762a70f96f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134993,7 +134993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86842bc1-0fb7-49da-b7ef-f469753f2ffe", + "id": "e8360703-2196-45a8-a074-38a52d0685e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135039,7 +135039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "522dca5a-2da9-4752-8dd3-11deecbdd14f", + "id": "7b07246b-256c-4268-bac4-2c9e7e09c0e2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135085,7 +135085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4ec80e7-0b5e-43c5-9d6e-b7208ef0bd72", + "id": "54f21b85-0516-46d1-86f2-41bdec1e7e1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135131,7 +135131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf98232d-9032-43c1-9d53-a900e393b60a", + "id": "c30fab27-e946-491e-8fd1-9975301e5074", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135177,7 +135177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e85320f-7c69-4805-9d77-0b5df2211ec3", + "id": "e2b30061-cf50-47a7-b818-76f08d2e7a81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135229,7 +135229,7 @@ } }, { - "id": "b0333f71-0218-46ab-83b1-cfe0a7e7b6e2", + "id": "26bc5316-88f5-4b1a-bdd3-9ddbd77c773b", "name": "Test Configuration For Multi-Host Integration's Single Source", "request": { "name": "Test Configuration For Multi-Host Integration's Single Source", @@ -135283,7 +135283,7 @@ }, "response": [ { - "id": "e3a96811-7fc7-4f2c-8c85-4d3230148b64", + "id": "8e11485f-53ee-491a-8d23-575099d24130", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -135325,12 +135325,12 @@ "value": "application/json" } ], - "body": "{\n \"success\": true,\n \"message\": \"Tes.\",\n \"timing\": 30437,\n \"resultType\": \"SOURCE_STATE_HEALTHY\",\n \"testConnectionDetails\": \"exercitation ipsum dolore aliquip\"\n}", + "body": "{\n \"success\": true,\n \"message\": \"Tes.\",\n \"timing\": 30437,\n \"resultType\": \"SOURCE_STATE_HEALTHY\",\n \"testConnectionDetails\": \"Lorem ut sit magna esse\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2370f7ec-cdda-419c-8393-e5fdfe30d43d", + "id": "69b7bf63-9352-4a86-bd95-bdb1ec90484c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135377,7 +135377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec8dda7f-de4f-44af-a80d-1b12476c479a", + "id": "44e2afa9-d5cb-41c5-94d1-e7e7dbf7302b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135424,7 +135424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8feafd36-cb7d-4ffd-8ef3-a5151e00b601", + "id": "8fecf261-7e7e-433c-9887-df8ff6a2a811", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135471,7 +135471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "627517b0-daec-4184-874e-914e23128e6b", + "id": "abaf5784-c891-47a0-884a-d3f666c762bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135518,7 +135518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5ab2ccd-c4d0-4fe5-b00e-e3f1e406e462", + "id": "0d77ff06-2a11-4958-8060-c1d39ef11d44", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135565,7 +135565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9d5529c-a3eb-4463-9461-1ed68459d344", + "id": "a86526aa-d875-4368-acbf-0804aa1ee792", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135618,7 +135618,7 @@ } }, { - "id": "408aa215-7e2f-4f5c-bb47-ae9b7e39b6ee", + "id": "6b80e682-b3ee-4811-b181-300303349a28", "name": "List Sources Within Multi-Host Integration", "request": { "name": "List Sources Within Multi-Host Integration", @@ -135700,7 +135700,7 @@ }, "response": [ { - "id": "62ddc8b8-5ade-44ed-bebd-aacfba8ac943", + "id": "2de94d84-1ec0-4220-84df-479e814a6877", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -135791,7 +135791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "185532ab-dc30-4366-9225-7d128504f770", + "id": "9f8c3b30-f8f0-4365-9064-f9e0a0b1bb2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135882,7 +135882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "774a577a-6a78-44f4-808b-117b277079ea", + "id": "f532e99b-d91b-4c5e-929f-efaae87295c1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135973,7 +135973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aabe18fa-66c3-499f-923e-4735eb568c60", + "id": "66a820ae-c4de-4047-a790-bd4b828b981d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136064,7 +136064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "564b6415-56a4-4b27-8d74-1f41d9eb1ced", + "id": "d27c0c3a-dbf3-443a-b495-c94b625988d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136155,7 +136155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1216d67e-07dc-4632-bf18-21f1cadf9084", + "id": "7129539e-58c2-4f9a-a2fa-db1239975350", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136246,7 +136246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6062bd2-940e-48b0-b1d0-ea2a694a8d9f", + "id": "684dba44-73c8-432b-8082-4843f669ced1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136343,7 +136343,7 @@ } }, { - "id": "df55e896-cba2-4de7-8c61-e2a1af79f389", + "id": "5231dc52-7ffd-4d36-834e-0ce9c68614db", "name": "List Multi-Host Source Creation Errors", "request": { "name": "List Multi-Host Source Creation Errors", @@ -136386,7 +136386,7 @@ }, "response": [ { - "id": "32d4ad2c-5450-45c4-8e15-2e54a2c472b9", + "id": "c9981412-551f-4794-a78f-9eed42198688", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -136432,7 +136432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d230888-c72d-4034-a9af-e4e3ef53bb80", + "id": "52697241-83a0-442a-ae35-3fae6c8c1cc0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136478,7 +136478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb1614f2-b548-46de-8cc1-df7c8925219d", + "id": "30209bd4-06c7-4284-9a25-1b230c920114", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136524,7 +136524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e93d4179-f687-4b7c-8e7f-2058c5bc6727", + "id": "05f773f1-1832-43d8-8e3c-4c98d9c82446", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136570,7 +136570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dfdb9b9-3ca2-415a-b989-5c8acbff138a", + "id": "5db3d3fd-532d-420a-b28c-c322cee35fff", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136616,7 +136616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05b54a37-dfed-4bd5-a49b-531223e73f9a", + "id": "2302435e-9ee9-4306-b33b-21a8af8129f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136662,7 +136662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23f644be-e5f5-41b4-b7d8-fbc44144819e", + "id": "385f3a6e-2ea6-41e9-b67b-eff95cc45912", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136714,7 +136714,7 @@ } }, { - "id": "4018b0a7-b94a-4f94-bd1b-348e5cca63a9", + "id": "2bf723c2-767e-4b04-bd4f-203a188cccf8", "name": "Get Account Aggregation Groups Within Multi-Host Integration ID", "request": { "name": "Get Account Aggregation Groups Within Multi-Host Integration ID", @@ -136760,7 +136760,7 @@ }, "response": [ { - "id": "37475909-4c28-451b-9cb7-9463526f2034", + "id": "04f92457-dda4-4562-95dd-fdda12e6ecb3", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -136805,7 +136805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a166d21-a72c-41e0-8b70-a78ddc90b599", + "id": "a2815d42-cda1-4237-bf08-a894531c5ce2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136850,7 +136850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95d2b5f6-5bf9-4a9f-8b36-5feddd80739a", + "id": "d0481af6-136d-4c91-be82-13c07c8d2398", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136895,7 +136895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a056a4-b0fb-4903-b294-b0a9f8062fcb", + "id": "8efc40ee-eb2a-4e97-a1a7-47b52056cf3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136940,7 +136940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce53920-460e-4f04-b517-58ad53ff9d8f", + "id": "fa0fe1b8-8079-4b30-a55f-15f9fa118cf2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136985,7 +136985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de44f970-edc7-49ee-9c06-f4b9527a14ba", + "id": "e4c137de-2f08-42bd-89a1-dea6cd90e011", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137030,7 +137030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a87d93-44d5-48f3-909c-12f85899f676", + "id": "8164ed31-f58b-4bf9-a9b9-ba3c057dd5b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137081,7 +137081,7 @@ } }, { - "id": "90e58a36-c360-4b22-af9d-1f346194f198", + "id": "e3d85873-9848-4f34-a11c-00b0d06106c4", "name": "Get Entitlement Aggregation Groups Within Multi-Host Integration ID", "request": { "name": "Get Entitlement Aggregation Groups Within Multi-Host Integration ID", @@ -137123,7 +137123,7 @@ }, "response": [ { - "id": "5eae0d64-2c66-4957-be8e-b9099eb538b8", + "id": "ed46507a-c0d1-43c9-930a-6f37c2bafefb", "name": "OK. Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -137168,7 +137168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4445ddea-097f-41b0-ae6b-e86f30094301", + "id": "09d49587-52b1-4c13-b959-a5bbc01935d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137213,7 +137213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5da1bb88-12ff-4abb-a902-2c9bd20e0fb9", + "id": "0175acc5-4f8c-4db1-9918-3ca985a30fda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137258,7 +137258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49e6ab72-29c5-4c14-b64e-5df1bac32906", + "id": "c2019603-550a-4727-940f-ee6189f50c98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137303,7 +137303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c706a0c0-96dc-4829-a5e3-8c4bdc82f5df", + "id": "029e3615-d683-4ee0-a3a2-52a8759ab065", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137348,7 +137348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d39ae00-e943-49b7-aa53-dcf28658022d", + "id": "55bbdbaa-17a1-43b8-bac9-f5ff2290f7c8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137393,7 +137393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d3108ba-2547-4a95-a799-16673f5fa58d", + "id": "8502b713-d1df-474c-b491-e3791c082d4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137450,7 +137450,7 @@ "description": "Use this API to implement non-employee lifecycle management functionality.\nWith this functionality in place, administrators can create non-employee records and configure them for use in their organizations.\nThis allows organizations to provide secure access to non-employees and control that access.\n\nThe 'non-employee' term refers to any consultant, contractor, intern, or other user in an organization who is not a full-time permanent employee.\nOrganizations can track non-employees' access and activity in Identity Security Cloud by creating and maintaining non-employee sources.\nOrganizations can have a maximum of 50 non-employee sources.\n\nBy using SailPoint's Non-Employee Lifecycle Management functionality, you agree to the following:\n\n- SailPoint is not responsible for storing sensitive data.\nYou may only add account attributes to non-employee identities that are necessary for business operations and are consistent with your contractual limitations on data that may be sent or stored in Identity Security Cloud.\n\n- You are responsible for regularly downloading your list of non-employee accounts for all the sources you create and storing this list of accounts in a managed location to maintain an authoritative system of record and backup data for these accounts.\n\nTo manage non-employees in Identity Security Cloud, administrators must create a non-employee source and add accounts to the source.\n\nTo create a non-employee source in Identity Security Cloud, administrators must use the Admin panel to go to Connections > Sources.\nThey must then specify 'Non-Employee' in the 'Source Type' field.\nRefer to [Creating a Non-Employee Source](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#creating-a-non-employee-source) for more details about how to create non-employee sources.\n\nTo add accounts to a non-employee source in Identity Security Cloud, administrators can select the non-employee source and add the accounts.\nThey can also use the 'Manage Non-Employees' widget on their user dashboards to reach the list of sources and then select the non-employee source they want to add the accounts to.\n\nAdministrators can either add accounts individually or in bulk. Each non-employee source can have a maximum of 20,000 accounts.\nTo add accounts in bulk, they must select the 'Bulk Upload' option and upload a CSV file.\nRefer to [Adding Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#adding-accounts) for more details about how to add accounts to non-employee sources.\n\nOnce administrators have created the non-employee source and added accounts to it, they can create identity profiles to generate identities for the non-employee accounts and manage the non-employee identities the same way they would any other identities.\n\nRefer to [Managing Non-Employee Sources and Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html) for more information about non-employee lifecycle management.\n", "item": [ { - "id": "4f4ebe80-2186-4a0c-8005-b5e7044d3fda", + "id": "05a5cbb0-f3d4-4be2-a39d-03368997aa03", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -137492,7 +137492,7 @@ }, "response": [ { - "id": "46bc62e0-ac2e-41b3-b258-40e62e653247", + "id": "b9291625-1b0b-47ec-83b9-af642bada900", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -137548,7 +137548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04aa5851-5c35-420a-bbeb-fa48dee005ab", + "id": "06e23f8d-1f4c-4a1a-994f-579c79031aa2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137604,7 +137604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a044c41a-e676-4a49-9485-461483107b9d", + "id": "7c5b46be-a728-4e6b-afa0-71bce650afe8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137660,7 +137660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdd9f443-cb51-46ed-a58b-e0f3de639d2f", + "id": "ce40ade0-f5b2-4239-bfc6-4c28e1ef8699", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137716,7 +137716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e0c47e-50dd-4907-b76b-4f3b166b96c5", + "id": "004364e6-027c-4754-baf2-b18b6e002ebc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137772,7 +137772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0171636-af78-4e0a-bbb6-3938b97cc524", + "id": "99d379aa-c9ec-496d-a159-be675bd16f0d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137834,7 +137834,7 @@ } }, { - "id": "c7be66a6-3bc1-4c5b-9339-7ea0d800ea9f", + "id": "4dd7d638-9c6f-41cd-898b-3edc05f737e9", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -137909,7 +137909,7 @@ }, "response": [ { - "id": "8661ce42-bbaf-44ac-b368-a13285aeec90", + "id": "186fbb1e-910a-46f5-9d24-f28b6f81a031", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -137998,7 +137998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa38b582-5537-411b-9d1a-a496389a036b", + "id": "d347dd3c-efa3-4e0d-8396-0983c67be5ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138087,7 +138087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f64ef1be-e80a-45b8-be3b-4ded587a84f9", + "id": "6431a1f6-01e2-4923-a810-abbda412fd7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138176,7 +138176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d02f1125-ddec-4f02-b2a4-6a1a514e7455", + "id": "8d9e4c2f-3664-4a70-a2f4-18ed2ad9347e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138265,7 +138265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "684fcbb9-5f06-47e1-ac0d-f79517554faf", + "id": "4b38b4b1-454e-42fa-aeba-696b252153b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138354,7 +138354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "211f99a8-84c7-4093-b32c-1e0eade85ea0", + "id": "7ea314f2-e3d0-4437-882e-7e7c2e928910", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138449,7 +138449,7 @@ } }, { - "id": "9ccb20be-fbb0-48bd-8416-d16915693728", + "id": "9cc782ea-8d9b-4f27-bab0-109dc4ba62d0", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -138490,7 +138490,7 @@ }, "response": [ { - "id": "874b7794-850b-4467-8c55-4a556635657a", + "id": "1fdceb14-c629-48c0-bca1-aa29883e636c", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -138534,7 +138534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f6f1e6-e0a1-48c4-8b74-51544bbb7f71", + "id": "d2b809df-6946-4333-b8a5-62cf743283de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138578,7 +138578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07230b07-2c4e-47f7-be05-313bf7226c6c", + "id": "738e5df2-0914-4ebf-9aa0-71399f1b1820", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138622,7 +138622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24bcf8c5-9776-43cd-a78f-3a83e79e5d03", + "id": "a9cda447-6c40-48d8-97ec-d07244b89146", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138666,7 +138666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3f8f4fd-d97a-47cd-9b4c-dd2e79543991", + "id": "110ccb77-005c-44f7-a9de-c2d094015916", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138710,7 +138710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47497e5c-9f6d-45b1-84e2-8d50035bcb08", + "id": "ebb322cf-83cb-412f-8d75-3b54234cfabe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138760,7 +138760,7 @@ } }, { - "id": "8d00b391-07e7-4215-9979-4a6e7ae7f0a9", + "id": "10089853-886e-40e5-b1b2-bfeb246421f5", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -138814,7 +138814,7 @@ }, "response": [ { - "id": "e2384733-23aa-4233-ba3f-c12019388da5", + "id": "18df1d32-3f80-4024-8f59-88948a8111b2", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -138871,7 +138871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96f4c9d0-b9aa-4764-8e05-a10d66614a73", + "id": "5e2a3ace-6d11-4482-a898-c4077e32379a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138928,7 +138928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7a6c8c-0970-47f0-8b30-c934edb9e51d", + "id": "f01195e7-f899-4130-8624-10ee5c3a05d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138985,7 +138985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa35add-fce3-4be7-a245-96aa0fab13bf", + "id": "73078b99-0133-4132-9ac9-dcc94c7a3ba4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139042,7 +139042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee490a3-bc20-4c77-ba99-1c580032be4b", + "id": "fd160f3f-5fc1-4f5b-afb5-5c3426a8c93b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139099,7 +139099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa8ab5ca-988b-413b-9dfc-4e63f3c09a34", + "id": "b211784b-3c7e-4235-b2df-62e0ea177b1d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139156,7 +139156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a43a12c1-6b4a-46a9-899c-d7fa6426f8cc", + "id": "0b9438c1-061f-4cc1-81e6-05a9118767f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139219,7 +139219,7 @@ } }, { - "id": "749aa46f-7009-4278-a0d6-23fee4debf6b", + "id": "fd12bc78-053e-4044-a9a0-cbcf9bebeaea", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -139273,7 +139273,7 @@ }, "response": [ { - "id": "6a6057fe-4367-46b4-a184-dde2b28b3931", + "id": "41d743fb-cb87-4a24-b176-c6aafce5a832", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -139330,7 +139330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c6bfab-0c59-472c-a215-00c2161af87c", + "id": "63c4f5d0-3a88-45e0-a7a9-b7b54404dee9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139387,7 +139387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eacff590-3ba0-4f4e-9fe0-899390f15584", + "id": "25b1fce7-bf43-4ef5-8360-0f0c17b126eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139444,7 +139444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "601ef540-ea81-4e56-9711-70e015b12f13", + "id": "4d9cf56d-7bda-4d85-b695-84be342914de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139501,7 +139501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50d0eec1-78f1-40ca-b338-a12de298958a", + "id": "9ddce717-d72c-4385-a698-142a09a65eb8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139558,7 +139558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7641c17-3a26-4adc-b89a-c8eaf13ff632", + "id": "f6d5d41a-8954-414b-b76f-12eedbc2aac1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139615,7 +139615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0feae78-421b-4529-8cdd-96e535d42d62", + "id": "09ea8fb4-d0b5-4928-ba17-20bcec400804", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139678,7 +139678,7 @@ } }, { - "id": "9c1ee53a-ea11-42c9-bd73-1b4ed4d5d7c9", + "id": "eeb84a88-6d10-43ac-bd2b-2dfd91c2b2d3", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -139719,7 +139719,7 @@ }, "response": [ { - "id": "bd9a712c-fe23-4ed0-94fb-41ed26e72bec", + "id": "18e724da-cbd2-4027-ad11-dc50b3f4e697", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -139753,7 +139753,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b93a376f-60ee-4b22-bf4c-ceaad70c1464", + "id": "d444e7bb-e303-4d65-97bb-7a90baf0ebf5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139797,7 +139797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06294758-4fff-46b9-9994-4744bd765f5b", + "id": "0fef0ef7-0935-4ce7-aa6a-5f019e79ed93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139841,7 +139841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8871485-fed3-426a-b51e-f0701619155b", + "id": "99d116c1-66c5-42e8-9609-c500e019dbc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139885,7 +139885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92515ea8-fd73-4e48-9c36-fe367dcc7007", + "id": "8ec352c4-19f5-4b09-8ffe-8da4d1ee2c15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139929,7 +139929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3a76d60-bada-4fa0-aa34-ff731f7a976d", + "id": "cd8ca0c8-feda-482e-8248-0caa3cfa61e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139979,7 +139979,7 @@ } }, { - "id": "6a05b629-6fbb-41ff-8fe7-ab04c937a9a7", + "id": "73e5cd37-5657-4429-8d67-81b9acd2ca77", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -140011,7 +140011,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140022,7 +140022,7 @@ }, "response": [ { - "id": "79b93587-ea6c-48e7-9035-2296499ad411", + "id": "fdbfad6c-9321-45e8-98e9-7c82057eeb1f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -140053,7 +140053,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140069,7 +140069,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d5634332-0df1-4cf5-a83e-70623eabb330", + "id": "facbbe22-49a5-49fc-bdb5-6eb4ff2802ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140104,7 +140104,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140126,7 +140126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "836fd981-fe9b-4bc6-b8d8-8ca062393cea", + "id": "10eb6af2-99ab-4c9e-9a2e-1e41830d41db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140161,7 +140161,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140183,7 +140183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cda8d51-982e-46a2-aa18-327efdfee3ac", + "id": "3b8843b4-2e08-4a0e-89df-0301cfc5400c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140218,7 +140218,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140240,7 +140240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6129422-7b88-4434-a500-14feffbe8123", + "id": "8b2b897b-2ec4-45ec-87b2-ef3566a9c406", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140275,7 +140275,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140297,7 +140297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e092dfc-1983-4eff-926f-85829ef02d81", + "id": "4e97683a-b0ba-4997-b788-9ad4d83c745d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140332,7 +140332,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ids\": [\n \"2faa8da8-18cb-2403-1e76-d8fb6d85aafa\",\n \"urn:uuid:936f1f9f-ec4f-9848-d397-6bf7429e212d\"\n ]\n}", + "raw": "{\n \"ids\": [\n \"urn:uuid:a582da88-42be-300c-fac5-1f82b96c5dbf\",\n \"05b0906f-1321-73bf-c234-5bf45e6383b3\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -140360,7 +140360,7 @@ } }, { - "id": "d2a37aa3-7002-4041-908d-95eac19faf90", + "id": "3be9119d-c2ea-4b9e-83c5-2ce67efc8b8f", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -140402,7 +140402,7 @@ }, "response": [ { - "id": "99c19d67-ac63-4f0a-bca0-503f5560268b", + "id": "2bfaed47-bdbc-4fdd-a530-d0160f1a8d9c", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -140453,12 +140453,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"qui cupidat\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"pariatur est\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sed magna\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"proident ad lab\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "446f4ac8-bc9d-46e4-a07b-f16aea001fa4", + "id": "6651e14c-f1a8-4ffb-b995-aed577c0c400", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -140514,7 +140514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73043d4e-7bcc-4452-b50d-ca2a70b8bf9c", + "id": "903dcbf2-2f9f-47dc-8b35-6d619a1d1c70", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -140570,7 +140570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64090286-7cd7-4755-889e-59f294ff66dc", + "id": "cb6e533f-5601-4213-bebe-b41102a6f912", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140626,7 +140626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a9fdc25-0f76-497d-a9aa-51f72db56ad6", + "id": "198aad59-d6da-4d9d-a6a7-d12a855acaac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140682,7 +140682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7efb8197-c77e-4b30-8437-654653a8e341", + "id": "b90a3164-f1e3-4494-b3a8-7010d1b88686", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140738,7 +140738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b565cfb-759a-43a2-ae4e-b21eb67e7497", + "id": "f85e07d1-d7de-4e3a-ac7d-9cb6f8702e14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140800,7 +140800,7 @@ } }, { - "id": "6986a6c9-fe24-4162-876e-db6cb9a323bf", + "id": "2bac8f72-53f7-4481-9796-3531ffa2bd86", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -140884,7 +140884,7 @@ }, "response": [ { - "id": "6cb49e2a-c028-462b-a438-228189c8ba2b", + "id": "767da9bb-8ae4-43d8-95ae-d976c2b781db", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -140977,12 +140977,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sint cillum laborum proident Ut\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sed in\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n },\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"fugiat cupidatat\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"elit velit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n]", + "body": "[\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"deserunt dolore eiusmod\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sed aliquip Duis sunt commodo\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n },\n {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"voluptate cillum\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"veniam laboris mollit velit\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7c12353-ee0f-4e30-a825-b8dfa3d076f4", + "id": "968f9c26-88db-431a-985b-c7e739f46931", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141080,7 +141080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b79885-45ea-46eb-928c-da0f4868f68e", + "id": "87010bc7-7c4b-4638-85c8-7f4573d5e6dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141178,7 +141178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89d743bd-d1ff-4f81-b546-8d2e20599201", + "id": "96f3b2cf-8536-4f0b-8be8-1bf0f4eaf8de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141276,7 +141276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45bbec3b-2894-415e-94e0-a0351b7ab666", + "id": "a4a4d354-fd94-4ba8-b71f-b6aab2f3b1d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141374,7 +141374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55d62349-777f-4405-9f98-8fdabbf41e58", + "id": "1d728ad5-b46e-4b72-81fa-6e65e11d6e22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141478,7 +141478,7 @@ } }, { - "id": "dea3698c-144e-45b2-be2e-d250b3f07808", + "id": "27f65d26-03be-4fc9-9d42-f9bec0c355d6", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -141519,7 +141519,7 @@ }, "response": [ { - "id": "70b36047-dc3d-401f-9dd7-e6f6d811a012", + "id": "7e2a695d-15d1-428a-9dfe-51f29a5e89c9", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -141558,12 +141558,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"qui cupidat\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"pariatur est\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", + "body": "{\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\"\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalItems\": [\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"sed magna\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"proident ad lab\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\"\n }\n ],\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24T00:00:00-05:00\",\n \"endDate\": \"2021-03-25T00:00:00-05:00\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6d1b204-27cd-4d76-8767-f1b9742650ec", + "id": "b7576163-04b0-49f8-baf3-eb1761b502aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141607,7 +141607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26687134-9be2-4e48-ad49-d36a20443412", + "id": "aea1b55e-a970-4f55-9931-cbec6133c66b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141651,7 +141651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a95f65bb-6a5d-4b24-89ec-99f02d796039", + "id": "340c9a23-51b5-4bc3-88be-d8d21204795d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141695,7 +141695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37849854-0b98-466f-a02f-571fcc8c8975", + "id": "97051963-4db9-4ec5-801e-0e61b073bac9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141739,7 +141739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0fc79ea-a9e0-43b7-af11-b2096057d5c1", + "id": "7e608315-8303-45d4-b81a-bb69242f34af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141783,7 +141783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66f54df9-0369-4823-88dc-68208e4e27be", + "id": "00fdfcd7-899a-4c00-b975-34185674f1a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141833,7 +141833,7 @@ } }, { - "id": "4913e568-6e71-4738-b81c-822b89ff04e7", + "id": "98136e4c-7aa8-439c-9df2-c234babf6277", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -141874,7 +141874,7 @@ }, "response": [ { - "id": "e943c0cb-3eb0-4f63-ac54-edeb8dc55f45", + "id": "8c8df559-6782-4a16-855e-2e2d3fe31776", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -141908,7 +141908,7 @@ "_postman_previewlanguage": "text" }, { - "id": "67946545-60c6-4672-b993-a74f97024925", + "id": "71e9cadb-7a84-4a0f-aa16-6dd5086ec701", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141952,7 +141952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "739014e7-e751-40e6-80e4-79f5e4d3025c", + "id": "46a280c6-331b-4fbd-a342-a0cd9c794145", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141996,7 +141996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d886eb-187c-43fa-9a4e-6656741be7dc", + "id": "a5c4515a-73b5-431f-bd5e-69baf6796fc1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142040,7 +142040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56400ea0-cfd7-4071-819c-f275b63483dd", + "id": "86588341-d321-47b5-953c-8e796046ca0e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142084,7 +142084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d48d1446-07f5-4146-b5a8-5d45aae73fdf", + "id": "889bd6ac-4cb1-4b19-84cf-1e70198cedbc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142128,7 +142128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b52246f1-15e4-4b03-912d-b8a07b13a34b", + "id": "85e5a25a-3b3d-4b71-abfc-faf50f78d2dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142178,7 +142178,7 @@ } }, { - "id": "f5b324a9-7292-419a-bea5-4b48a071da67", + "id": "59b2a4e4-e4fa-40b9-8aa3-233b6e4c346a", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -142220,7 +142220,7 @@ }, "response": [ { - "id": "e88119b9-4900-4258-9635-825dce9da614", + "id": "2765a4ee-812c-436c-8988-03af03fd25b5", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -142260,12 +142260,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": 87397046.63562322,\n \"rejected\": 28124786.114048168,\n \"pending\": -33027175.536319084,\n \"nonEmployeeCount\": -60263288.50193532\n}", + "body": "{\n \"approved\": -7354920.515022159,\n \"rejected\": -27215990.559321225,\n \"pending\": -74029275.02076215,\n \"nonEmployeeCount\": -95187410.14491527\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c340c3a8-9bd6-4c39-bab0-6ee0fd6e192c", + "id": "7913318b-d81e-47a1-8cbb-4a1729d3e9b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142310,7 +142310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1ee1de7-e6a8-4529-8cfd-e7bfee3874e6", + "id": "6e50fa52-7b16-486d-94d7-bdd0743d4839", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142355,7 +142355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4463b29d-9115-4e61-8426-4e1d6d371c56", + "id": "5a77cfe8-2da1-4664-9786-3b128d46e588", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142400,7 +142400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d5e06d4-012b-4b50-beec-64071ef5171a", + "id": "07b07195-754d-44ba-983a-edd8cf27f7e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142445,7 +142445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92bef3a5-c3a3-4b7d-a3db-38a5f0e48d0f", + "id": "ead80b45-ae3e-4715-b39e-428a61d1118c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142496,7 +142496,7 @@ } }, { - "id": "0203639d-c4e6-427e-bf27-376ce5857670", + "id": "b21cc2de-8b08-4f06-9014-4259e6fcfc15", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -142538,7 +142538,7 @@ }, "response": [ { - "id": "675c86cd-34c2-4cda-8ec1-c89e4340e7d8", + "id": "ab059c88-9f7d-4245-b00b-0be3e75be437", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -142594,7 +142594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00f1980-6955-43c7-97ae-88d92f96c103", + "id": "74774908-38e8-493a-bc77-f9407c3b698f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142650,7 +142650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c22cb2c2-d197-4a23-9e55-93f58ee8e3e4", + "id": "1f034560-cea8-4b98-b800-17535a4cd955", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142706,7 +142706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02364973-999f-4c3e-8aed-00e680c37984", + "id": "7790ef5c-0456-4c02-b405-e229b1528760", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142762,7 +142762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28a4863e-f3d1-40d9-8cea-9e9a039ba11d", + "id": "3f6a1fa9-68ed-4f6b-b4af-f90a65c8a135", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142818,7 +142818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4496c17-4e05-4269-8b20-3ee4054d17a4", + "id": "177f3d8d-f086-4990-ae7a-c7c131f0ce90", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142880,7 +142880,7 @@ } }, { - "id": "a8c65d25-7a1b-4505-8f38-a3cb19d732fb", + "id": "aa624b64-c34b-472b-bade-48bb59a766e6", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -142964,7 +142964,7 @@ }, "response": [ { - "id": "ee8202fc-1897-42a1-8d09-324b31bd286f", + "id": "c313b964-4f97-41c2-8de5-1f7109f00165", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -143062,7 +143062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9005d922-a9ca-460e-8ab3-741842917037", + "id": "9bfffa45-c694-4573-823f-e937696f5813", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143160,7 +143160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "040b69a1-7fcf-4400-93ac-50f73f6627a2", + "id": "db3b9148-c35b-4769-9e83-6d6c29b7098e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143258,7 +143258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a784e46-0bfb-4d3d-8f06-db669b8abd7f", + "id": "7ad6d71a-ca0a-462c-8b83-dd2ac012ebe5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143356,7 +143356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "937d968c-3648-4827-8ec3-96d4cceef699", + "id": "8821db6b-6e74-4846-9218-c737d48c9475", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143454,7 +143454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6ab0e4-03b4-4ed3-9617-6c3dbadfa5e1", + "id": "14d67c8c-95f5-4394-a997-ce48034cf534", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143558,7 +143558,7 @@ } }, { - "id": "4b15b983-13e4-465a-8fc2-4006ebce2d8a", + "id": "ed0944d0-1feb-4357-b286-c056f9a460b8", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -143599,7 +143599,7 @@ }, "response": [ { - "id": "7e26c866-2d72-4cad-8ee7-8c2d0f2e26a0", + "id": "0a9894d3-0598-4e0c-a539-451321e42fff", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -143643,7 +143643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e63ce40-b933-4597-90ba-1098441e4086", + "id": "85c64a2c-f4cf-4c33-9411-23cf2b161c83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143687,7 +143687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7854b05d-aa5e-4a74-ad45-a18e3d813b6f", + "id": "7fdf08ff-a379-45cb-8c8f-c1ba5c4f9a84", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143731,7 +143731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66760793-e935-4c02-810c-2a41cfde0199", + "id": "a54eb411-edd0-4410-ae14-f4e9e41fcdbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143775,7 +143775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "517fa793-eaaa-47a4-a17a-2287b3da0403", + "id": "c7bedb5c-fa19-4ccf-8979-dea38408bcd5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143819,7 +143819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "563a1750-0007-429f-a976-d1510b988f7d", + "id": "e5976eb4-b8e3-447a-8a9c-bfb91433dc81", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143869,7 +143869,7 @@ } }, { - "id": "a1c61b74-cb25-4ed1-a5b3-13bf728d2381", + "id": "ff74c444-18b2-4355-932a-410427ece9c3", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -143923,7 +143923,7 @@ }, "response": [ { - "id": "8eff21f6-68dd-4d24-9ae8-d86a107b29aa", + "id": "58c6c6e4-3d29-437a-adbc-a7838a77d5d0", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -143980,7 +143980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "398b770b-e28b-4d36-b9c2-99e3dce8c3a3", + "id": "eb3d1d16-eabf-401b-aa5b-ad6cbd2641a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144037,7 +144037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1f5d037-8902-4349-b445-448c8335503c", + "id": "8fcadaeb-3322-41e1-8b4f-870459af6da0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144094,7 +144094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52de087-fad0-4ace-8fc1-26491c35c127", + "id": "5992a2b3-ae74-43bd-8f3e-4819e04162a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144151,7 +144151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ee29ec7-b712-4981-90b6-eb6448cdd405", + "id": "6b4857ac-0ad8-4a31-9ac0-29a8560d166d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144208,7 +144208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2c7f76f-ab42-477c-962c-7f56d3379824", + "id": "e03e8394-bc3d-4b8f-bf54-2f8e19ffec86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144271,7 +144271,7 @@ } }, { - "id": "8d7f6a10-3895-493d-b7b2-ea46c3d089a5", + "id": "91d725ec-ab85-4fa9-9cc8-77aec4326e35", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -144312,7 +144312,7 @@ }, "response": [ { - "id": "d3d91c24-4b3f-4092-9301-873ba26e6367", + "id": "991942b7-14dd-4761-8bc2-31f5b3b53ece", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -144346,7 +144346,7 @@ "_postman_previewlanguage": "text" }, { - "id": "98e486bd-afb1-41eb-ab36-cf9a34b34cb1", + "id": "5b6ea5c3-157a-40f3-ac9c-8a0aa7e3c0ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144390,7 +144390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f1bfcb0-6df8-4a1a-bb80-e505f0fe7a44", + "id": "e0e41c94-8d75-445f-925b-318c07d39b4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144434,7 +144434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffbc24ee-d27c-4e41-8044-66635aacf9f6", + "id": "bfccbe94-62c6-490c-9333-4d2819045a9b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144478,7 +144478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d23a7d1d-7ff4-4820-a10f-5a363e233ff7", + "id": "bcc6281b-1e27-4201-a190-5c8da2693e81", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144522,7 +144522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd36237e-bee4-4956-8bc9-cd29527e506a", + "id": "7af0fe8f-97f6-494b-8335-d273466eb84c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144572,7 +144572,7 @@ } }, { - "id": "90f6fad3-0e12-4152-beaa-0272bf38c55a", + "id": "0f243f82-9054-421b-a353-7e10a91d16a9", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -144615,7 +144615,7 @@ }, "response": [ { - "id": "e08e7c76-beca-4cb7-b17e-0cf64de6bf75", + "id": "378c6ddb-e5e7-483b-952c-b77c7a592214", "name": "Exported CSV", "originalRequest": { "url": { @@ -144661,7 +144661,7 @@ "_postman_previewlanguage": "text" }, { - "id": "947859da-96a2-4f3e-b5cc-73e842162134", + "id": "315d2211-f16b-4e48-8d59-5caec6746bfe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144707,7 +144707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cbdaffa-a371-46d8-a467-17fec7c7ab36", + "id": "9d32c257-c775-4d5a-b752-f54f04dca483", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144753,7 +144753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d968c131-92d2-4dd6-9d45-ede0a6df478b", + "id": "85dbf6d6-21b8-420f-9740-704c444c2f2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144799,7 +144799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53b7b25f-3ca7-42ee-993b-e0442ca67444", + "id": "846fd816-f6f9-49d6-b24b-59a892ac42df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144845,7 +144845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dc386f8-efc0-4cc1-bfad-31e94f07f9c3", + "id": "50f9ec30-f00a-4fca-9e59-38c0a25da6bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144891,7 +144891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71240ff5-df56-49f2-b2fb-f3a6c7b8bcd0", + "id": "a5b64bff-c211-49e9-9212-607b32121eae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144943,7 +144943,7 @@ } }, { - "id": "d7718381-3657-4f4a-837e-f4a655861350", + "id": "895a5f59-cdb0-4618-b680-fb29a58ecb67", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -145001,7 +145001,7 @@ }, "response": [ { - "id": "1d60940c-f6a2-4a39-ac25-b27da9ba8d93", + "id": "fea53580-3d3c-4118-a977-572ff5871319", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -145062,7 +145062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8693414d-ce14-44bc-9008-66bf363b04e5", + "id": "23dd33ed-f02e-4446-b572-9c58e20a2a9e", "name": "Client Error - Returned if the request body is invalid.\nThe response body will contain the list of specific errors with one on each line.\n", "originalRequest": { "url": { @@ -145123,7 +145123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8df15f66-a5fb-4fcb-949a-0a9496ff62c2", + "id": "50e11de9-e202-4556-8b94-b0b1871888d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145184,7 +145184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a4ec047-ab9b-4b79-9f18-e4f165143b15", + "id": "268e5593-9f1f-404e-a420-1926390bf4d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145245,7 +145245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ad61983-eac5-4694-b6b0-5c67968eab4e", + "id": "7ab24899-2ff3-4056-a4a1-acc9b4fcaaa1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145306,7 +145306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdd0f221-9d18-4dac-ae10-c8ffb312e79d", + "id": "c1ec4e61-1ab1-4378-9a47-3ab1b49eb6ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145367,7 +145367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cdd5a8c-b680-4fec-af91-9f48248a4144", + "id": "1104fe80-9fc7-4109-a309-4500af4857bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145434,7 +145434,7 @@ } }, { - "id": "18e4965a-32ab-4cf0-ab2c-5e913be22838", + "id": "9b6880c3-b517-4297-974e-9f0b5c072c2d", "name": "Bulk upload status on source", "request": { "name": "Bulk upload status on source", @@ -145477,7 +145477,7 @@ }, "response": [ { - "id": "67d45dd9-be66-4314-86b3-fedc9f3cb7aa", + "id": "11baab04-e9c0-403e-9f7c-a3b80f143812", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -145523,7 +145523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88168569-707a-4cb7-b0a7-82cd669f2ab6", + "id": "f0e3270a-b4f5-41a5-a208-2bafe29abe94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145569,7 +145569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fee02332-7428-48dd-a60d-03c8b07a1449", + "id": "96eee694-e408-4771-a6b2-6610f98c5e6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145615,7 +145615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "279432e2-f9a7-4691-a952-91c71f1cdd7f", + "id": "631609d4-656e-45e4-8310-15355d7d37ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145661,7 +145661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "266925b6-837d-4866-a698-e9cff06da55c", + "id": "fdb7ddad-459d-470c-9224-71d933c8172f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145707,7 +145707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d711ff7-8fb8-4a06-93a1-6aa6879c876f", + "id": "7cec86e7-57af-421f-9887-16a2ce20c497", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145759,7 +145759,7 @@ } }, { - "id": "3c221142-1790-4fe6-b4e3-6bdd7d67011b", + "id": "af0ff600-4f20-4eb1-94c1-573e10d7ed13", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -145802,7 +145802,7 @@ }, "response": [ { - "id": "76c59661-4363-4ad3-ad1c-8490d4369f67", + "id": "6199a001-e473-4291-98df-b01ae5136bf1", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -145848,7 +145848,7 @@ "_postman_previewlanguage": "text" }, { - "id": "56208f95-9418-4b89-861c-8d9ebdd9b563", + "id": "3168098f-529d-4009-bd68-fa6e5dea6af7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145894,7 +145894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23c72ea9-e68f-4a3d-bab0-1a20d2c9d099", + "id": "5ff9eca2-673f-487e-8fc0-e78cc93b2207", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145940,7 +145940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78266b3a-69fa-4607-8a2f-1c01be7d9ced", + "id": "abfde7fd-e7f5-4783-9708-cdbbf24efb57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145986,7 +145986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e76e4d32-f5fc-403b-ac27-ae0d2e3e0b30", + "id": "4923c1d3-86e3-41d1-ab4d-ba6c3b7e8b37", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146032,7 +146032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0981106f-da92-4d92-b036-8909cdb33ec8", + "id": "f473a523-78b5-42b1-8e9f-3a7455487f3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146078,7 +146078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddd1e9a5-5333-42bc-9145-4c367b4a196b", + "id": "3b46b7a4-c919-4a44-8586-a828376ee170", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146130,7 +146130,7 @@ } }, { - "id": "540f41f6-2203-4bd3-9e40-579f243c88a3", + "id": "c65651be-77f4-4153-ab86-2a0ce428dcdc", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -146214,7 +146214,7 @@ }, "response": [ { - "id": "84e8d4cc-03a3-46f3-b90f-81f6fe6f3a51", + "id": "c8b54d8e-9633-4f43-ac42-b1819279774c", "name": "List of approval items.", "originalRequest": { "url": { @@ -146307,12 +146307,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"dolore ullamco ut esse aute\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"laboris minim\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"elit culpa minim\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n },\n {\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"laborum eu velit dolor sed\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3afba0f-340b-4074-a2b3-d2ad4ea457ac", + "id": "2ea1db27-9fec-4c35-bf65-6f101fa4fa82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146410,7 +146410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63077363-049f-4682-a231-6bb395706433", + "id": "b60663e7-d9f9-4f03-a563-fc7655ce65cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146508,7 +146508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0ab891-fc43-432c-804f-7e204265a27c", + "id": "4245f160-92ca-40f3-acdc-60c68a83a952", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146606,7 +146606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4600a623-1492-4ff7-b2de-bb2f64d64d91", + "id": "b3adc301-96b7-469f-9114-4185a6d25226", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146704,7 +146704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6411dd6-cc64-4335-b6d2-74fdd4d59660", + "id": "610f7082-3a0c-4f4a-a332-60da5887d25e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146808,7 +146808,7 @@ } }, { - "id": "72cbdd50-65ed-4ef5-862e-47c94ac09031", + "id": "fe3c6191-53f7-412a-82e9-29b16afc4111", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -146859,7 +146859,7 @@ }, "response": [ { - "id": "db19647d-c6d8-4518-9400-4f2abab9642c", + "id": "f4e2a30c-6da2-457a-b112-7df3922d6a23", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -146908,12 +146908,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"et laborum ea\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n },\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"schemaAttributes\": [\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n },\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n }\n ]\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24\",\n \"endDate\": \"2021-03-25\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"irure\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n },\n \"accountName\": \"william.smith\",\n \"firstName\": \"William\",\n \"lastName\": \"Smith\",\n \"email\": \"william.smith@example.com\",\n \"phone\": \"5125555555\",\n \"manager\": \"jane.doe\",\n \"nonEmployeeSource\": {\n \"id\": \"a0303682-5e4a-44f7-bdc2-6ce6112549c1\",\n \"sourceId\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Retail\",\n \"description\": \"Source description\",\n \"schemaAttributes\": [\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n },\n {\n \"type\": \"TEXT\",\n \"technicalName\": \"account.name\",\n \"label\": \"Account Name\",\n \"id\": \"ac110005-7156-1150-8171-5b292e3e0084\",\n \"system\": true,\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"helpText\": \"The unique identifier for the account\",\n \"placeholder\": \"Enter a unique user name for this account.\",\n \"required\": true\n }\n ]\n },\n \"data\": {\n \"description\": \"Auditing\"\n },\n \"approvalStatus\": \"APPROVED\",\n \"comment\": \"approved\",\n \"completionDate\": \"2020-03-24T11:11:41.139-05:00\",\n \"startDate\": \"2020-03-24\",\n \"endDate\": \"2021-03-25\",\n \"modified\": \"2020-03-24T11:11:41.139-05:00\",\n \"created\": \"2020-03-24T11:11:41.139-05:00\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30b41ad8-71a6-4d9b-bfd5-8a61990efb68", + "id": "2e0b08c5-7486-4e5d-8241-b14a109df6ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146967,7 +146967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fabe52e-a8a1-4003-82b5-abf27590d38b", + "id": "a4c9378c-ae07-4968-8918-e550eb515b41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147021,7 +147021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "596cdcb5-ef2f-4fca-8089-220fb1edd9dd", + "id": "7950fcce-d412-4357-82da-7464ab1f0678", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147075,7 +147075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cdd4435-fe0f-48ca-8279-c415ee1611e4", + "id": "5d731348-bb09-4e8a-b593-7b86906cd978", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147129,7 +147129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46092d08-5c55-4184-95bc-8ba5632593bf", + "id": "cfc53650-7aab-43c8-b115-d5c52363429e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147189,7 +147189,7 @@ } }, { - "id": "08db68f0-de9e-48d3-b4c7-1edd7d405714", + "id": "7316fe86-554f-4014-9114-c22c45ec17e7", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -147210,7 +147210,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -147233,7 +147233,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147244,7 +147244,7 @@ }, "response": [ { - "id": "ab457fc9-8332-41e6-b9c0-28e248dd9317", + "id": "d1248285-4885-4f41-989f-f5d378721d57", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -147280,7 +147280,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147297,12 +147297,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"ad sunt\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"dolor incidid\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c65fd4cd-c733-4470-b164-5ca031d3112d", + "id": "30c86a6d-1577-4ae2-9969-50eb00b1c3a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147338,7 +147338,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147360,7 +147360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02adbe71-e7a8-440c-a33b-e232a12adba9", + "id": "0be4038f-514e-4dfd-b90a-695ebf0b7b3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147396,7 +147396,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147418,7 +147418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c48e078-4e70-459f-ba35-5fb174bca1ee", + "id": "19663c60-e7be-4ce0-a79a-5aaf578e35ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147454,7 +147454,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147476,7 +147476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b336ea5-710d-414d-9ee6-0a9b718b615a", + "id": "96c4d02a-16ab-4575-bf86-2891a9049cb0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147512,7 +147512,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147534,7 +147534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "782dbbd4-253e-4b0a-9772-d893613b4196", + "id": "9f62b374-0f50-47cc-8bac-731e0a34ea35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147570,7 +147570,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"sed fugiat\"\n}", + "raw": "{\n \"comment\": \"dolor ad eu pariatur\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147598,7 +147598,7 @@ } }, { - "id": "d1fbd669-3351-41f8-9895-e71381bea883", + "id": "6271f0fc-1060-40f8-963e-f0568eee6469", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -147619,7 +147619,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -147642,7 +147642,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147653,7 +147653,7 @@ }, "response": [ { - "id": "c183cb87-5a76-4902-847c-f6317e2c81eb", + "id": "39c4bb7f-e386-4fc5-a940-c67f873a7691", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -147689,7 +147689,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147706,12 +147706,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"ad sunt\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", + "body": "{\n \"id\": \"2c1e388b-1e55-4b0a-ab5c-897f1204159c\",\n \"approver\": {\n \"type\": \"IDENTITY\",\n \"id\": \"5168015d32f890ca15812c9180835d2e\"\n },\n \"accountName\": \"test.account\",\n \"approvalStatus\": \"APPROVED\",\n \"approvalOrder\": 1,\n \"comment\": \"dolor incidid\",\n \"modified\": \"2019-08-23T18:52:59.162Z\",\n \"created\": \"2019-08-23T18:40:35.772Z\",\n \"nonEmployeeRequest\": {\n \"id\": \"ac10e21c-931c-1ef2-8193-1c51e7ff0003\",\n \"requester\": {\n \"type\": \"IDENTITY\",\n \"name\": \"William Smith\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab299fdc-2535-4954-acb2-8f36560dfba4", + "id": "e0dbd9d0-4b5e-45f0-b59a-bf94d068505d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147747,7 +147747,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147769,7 +147769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d5d750a-e760-4173-a1a3-22de22f4e79c", + "id": "49e0f2a5-a482-4b2a-8363-69ef89558875", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147805,7 +147805,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147827,7 +147827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2eaaa8b-870c-4d73-b684-c72336d5278f", + "id": "eb36e141-c902-4747-8443-db2b473d5491", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147863,7 +147863,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147885,7 +147885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8a4b52-6561-43fe-8a55-e099cc6c8f92", + "id": "21f2fb60-f67f-4313-a9d7-a73e19fd1449", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147921,7 +147921,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -147943,7 +147943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b854cb09-ba7e-413b-9937-df9f113850d0", + "id": "ed87b6af-849e-4167-8ed5-822860938c8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147979,7 +147979,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"comment\": \"labore\"\n}", + "raw": "{\n \"comment\": \"ex Ut enim\"\n}", "options": { "raw": { "headerFamily": "json", @@ -148007,7 +148007,7 @@ } }, { - "id": "82b3cee6-bf4a-455a-9c54-b846b8ba7a4d", + "id": "d729deea-257d-4f9c-8102-daae9b8274d4", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -148049,7 +148049,7 @@ }, "response": [ { - "id": "8fe420b1-73b3-4aaf-a9ad-a38648265ca1", + "id": "0ae501ae-5715-4e77-999f-9f2a4221ac28", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -148089,12 +148089,12 @@ "value": "application/json" } ], - "body": "{\n \"approved\": -61932692.92306507,\n \"pending\": -25799467.25683455,\n \"rejected\": 50959947.58636904\n}", + "body": "{\n \"approved\": -26002573.325712726,\n \"pending\": 11271905.81702657,\n \"rejected\": -78756957.99351199\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "beceb5dd-b908-4210-9d6f-cd9e3109fb30", + "id": "11ae8d22-3eee-4868-8579-384417a78f16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148139,7 +148139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc9aa993-bdc6-4ca2-9890-e5ee9ee1d1a6", + "id": "87ea065a-b3f8-4713-8c89-c739182162ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148184,7 +148184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ac52ff2-6be7-4e75-8171-c3089b47c4d5", + "id": "80b8e40e-31c2-43f5-9634-e00fb7950374", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148229,7 +148229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5ce3633-0eee-4009-a012-0e71f57605bb", + "id": "60fc48a0-494a-4c4d-987f-c01d71ddb42d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148274,7 +148274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ff800f-db2b-4bda-9a0e-b76b7849eeb5", + "id": "be122805-3838-4f41-8b24-dac35ccfab1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148325,7 +148325,7 @@ } }, { - "id": "4855cc25-10e6-474e-bc5e-579282aefc92", + "id": "de5c8814-99d5-4150-a61b-615034c922ab", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -148367,7 +148367,7 @@ }, "response": [ { - "id": "4ede0a2a-948e-4088-b8d3-daa4c20eff47", + "id": "62bf49f3-3fc5-4fdb-ba01-0bc7110c8339", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -148412,7 +148412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd2c0f9a-960b-4972-b7c4-5cf428a8f184", + "id": "5a087d38-2a75-464a-90cf-c4d95bd5c40b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148457,7 +148457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e697ef-7580-4bac-b12f-311ac9ca4383", + "id": "589aa2cd-d9ef-4a0c-940c-00c4195419a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148502,7 +148502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1d8e440-fab1-4d0c-9bb3-818a1e1a893f", + "id": "b29bbacf-943c-4837-990d-7c642a7f72f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148547,7 +148547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c43c1491-a447-4f50-bb69-d513742cc1fd", + "id": "7f8e5909-d14c-4de0-b0ea-5299f82ef73c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148592,7 +148592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7d240bd-4051-47e0-8f02-d6dbdc4b4139", + "id": "923792ae-be37-484a-a4f7-95d8f9a6dfe6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148637,7 +148637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6203a3b-ac8e-4cf3-aed4-c8f80fc94895", + "id": "80b98415-4719-4931-836e-6128a4df2633", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148688,7 +148688,7 @@ } }, { - "id": "21be1679-4446-46dc-97c5-10b75694d634", + "id": "dfebe031-66e7-4698-8f61-5d3c091001d4", "name": "Create Non-Employee Source Schema Attribute", "request": { "name": "Create Non-Employee Source Schema Attribute", @@ -148743,7 +148743,7 @@ }, "response": [ { - "id": "f3589394-c135-424e-b312-38895972a473", + "id": "4718ead1-25e9-415d-aaf1-9fdb7a1caffb", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -148801,7 +148801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "501e3b71-e5fe-46ca-acb2-b2da07206752", + "id": "88e009ed-0333-4849-8580-75bcf9e9250e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148859,7 +148859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cc6e611-1ad2-4af4-8694-8c5e70c492e1", + "id": "a951931b-5a06-427f-b268-925ad0eb2f3d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148917,7 +148917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea6066df-9d47-4f25-922a-e74beb8f1e6e", + "id": "54eaa76d-245d-495b-9415-abe649c81765", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148975,7 +148975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebd4729a-32f7-47d9-a27c-e250acd8acba", + "id": "1da0df09-99dd-49c2-8607-34534f1ef3a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149033,7 +149033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "467d2594-30bb-4304-bd81-05534bc7ad85", + "id": "7f24f007-701e-410b-8289-6af19b17faeb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149097,7 +149097,7 @@ } }, { - "id": "f99d050c-94e4-420b-a6e9-3520090e3c52", + "id": "527bead7-c328-4604-8504-7e40b0b6ead7", "name": "Delete all custom schema attributes", "request": { "name": "Delete all custom schema attributes", @@ -149139,7 +149139,7 @@ }, "response": [ { - "id": "675263f8-d50d-4a38-a611-b7e68c86e591", + "id": "22b254a5-7e70-46c9-b2e9-db68be9864af", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -149174,7 +149174,7 @@ "_postman_previewlanguage": "text" }, { - "id": "de0a69b0-652f-4aec-9c9d-fcc90af6f81a", + "id": "a0c47315-e080-422d-b18c-23395c5977a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149219,7 +149219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14c3863b-0f37-4b8a-8f8f-9300d1fb6139", + "id": "564099a9-1803-4f9c-877c-46247643dd6c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149264,7 +149264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "813e5e8c-c395-436c-8d67-203e70229a05", + "id": "2d348bc4-4bdb-43b4-96ff-10e5267db684", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149309,7 +149309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e720c1b-f762-4823-bec1-bf46a2316d01", + "id": "9d5b4e20-c0e3-43f4-8102-2eabba0be00b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149354,7 +149354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6090b23f-05d5-4ffd-952d-28bfee44be2b", + "id": "9e56e35c-c781-48bd-92e3-6aa195a7feb2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149405,7 +149405,7 @@ } }, { - "id": "6523371e-4f54-43c4-9247-8122fc46a475", + "id": "99c90ecf-c430-430e-94ac-ce521eca2f0e", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -149458,7 +149458,7 @@ }, "response": [ { - "id": "a3aad815-3369-4312-9ea1-d67a7e6a19f8", + "id": "1f02a4f5-d4ab-4111-8ab5-5d259258c495", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -149504,7 +149504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "840aefa0-4a2b-4f53-bc09-a7a6411b17d7", + "id": "18c33b65-f670-4c44-b214-8c235b37a678", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149550,7 +149550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1d20d96-610d-4e16-98b6-41902df581c8", + "id": "3ad37942-7f2e-457e-93aa-86fc3fc65704", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149596,7 +149596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "014d888c-5cf3-4b43-9a1e-4c3477ee457e", + "id": "9594e247-9aa7-4c54-8cf2-5d8278bc7539", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149642,7 +149642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70f2195f-e0c2-4c43-b6ce-a4937fb5641e", + "id": "a007aa95-391b-4c11-9d10-c0b9486f6a17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149688,7 +149688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "229a3a71-e4b4-499a-87c5-db6b8eee2a8d", + "id": "c79c8c3f-659d-4ba2-a098-512fe2c0d9b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149740,7 +149740,7 @@ } }, { - "id": "8c395f72-d260-47e8-ba4b-8ade29aad3ea", + "id": "b6892cbf-2225-4513-8e17-4358ce3ae00e", "name": "Patch Non-Employee Source's Schema Attribute", "request": { "name": "Patch Non-Employee Source's Schema Attribute", @@ -149806,7 +149806,7 @@ }, "response": [ { - "id": "04577e31-5df5-4084-83b4-9ce63b929e4d", + "id": "5527533b-36cd-4816-9ff6-d6b67e75adf6", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -149865,7 +149865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69bcc100-4797-4ded-99b6-07e426008aac", + "id": "a9270e2e-51d4-4453-b035-cde15810c0be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149924,7 +149924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "033046fa-1452-4864-8f35-77c719d93318", + "id": "617e4a56-4186-4f9e-8ab2-de4b0013455c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149983,7 +149983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c0f9d90-202a-448b-87f1-7c1472759135", + "id": "156d51fa-3dae-48e1-ba0c-088e0eed5907", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150042,7 +150042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f87e36de-d619-404b-b168-c5a6c265e125", + "id": "6cbf24ec-3638-41f5-b945-90463917220a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150101,7 +150101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93712065-fb27-4c29-8fdd-08feaa4c3b13", + "id": "2067eaf9-0fc9-476d-9ea6-c11fd543da72", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150160,7 +150160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41320528-36fd-47b2-a883-ea230e0b37a4", + "id": "448d99f3-1d88-4c7d-bafc-57c4924191d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150225,7 +150225,7 @@ } }, { - "id": "d453e8e8-e893-4a90-b11a-c9016a7f7f27", + "id": "b6d45e45-5914-4c4a-921b-cf54e0d99671", "name": "Delete Non-Employee Source's Schema Attribute", "request": { "name": "Delete Non-Employee Source's Schema Attribute", @@ -150278,7 +150278,7 @@ }, "response": [ { - "id": "d6a18a94-8516-4a5e-99ea-1e81277ab0bd", + "id": "797b4d61-3591-4e72-b976-8707148d934d", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -150314,7 +150314,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c17e5bde-dd94-4bb1-baca-a41b1d3ae0a4", + "id": "f2dd7f25-fd2e-43c9-876e-65b1a5eb87b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150360,7 +150360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bc6fcbb-6490-46c2-beb8-36e2d2061041", + "id": "7c9fbacc-e99b-4f93-8940-7a2f01732f48", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150406,7 +150406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "516c7bc4-7977-4e31-a96a-2ca9cdccfb26", + "id": "de195533-8de1-410a-a46e-bdd4a8576812", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150452,7 +150452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13449750-47ec-4738-88ff-b7ac6ff94875", + "id": "14523021-6261-401a-b609-0ef660a5a779", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150498,7 +150498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3c650a1-31dc-4dd0-a343-0e708ca4e2bd", + "id": "0dde9520-d8b5-4d97-b6ad-09373ae36162", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150556,7 +150556,7 @@ "description": "", "item": [ { - "id": "11c775c1-eabe-4ddb-815c-870a94053da6", + "id": "9b23091f-dc49-41ef-9aba-13195ecab318", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -150598,7 +150598,7 @@ }, "response": [ { - "id": "3d09b47c-f866-4288-a197-40a980f0c3eb", + "id": "971dd186-2cf7-43ca-8775-4372478b3ad5", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -150654,7 +150654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1b8a146-2b11-4deb-93de-4e1e245c5841", + "id": "aefb350c-1062-49c4-82b7-6e5ee58a6e00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150710,7 +150710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68b26942-7989-416d-8701-2fe287ed2914", + "id": "5f164583-d6bd-48a8-91c7-7d2128604624", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150766,7 +150766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a53a9174-16d9-4595-8a1a-9aea5f4fd996", + "id": "d852c80c-750e-486b-9dd2-aba6952470a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150822,7 +150822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b0ac60f-ac2c-42b0-97b7-e483ff8e94ef", + "id": "11cb61d7-6eec-4538-89d7-5681b7f98ca2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150878,7 +150878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6963936-e627-4acb-b18b-ea8a34459374", + "id": "b5797d39-4ac3-41aa-b32f-a4c668e9e7cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150940,7 +150940,7 @@ } }, { - "id": "c6598963-d0f0-4238-8912-17eb1aa73ab8", + "id": "45914578-f8a4-48f8-bbd0-152003b2b92d", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -150985,7 +150985,7 @@ }, "response": [ { - "id": "68417131-61bd-429c-bc30-ba8144c4e7b9", + "id": "1a4f8f40-d9c1-4cff-a456-223b45adfa1e", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -151039,7 +151039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "175afa1f-c8cc-457d-8e16-c40bc6e755ac", + "id": "2d7b85b5-d4d7-4962-a7e7-d6f32b34099b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151093,7 +151093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73f43e1a-fcd0-40de-8bb6-f5fcc14dd3d0", + "id": "6bbc6c3c-16ae-4140-8051-f33ba717a690", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151147,7 +151147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c550dfe2-fbb0-48f9-ba4a-e0fa009bdeaf", + "id": "0e4314fe-7bfa-4d90-bd7f-40a7eeafb2c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151201,7 +151201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c9b21b2-dc01-483c-8e13-94590346444e", + "id": "e9030989-76e0-44b6-92d0-a47b8f422eab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151255,7 +151255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b530b3d-d61f-408c-b805-6991680bcef4", + "id": "ebba736e-cd28-43bd-be41-deda3d9bf1c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151315,7 +151315,7 @@ } }, { - "id": "a4cb65e0-9cb8-4ce7-98b7-a6b1c67fe28b", + "id": "ce5195bb-8ac9-42b5-8e93-02868ce49075", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -151372,7 +151372,7 @@ }, "response": [ { - "id": "fafe4281-3c0f-4125-9349-b0758fcefa4b", + "id": "d0c02898-22ae-4183-96b1-ff69b99d230f", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -151438,12 +151438,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"ex veniam\",\n \"text\": \"dolore in elit in\",\n \"blocks\": \"sit occaecat exercitation\",\n \"attachments\": \"veniam ea est irure ut\",\n \"notificationType\": \"cillum ut exercitation\",\n \"approvalId\": \"non incididunt aute commodo cillum\",\n \"requestId\": \"amet ad ipsum sint\",\n \"requestedById\": \"\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"labore dolore eu ad irure\",\n \"itemId\": \"exercitation laboris est\",\n \"itemType\": \"dolore Duis\",\n \"autoApprovalMessageJSON\": \"sit dolor in dolore\",\n \"autoApprovalTitle\": \"voluptate quis enim Duis\"\n },\n \"customFields\": {\n \"requestType\": \"dolore ea\",\n \"containsDeny\": \"est do\",\n \"campaignId\": \"dolore esse in\",\n \"campaignStatus\": \"dolor amet sed ipsum\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"esse aliqua velit dolor\",\n \"title\": \"tempor officia ad anim\",\n \"text\": \"non tempor aute adipis\",\n \"messageJSON\": \"Lorem dolor\",\n \"isSubscription\": false,\n \"approvalId\": \"sint\",\n \"requestId\": \"c\",\n \"requestedById\": \"esse adipisicing\",\n \"notificationType\": \"voluptate dolor fugiat\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"et consequat commodo\",\n \"itemId\": \"amet adipisicing mollit\",\n \"itemType\": \"minim et occaecat\",\n \"autoApprovalMessageJSON\": \"eu ad\",\n \"autoApprovalTitle\": \"quis ad est dolore eiusmod\"\n },\n \"customFields\": {\n \"requestType\": \"nisi culpa reprehenderit in anim\",\n \"containsDeny\": \"dolore labore irure sint\",\n \"campaignId\": \"Excepteur est dolore sint\",\n \"campaignStatus\": \"cupidatat sed sint ut cillum\"\n }\n }\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"velit ullamco Ut\",\n \"text\": \"elit do ut ut\",\n \"blocks\": \"amet mollit pariatur ipsum\",\n \"attachments\": \"do aliqua\",\n \"notificationType\": \"ipsum elit dolore\",\n \"approvalId\": \"velit aute ni\",\n \"requestId\": \"pariatur Excepteur\",\n \"requestedById\": \"laboris occ\",\n \"isSubscription\": false,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"id sint\",\n \"itemId\": \"commodo\",\n \"itemType\": \"dolor deserunt Lorem ipsum\",\n \"autoApprovalMessageJSON\": \"ut commodo exercitation\",\n \"autoApprovalTitle\": \"nisi sit\"\n },\n \"customFields\": {\n \"requestType\": \"Ut eu ea\",\n \"containsDeny\": \"in mollit\",\n \"campaignId\": \"esse ullamco ad ut\",\n \"campaignStatus\": \"eu culpa\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"labore non mollit exercitation pariatur\",\n \"title\": \"sunt magna adipisic\",\n \"text\": \"Lorem aute ullamco\",\n \"messageJSON\": \"velit in\",\n \"isSubscription\": false,\n \"approvalId\": \"mollit incididunt dolor\",\n \"requestId\": \"sint mollit sunt\",\n \"requestedById\": \"in adipisicing mollit\",\n \"notificationType\": \"laborum dolor nulla in culpa\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"consequat irure Excepteur\",\n \"itemId\": \"cillum dolore laboris aute\",\n \"itemType\": \"quis ea Duis do\",\n \"autoApprovalMessageJSON\": \"tempor minim laboris\",\n \"autoApprovalTitle\": \"voluptate ea culpa\"\n },\n \"customFields\": {\n \"requestType\": \"aliqua consequat sed\",\n \"containsDeny\": \"mollit tempor\",\n \"campaignId\": \"sint \",\n \"campaignStatus\": \"fugiat incididunt\"\n }\n }\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"anim incididunt ea aliquip\",\n \"text\": \"in Ut\",\n \"blocks\": \"commodo ad amet ea mollit\",\n \"attachments\": \"commodo dolore dolor\",\n \"notificationType\": \"nostrud anim in\",\n \"approvalId\": \"Lorem exercitation\",\n \"requestId\": \"veniam Ut\",\n \"requestedById\": \"aliqua minim\",\n \"isSubscription\": false,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"incididunt sed\",\n \"itemId\": \"\",\n \"itemType\": \"ad laborum\",\n \"autoApprovalMessageJSON\": \"consequat officia incididunt\",\n \"autoApprovalTitle\": \"tempor ad\"\n },\n \"customFields\": {\n \"requestType\": \"cillum Lorem\",\n \"containsDeny\": \"est cillum\",\n \"campaignId\": \"reprehenderit nisi aliquip\",\n \"campaignStatus\": \"do\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"id nulla laborum magna\",\n \"title\": \"nisi tempor amet laboris\",\n \"text\": \"est do amet\",\n \"messageJSON\": \"cillum velit laborum dolor\",\n \"isSubscription\": false,\n \"approvalId\": \"et magna tempor\",\n \"requestId\": \"\",\n \"requestedById\": \"labore non Lore\",\n \"notificationType\": \"ad consectetur officia magna dolore\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"eu Ut sint eiusmod ullamco\",\n \"itemId\": \"nostrud est fugiat irure\",\n \"itemType\": \"occaecat nostrud dolor\",\n \"autoApprovalMessageJSON\": \"sit iru\",\n \"autoApprovalTitle\": \"magna exercitation ut officia\"\n },\n \"customFields\": {\n \"requestType\": \"id pariatur aute voluptate\",\n \"containsDeny\": \"in cupidatat dolore eu\",\n \"campaignId\": \"pariatur magna ex nisi\",\n \"campaignStatus\": \"reprehenderit nisi qui et laborum\"\n }\n }\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"id consectetur eiusmod ipsum reprehenderit\",\n \"text\": \"voluptate est\",\n \"blocks\": \"in\",\n \"attachments\": \"Ut enim\",\n \"notificationType\": \"culpa eu proident exercitation\",\n \"approvalId\": \"quis\",\n \"requestId\": \"ad cupidatat ea elit\",\n \"requestedById\": \"minim ut\",\n \"isSubscription\": false,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"reprehenderit\",\n \"itemId\": \"culpa in tempor ad\",\n \"itemType\": \"officia do tempor \",\n \"autoApprovalMessageJSON\": \"ipsum amet\",\n \"autoApprovalTitle\": \"in dolore proident\"\n },\n \"customFields\": {\n \"requestType\": \"reprehenderit id\",\n \"containsDeny\": \"esse voluptate\",\n \"campaignId\": \"velit tempor\",\n \"campaignStatus\": \"id do consectetur\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"cillum est nulla consequat enim\",\n \"title\": \"aute Lorem mini\",\n \"text\": \"tempor esse qui velit\",\n \"messageJSON\": \"non et officia mollit\",\n \"isSubscription\": false,\n \"approvalId\": \"aliqua\",\n \"requestId\": \"reprehenderit in\",\n \"requestedById\": \"ad\",\n \"notificationType\": \"ex veniam voluptate in\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"quis sunt aliquip\",\n \"itemId\": \"qui irure esse\",\n \"itemType\": \"sed cillum\",\n \"autoApprovalMessageJSON\": \"exercitation magna\",\n \"autoApprovalTitle\": \"aliquip do pro\"\n },\n \"customFields\": {\n \"requestType\": \"deserunt ex\",\n \"containsDeny\": \"Duis sint voluptate et\",\n \"campaignId\": \"qui\",\n \"campaignStatus\": \"ad laborum nisi\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8f4fa4b3-0aaa-4455-8b1c-c622e7365a21", + "id": "972e89ec-b5b1-4b6f-8dcd-9f1222e38561", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151514,7 +151514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56129660-50aa-4b3a-b0d9-f7b39489a33a", + "id": "817af0b3-bdcc-4a33-a406-6539b57d546a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151585,7 +151585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4101fd99-d279-49cf-9d41-087c5b269978", + "id": "b669bfb3-19d9-4ff5-9b33-bca95fe09371", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151656,7 +151656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67a6a2a-786e-445c-955c-6ec911bddc51", + "id": "e93ee15e-ee2a-4f00-a32d-7b023d22bc55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151727,7 +151727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1735496-88a3-4307-ac76-ba17dc09bbf9", + "id": "92dec03e-bfdf-4149-8456-69798b26c00a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151804,7 +151804,7 @@ } }, { - "id": "3ac6da35-81be-4ae8-ab3e-8673a7641b87", + "id": "b1588bc1-125c-45e5-ac2b-7e8c131abdb8", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -151861,7 +151861,7 @@ }, "response": [ { - "id": "316bd5cd-bb9e-49a7-aaf5-5a5bcec8b9fc", + "id": "f2f629de-9c70-45e8-9eda-64069124012c", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -151927,12 +151927,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"commodo esse adipi\",\n \"teamsTemplate\": \"cillum Duis\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"minim cupidatat vel\",\n \"teamsTemplate\": \"magna id nulla\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"sunt in eu et\",\n \"teamsTemplate\": \"ex\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"cupidatat in dolor\",\n \"teamsTemplate\": \"Ut enim\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "63ec3b38-af9e-4495-a48c-9a3118d746a1", + "id": "1b914703-5cc5-4496-ac18-e6d200c1e6b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152003,7 +152003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec6692fc-73e3-4c36-8713-d0fa1988da8b", + "id": "5dfe73dd-b687-47c4-90ae-856bf4e688dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152074,7 +152074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41058897-61ba-4d1b-bef8-0204e1bfae4e", + "id": "f92540f2-b4c0-438c-929a-361ef7f480a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152145,7 +152145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23cf5c4b-6ff8-4cb4-a202-f517b9a984c5", + "id": "0e257132-8177-45d4-be30-9f2baea13e2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152216,7 +152216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa367cb8-77dc-44e7-b51e-1923e2ba029b", + "id": "55755f39-a40d-47ad-a46e-93618db67a04", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152293,7 +152293,7 @@ } }, { - "id": "e3cd20cf-5b4b-4c8c-96af-97d50c924367", + "id": "0a9e538b-4ec5-4997-9af7-de783cebcdc6", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -152324,7 +152324,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152335,7 +152335,7 @@ }, "response": [ { - "id": "344f80ca-33ee-4e1c-90d6-1f445f87061b", + "id": "87f49bc0-9bbf-4566-b715-325df5d5c045", "name": "A template object for your site", "originalRequest": { "url": { @@ -152369,7 +152369,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152386,12 +152386,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5fbc3860-a2db-402f-bfdd-d4e33245370a", + "id": "e706c762-80f4-427a-964f-7f87f31a8ea6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152425,7 +152425,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152447,7 +152447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6ac1a2d-2801-4022-9557-53a84b9c3a49", + "id": "95d2d24b-f444-4af7-bc30-724bb497ad97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152481,7 +152481,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152503,7 +152503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f7821d5-9306-4f4a-b757-346e98ba1f1f", + "id": "984fd3d1-fddb-4c24-ad54-3a4b02637506", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152537,7 +152537,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152559,7 +152559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "058129c7-2f7f-4e62-b754-87a12ab9f7a7", + "id": "39e7c59c-af02-4e1b-a2b5-d56aad459226", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152593,7 +152593,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152615,7 +152615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dedc61a8-b0c8-4590-ae82-be3458d46d6c", + "id": "21e96030-cdad-4c0d-afd9-f91a48ecb9cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152649,7 +152649,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"laborum in irure nostrud\",\n \"teamsTemplate\": \"qui cillum in\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"Duis dolore mollit nisi do\",\n \"teamsTemplate\": \"labore do\"\n}", "options": { "raw": { "headerFamily": "json", @@ -152677,7 +152677,7 @@ } }, { - "id": "098e8377-c5bd-4635-826f-c03dbdda983f", + "id": "3b567330-0616-4b23-a3bc-8cfac9086a3a", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -152718,7 +152718,7 @@ }, "response": [ { - "id": "d274cae2-a681-4473-a0f4-94252f72559b", + "id": "075be4cb-f3b3-4ea0-b82d-84409f6b59fa", "name": "A template object for your site", "originalRequest": { "url": { @@ -152757,12 +152757,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"commodo esse adipi\",\n \"teamsTemplate\": \"cillum Duis\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"minim cupidatat vel\",\n \"teamsTemplate\": \"magna id nulla\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"sunt in eu et\",\n \"teamsTemplate\": \"ex\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"cupidatat in dolor\",\n \"teamsTemplate\": \"Ut enim\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ab1161ee-9850-494e-82c6-ad7ed7e7b35d", + "id": "2b4ed315-cf19-40a2-96e5-063a6f083935", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152806,7 +152806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63187187-2ed5-4c33-9002-9cabc3a37922", + "id": "2d45a212-3bac-4238-ad18-8f78cb3fd89f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152850,7 +152850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1055c8cd-8d38-414b-b348-7fadca688118", + "id": "496e795e-10e1-4312-828e-3c903fa8fb6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152894,7 +152894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37b453a-8d94-4fd9-99b2-b0a94b040a25", + "id": "55a9b30e-3b28-43ac-982c-dcfe435bef93", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152938,7 +152938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1479be5e-5ca3-4a55-a2fd-4264bc2e110d", + "id": "90af26bf-e455-4ac2-8674-6229c77dfa5e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152988,7 +152988,7 @@ } }, { - "id": "10fa10e6-ad59-4ad0-97ed-78b76ab9b27d", + "id": "66aa1abc-5a6e-4078-9363-e542498efafe", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -153031,7 +153031,7 @@ }, "response": [ { - "id": "c76c5f3f-07e9-4b45-9e3a-19a36cb361f2", + "id": "5889d510-0d04-40de-ad0d-5d99166cd382", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -153078,7 +153078,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a898dbce-be22-4b66-aed0-f3635a0b86c6", + "id": "9cea7aef-7226-4028-9035-ff32f24086b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153135,7 +153135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dfd789f-2266-4696-b818-0e2f6b9bd2fc", + "id": "c07a4647-abb1-4b79-b423-305169888bf3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153192,7 +153192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b4d9b5b-d237-418a-b80d-193189d98c7f", + "id": "df75e508-2dfa-4739-b1a5-ec704ee9b170", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153249,7 +153249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32ee5f1d-92a0-41ff-b3fe-cf1a2e25c22e", + "id": "8c1edca6-e0a2-494d-9225-89f914584a6b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153306,7 +153306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "011b91d4-1b4e-4626-ba4c-23e81ee9caee", + "id": "a0a7d7bb-f066-457c-8c12-ea817cb828ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153369,7 +153369,7 @@ } }, { - "id": "0c77a94f-3e80-49ca-9c52-2e8ebb399713", + "id": "ffa07adc-8f39-45e7-b87d-fb7a16f068a4", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -153398,7 +153398,7 @@ }, "response": [ { - "id": "d55309e3-de55-4171-8219-c768ee4da8d5", + "id": "a3da91bc-846a-4c64-9668-6db7b0ec9bc6", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -153441,7 +153441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d020f1ac-6ffb-49fe-b27d-202343f9ad11", + "id": "702d136b-f130-4063-a946-6f869392ed5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153484,7 +153484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfbb54e5-5d77-4983-89f9-ac112be068ad", + "id": "f69c11de-8c10-44b9-9efc-879ff6fa6cc5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153527,7 +153527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb28655-ff71-4f50-9f3d-1337a8b3819e", + "id": "2334c0d3-81c2-4bb3-b235-c44a496770ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153570,7 +153570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62cbebbd-15f4-4d55-bdea-734cd131761e", + "id": "596e01e6-7ec1-4382-8ee5-da5da1ed6c50", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153613,7 +153613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc8f618-dc6e-4949-9e77-73ac20728438", + "id": "70a16130-d3bd-4d65-85e8-f4d745549fe3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153662,7 +153662,7 @@ } }, { - "id": "20c09221-d44c-4b08-9e6f-46e9a2c3a8b8", + "id": "902ae0d0-b003-4135-9a1b-fa63e1a78519", "name": "List Notification Preferences for tenant.", "request": { "name": "List Notification Preferences for tenant.", @@ -153697,7 +153697,7 @@ }, "response": [ { - "id": "88659b9c-5079-4b6a-aa52-89d74983a2df", + "id": "b494da3b-3c9a-41aa-81a8-8d531600cc7f", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -153741,7 +153741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3211b5c-de11-49e3-ae04-a7cf74e2bae8", + "id": "01ce5197-e2c0-42b7-86e0-ef994e89ffa7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153785,7 +153785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0311407f-e13b-4a98-9c76-82f7511c8610", + "id": "46738f5d-3929-499f-b2b0-c991b3d74e92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153829,7 +153829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86d4d2ff-2696-49c7-84ac-fc412672f036", + "id": "b806080b-eb95-4bbc-931e-1d27c7c2ea85", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153873,7 +153873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff9e6673-83c2-48b9-ac41-cd000c5c6a71", + "id": "e5c971ae-c844-45ce-8535-902afc6398b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153917,7 +153917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5f1dfee-b82f-4dc0-a6ad-f10d7c322436", + "id": "21f7f3a6-c326-45e1-8202-8fd260297c7a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -153961,7 +153961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32737bc1-915c-49a2-a44e-7afa29bcf3b5", + "id": "aa3afac2-0f6b-4cfb-8f10-2c10c80d629a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154011,7 +154011,7 @@ } }, { - "id": "217f9446-96c8-45f2-8511-a7a701cc4d62", + "id": "c54decec-499f-4849-b1bb-4b2e585fad37", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -154053,7 +154053,7 @@ }, "response": [ { - "id": "6da327c8-7d78-4b01-b102-34344d11075a", + "id": "44202462-e892-437a-9a85-7462ece7e480", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -154099,7 +154099,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8742a97b-107d-4e9a-9ede-4aa20c370253", + "id": "76d10900-8a80-45cc-86dc-a9da5014d5d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154155,7 +154155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08e38f9a-b6b5-4452-a8e7-7b91cd69f205", + "id": "261b7024-b565-4a60-8e5c-b178825622af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154211,7 +154211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e08090e-9024-4310-819e-6fd2b4b18d6e", + "id": "2835f3c0-a03f-45af-8046-b74931ffe96c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154267,7 +154267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cd07717-3bac-4c00-990e-63a225618933", + "id": "73974517-8dbc-4387-a446-ec40fb4f644e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154323,7 +154323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc057096-9211-4ed0-b9c4-24543a53525d", + "id": "09fe0c5c-3c40-433c-ba41-32b89fae4d02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154379,7 +154379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "646bde07-a08a-4d1f-9313-c557f86a2bec", + "id": "aba87974-1639-4eae-940a-ffd5ec90082c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154441,7 +154441,7 @@ } }, { - "id": "80e984cb-4a68-4e8f-b22f-a55d46488ec6", + "id": "7ffca1ab-f63b-4c80-8a8d-f1ba56819482", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -154516,7 +154516,7 @@ }, "response": [ { - "id": "0c82da36-8087-48aa-8259-790c768a4f8b", + "id": "739a00d9-fa3f-4554-b53f-9dffb9cd8a86", "name": "List of Email Status", "originalRequest": { "url": { @@ -154600,12 +154600,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"dolore culpa sint aliquip\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"exercitation sint\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"PENDING\"\n }\n]", + "body": "[\n {\n \"id\": \"dolore ut et Duis\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n },\n {\n \"id\": \"cillum et\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cf6075d8-c3b3-4c65-866c-513795884ac1", + "id": "1f4c15ea-33f4-44f4-8db6-3d3d8b0f95f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154694,7 +154694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe5382d-7260-46cf-95d0-dd98acb518e9", + "id": "99188a22-0f50-47a6-9076-8a3b413ae30f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154783,7 +154783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139ce0fb-bbc3-4d90-9476-40d93e98d1dc", + "id": "29c61550-f38c-432c-894c-259facbad1c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -154872,7 +154872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8364719e-9689-4cb7-86e0-5c18167c2ff6", + "id": "b08bf186-1c49-4533-8352-fd9438e2b84b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154967,7 +154967,7 @@ } }, { - "id": "750c3f1f-f9e2-4dd0-af50-913cc584d834", + "id": "c77d3d16-a2e9-4520-9bd4-270ec671747d", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -155009,7 +155009,7 @@ }, "response": [ { - "id": "975d5f7f-e44d-4244-a52d-3d8112273d2d", + "id": "18bf1e96-dab1-4fa7-865d-cd1304c6ae6d", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -155060,12 +155060,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"co\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n}", + "body": "{\n \"id\": \"dolor Ut minim\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2feb8b8c-765f-4962-9086-6ec7e970c754", + "id": "855a778d-3176-4613-a772-266e65f31827", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155121,7 +155121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8857540f-040d-4eb5-aa55-7bfb205bdf16", + "id": "bebfd20f-6f34-477c-86d2-97d85529eb2f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155177,7 +155177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d1d662f-cff2-4ddb-a540-f080a7796c2f", + "id": "08748217-f205-4a3b-b44d-6dddea3e7dea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155233,7 +155233,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c278f9d-2d93-4090-8eea-71e98f83cdfa", + "id": "bf3ebd52-68cb-457d-b170-97235d6d82c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155289,7 +155289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce4f2d27-bb42-4075-b435-175bb739e1c9", + "id": "9f44d11b-8dbf-4f28-9ac6-a4a219b147b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155351,7 +155351,7 @@ } }, { - "id": "c88c27b2-02b8-45c7-acec-568498a09c0c", + "id": "31e4c80d-393b-4469-b766-44eaea5b5f97", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -155371,7 +155371,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -155392,7 +155392,7 @@ }, "response": [ { - "id": "239d5c05-4dab-40a3-8c89-5a7dafb53273", + "id": "b09d3f8a-6245-4d1a-ac4a-ed1d31477548", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -155426,7 +155426,7 @@ "_postman_previewlanguage": "text" }, { - "id": "beed2809-3460-4b35-854e-162f14585793", + "id": "75231c89-3ec9-42a8-9d8e-12e921a7c4f9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155470,7 +155470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dddcc8d9-8ae4-48f9-b141-dc59fcf2d75c", + "id": "8e681efe-6947-484c-9c91-f485f203d67a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155514,7 +155514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9c96a4e-94ac-4fea-b568-8af3a577ca7f", + "id": "9e4f6027-a11f-41f4-b2a8-201b929d6f26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155558,7 +155558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e779f5b-d45a-4d8e-a4b6-709ce98d6d2f", + "id": "18dc4578-e237-44b2-b88c-9f3f02297f50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155602,7 +155602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37cd1225-6f11-4ceb-8c4e-71d464adb4b9", + "id": "9fa1b10f-aa0b-4325-ae80-1f18b8a635db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155646,7 +155646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9030672-d8bc-476f-9c9b-571c7dbd5309", + "id": "a724c738-4023-43a8-a5ef-0aa1f454d923", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155696,7 +155696,7 @@ } }, { - "id": "ea9fb039-24d5-4578-9bdf-3a26c88ed218", + "id": "8b13a1b9-1385-4dfb-972d-c48fa9b2df8e", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -155725,7 +155725,7 @@ }, "response": [ { - "id": "149551b0-75be-4a39-9103-3119a55bafa4", + "id": "5df7708c-001f-4b67-8d42-77e19bc82a99", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -155768,7 +155768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3a805ba-b232-4ef3-9f0f-0952c98c2bfe", + "id": "929aa162-c94d-4d48-9bd6-9c616352d945", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155811,7 +155811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67aa024b-58ba-4d11-83cc-aaf503b3b1d1", + "id": "ae05e020-07e8-4dc8-90a7-8b51210e0e67", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155854,7 +155854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9480e012-100c-4eb1-ae27-27c373b42b11", + "id": "18665f19-6515-4a55-805f-4286541c5ed3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155897,7 +155897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6c680ec-db39-4525-82da-c1432ca86d64", + "id": "56e26f85-2a14-467a-9d0d-b0a25e78231e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155940,7 +155940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90676a68-9960-4889-87cf-a451231a955b", + "id": "4f20c187-27fb-4e16-bbc7-8fcfda6e3372", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155989,7 +155989,7 @@ } }, { - "id": "e673f5e6-ed8a-4f91-81b7-88d57120daf5", + "id": "f4fec346-d389-4ddb-874d-3a2f2ca1a0aa", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -156031,7 +156031,7 @@ }, "response": [ { - "id": "c9a21f0b-5dae-4d7d-8c45-d390d00914f3", + "id": "8ac19c24-06c8-4fd8-94f8-c07c6645ce59", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -156087,7 +156087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "defa377e-5ad6-4b1e-9f3e-011d9e818c7e", + "id": "0df93387-6b1a-47a8-b292-f159d73f1b44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156143,7 +156143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5671f90-a762-413e-9e73-4247e6eaf97b", + "id": "163600a9-f16a-4fcb-bcef-2e1e8bb24c92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156199,7 +156199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf02a19-e167-40e7-a837-fa09f68243b3", + "id": "1c48b903-7c83-4f7a-9f8d-0840d877ed0d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156255,7 +156255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef6a376c-9669-4f8c-9fc6-a4866f5cd348", + "id": "33f12b4e-1071-4ba2-90d8-ed2807553d91", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -156311,7 +156311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2279db4-f732-4d92-8d0e-4fc9be52833b", + "id": "32e811ba-846c-4d02-9001-1a70b8717867", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156367,7 +156367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e594ed2-4d5c-48cf-8258-b94bb6f752d5", + "id": "b429c958-0d7c-497c-88e4-211b3a496c7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156435,7 +156435,7 @@ "description": "Use this API to implement OAuth client functionality.\nWith this functionality in place, users with the appropriate security scopes can create and configure OAuth clients to use as a way to obtain authorization to use the Identity Security Cloud REST API.\nRefer to [Authentication](https://developer.sailpoint.com/docs/api/authentication/) for more information about OAuth and how it works with the Identity Security Cloud REST API.\n", "item": [ { - "id": "273e8df0-9df3-4f82-a78f-7674186720df", + "id": "fa4e1301-5f7a-48e0-8802-caabfdd49120", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -156474,7 +156474,7 @@ }, "response": [ { - "id": "8a05ffdc-0ace-40de-aacd-7dc474e1df91", + "id": "9b325b73-b21f-468a-8fd6-d89446417cf7", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -156522,12 +156522,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"aliqua cupidatat\",\n \"metadata\": \"ex fugiat ullamco\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"eu ea incididunt\",\n \"metadata\": \"id in\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"cillum\",\n \"metadata\": \"in occaecat ex\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"laborum amet elit eu ex\",\n \"metadata\": \"proident officia\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7f1ef07d-7e24-44aa-b5de-c7b5f2bd2971", + "id": "ed84219b-67d9-4d03-965d-86bdceb32b2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156580,7 +156580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "777d93ea-b4bb-48e2-bf25-469a5175ba54", + "id": "4d6e054e-0f7e-41fe-92d8-156a00cd4dbe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156633,7 +156633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6403df75-6e4e-45d2-a890-b9d882e69b98", + "id": "2e5ac196-89e7-4f57-a512-5ca199d48da0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156686,7 +156686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c44f47df-4761-4362-b285-510fd7ddabfe", + "id": "e2727d23-e7d1-4086-9cc8-96db94696d13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156739,7 +156739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef3c005e-648f-486c-a577-83329bd61d7e", + "id": "9edc9e5e-995c-461c-939c-5d4e8b4d2e42", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156798,7 +156798,7 @@ } }, { - "id": "23ab4016-853d-40e6-a236-d6770f5d3a3b", + "id": "fc87ef30-bf72-40d2-b6d2-fcfc7b4c1a9c", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -156840,7 +156840,7 @@ }, "response": [ { - "id": "7be6c079-09e0-44db-a41a-28266d3eed44", + "id": "21bf3149-36e2-4c05-99f4-6a5956b7099b", "name": "Request succeeded.", "originalRequest": { "url": { @@ -156896,7 +156896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0691a473-4934-45f8-95d3-5f8e349904a3", + "id": "a08a7bcf-4b0e-45be-8f60-d079db184c24", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156952,7 +156952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5492bc4-f009-4c57-a995-f6b340bc7160", + "id": "2d68d6ac-b3d4-4f14-8231-84008e5f9d9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157008,7 +157008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4ef7cb9-762f-444d-8954-3f5d71fb5d98", + "id": "90368475-44da-4f35-bb3a-b204c8f27504", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157064,7 +157064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7773f094-9232-4956-8727-c072de92bc55", + "id": "6738a726-1174-4cf8-a494-c788f5a9cbe1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157120,7 +157120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23fe1024-9cf8-4add-9f13-e9b7b246920d", + "id": "c6331e37-c7fb-4ec3-afd7-2c7798a6adb9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157182,7 +157182,7 @@ } }, { - "id": "31d36702-a188-4cb2-98a6-8765d2bf122b", + "id": "b2eb2e74-1cf9-4d21-9da9-f90307cd34a4", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -157223,7 +157223,7 @@ }, "response": [ { - "id": "59acc50f-97fc-4d3b-87f8-5f024645be0a", + "id": "c67d5266-4d89-40cc-8df3-7eb4d8360dae", "name": "Request succeeded.", "originalRequest": { "url": { @@ -157262,12 +157262,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"voluptate sint id\",\n \"metadata\": \"nostrud sed dolor consectetur\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"ut nisi veniam culpa\",\n \"metadata\": \"nisi\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8fb37aa5-dad7-4d9c-9b64-79510dc6e3f7", + "id": "6c0b5d31-1b7c-44fc-aae1-0ebbed39c3b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157311,7 +157311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57406455-52d1-4758-9c22-f8da1331a3a2", + "id": "752be2cc-75f3-486b-a141-0300a4ba6a03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157355,7 +157355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4d845bf-7d1a-42f2-9ff0-85856f88f622", + "id": "ecd40d95-e56c-42a0-8209-42a01f58ff0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157399,7 +157399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "320b52a8-886c-4f98-a45e-69160710f65f", + "id": "8ed0343d-e766-490f-9d5b-e6e484db35af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157443,7 +157443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f544a8b2-d5dd-446f-b878-d697d69d1c3f", + "id": "296f5df1-4220-4972-82f3-b1b9f23df6a3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157487,7 +157487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41829128-c706-4b82-be4e-7df78cdc7c40", + "id": "8fdd0ad8-94b1-4318-a74a-85745f6e583e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157537,7 +157537,7 @@ } }, { - "id": "e90bf5d0-a9cf-4334-a80e-e159ad33f6b5", + "id": "aa91fade-7940-4662-a1cf-b0bebf002ad1", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -157578,7 +157578,7 @@ }, "response": [ { - "id": "5f0372bb-1437-4098-b3fe-c3c3b6d9183e", + "id": "7f237d11-ae98-43b7-a1f1-088423dbbc48", "name": "No content.", "originalRequest": { "url": { @@ -157612,7 +157612,7 @@ "_postman_previewlanguage": "text" }, { - "id": "75a6919c-cfe3-4a58-94cf-8de49e27f6ae", + "id": "099f7208-b725-4188-b2ec-86440d4170a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157656,7 +157656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2970e800-7852-4cae-a1c4-adaa491c01f1", + "id": "0d8cbae6-70b9-4d30-9c14-e199e7f03e92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157700,7 +157700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4067dfbe-f6ba-4bfd-a09b-09818098d1ed", + "id": "8675698a-7003-470b-9418-f5f38609438d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157744,7 +157744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0b09f29-3256-461d-b4f6-9b3a711b8cba", + "id": "3b4a123b-2d2b-4168-be71-ec9b954a7ef7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157788,7 +157788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b7e4506-bf17-49de-9d45-39505fba1fb8", + "id": "132efb24-f28a-405d-9fad-578c17aa4f4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157832,7 +157832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0419171-a6f8-40a2-b749-54291da1c97f", + "id": "36e6eaa1-2fd6-4ebd-8b5f-0b788a04d5c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157882,7 +157882,7 @@ } }, { - "id": "42c5cd53-0779-47f7-86b8-6393c70180b1", + "id": "1793b135-616e-470b-a653-adaf71d1ee03", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -157936,7 +157936,7 @@ }, "response": [ { - "id": "b6a0b476-417a-4eed-a247-7b133e419785", + "id": "f589c42c-0960-4b19-a840-224b7ea6c906", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -157988,12 +157988,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"voluptate sint id\",\n \"metadata\": \"nostrud sed dolor consectetur\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"ut nisi veniam culpa\",\n \"metadata\": \"nisi\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a903ed2e-81b5-4fde-a8bc-313f50134a25", + "id": "fe20fec3-42d3-4c92-ad09-71ffc7f5e000", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158050,7 +158050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f91475a-0ac5-492d-80cd-c799227be128", + "id": "9d868533-0dc8-45e7-b1f4-506a22bb8659", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158107,7 +158107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65c25749-b275-4562-b03c-813426da0762", + "id": "f24b6532-d064-453f-b5d4-65d2c9814894", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158164,7 +158164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56bac965-4f78-47d8-8693-5b9121d1b5c4", + "id": "36d7681f-4e6e-4b6b-b274-649ca55ec157", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158221,7 +158221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb2cd71-6f28-44d5-b8ae-6cdd38d2be0e", + "id": "e574acf4-285b-4c66-a3e3-cfa08c497e03", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158278,7 +158278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15779fe4-169e-4911-bbcf-0af7b4cb925c", + "id": "d23275fd-4349-40c0-9e5f-2ac7622759a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158347,7 +158347,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "f7e483bd-5316-4053-8866-788c51d19742", + "id": "cab9af50-ab2b-44fa-8716-bbc28c501dbe", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -158376,7 +158376,7 @@ }, "response": [ { - "id": "2bab3d14-1da0-4629-b647-7f5bfdad6eaa", + "id": "599c6017-ed0f-4287-bbf8-fe336c204113", "name": "Request succeeded.", "originalRequest": { "url": { @@ -158414,12 +158414,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"officia\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"esse\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9140bb30-2785-405d-82a2-a9eec92f8a19", + "id": "856bbb1b-dac6-430b-a64d-5be1162c742b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158462,7 +158462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e1fb5d-14b3-4ac7-9992-69e78d23bb3d", + "id": "e677550c-dbe1-404c-ab79-be5269c68070", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158505,7 +158505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "621fd86c-1535-4f8b-8de3-bc0f97cb97d7", + "id": "ec0051c2-44f3-4ea1-9dc3-70883b6f7520", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158548,7 +158548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cce2ba53-73f0-4830-a387-29e64cb8e8cb", + "id": "13dbd3ba-9c5d-4124-a12f-d6b513fbdf2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158591,7 +158591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17a32738-2c26-41d1-baa4-87162ce9332b", + "id": "a3ce79cf-5e9e-4ff8-8200-b5808eea1351", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158634,7 +158634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4804156-9640-451d-a63c-54498e7f2c7f", + "id": "2919e683-5b40-42de-aacf-9129c9abb4e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158683,7 +158683,7 @@ } }, { - "id": "6855fa83-69db-4770-ae7a-48a6089135be", + "id": "7ee2386f-25e8-4926-b718-aea12c6782e3", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -158725,7 +158725,7 @@ }, "response": [ { - "id": "f8eda771-03fe-4b05-93ea-7a537efd9fbc", + "id": "a26920e6-e230-4920-b8a8-d5d14a66f909", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -158776,12 +158776,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"officia\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"esse\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c48e8418-d23c-4c86-ad81-ab1440288580", + "id": "1ba271f2-61bb-4603-83b6-f3e58d594c8d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158837,7 +158837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea38d0dc-5a8f-4cd7-b4ce-97aa10795a25", + "id": "4bb56057-7eee-49df-ae1e-d77593e37455", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158893,7 +158893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe413614-0699-4414-80cb-bd47345af432", + "id": "21a35df0-d134-4be4-ae74-dc5387ac8566", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158949,7 +158949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c3ca248-e7bb-4f7e-a554-602e67f95201", + "id": "fd43c55f-4ed8-4c8e-b5c7-4e2da533eb18", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159005,7 +159005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5481983-589b-4072-a7cc-e905e136afd2", + "id": "dcc3fe90-dff9-4dcc-9817-9978967d06e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159061,7 +159061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b77fa096-6f8e-4fc4-876e-5d025b4747af", + "id": "60e19fb1-a1be-41dd-a783-1b6fd4f8ab40", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159123,7 +159123,7 @@ } }, { - "id": "69a91a11-b1e8-4e61-baa9-619781affc5b", + "id": "15e48b15-0bc3-4644-9acb-86d86b8625d9", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -159153,7 +159153,7 @@ }, "response": [ { - "id": "d4ea4079-166c-4731-87ae-9e89c54809f1", + "id": "2d8e166f-7cd5-4eb4-a7dd-cc5e9cd716f6", "name": "Request successful", "originalRequest": { "url": { @@ -159197,7 +159197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e41f4b12-7fe0-401f-b8d3-0a4f5b537919", + "id": "5f5185b4-71d4-4de7-9258-21a227a143f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159241,7 +159241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13716705-7538-4f5c-956b-c3f236126b81", + "id": "053340d7-ef1d-47d6-a414-e236c4ab53ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159285,7 +159285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "080e5044-5bcd-412c-9fa2-34d94dc1ce75", + "id": "02f0d5d9-7da6-496d-ab2b-0cee19876914", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159329,7 +159329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ea9ac0e-5d4a-4d55-94cb-5ed80302d1cd", + "id": "eac46afc-7b26-4222-8e6b-0d63e8a8cf55", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159373,7 +159373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80d4c271-f399-494a-a16b-bd5734b0d90e", + "id": "ab94461f-68e7-429a-a5e9-bc020614f935", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159429,7 +159429,7 @@ "description": "Use this API to implement organization password configuration functionality.\nWith this functionality in place, organization administrators can create organization-specific password configurations.\n\nThese configurations include details like custom password instructions, as well as digit token length and duration.\n\nRefer to [Configuring User Authentication for Password Resets](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html) for more information about organization password configuration functionality.\n", "item": [ { - "id": "a95b4e1d-3a96-4177-a0f6-60295217e9c8", + "id": "d4365ee0-04ee-4a42-aa9f-699c27c1a446", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -159458,7 +159458,7 @@ }, "response": [ { - "id": "cf65cba9-0e35-42b2-9af8-5fabc30bb0b6", + "id": "88fb08e3-b7be-4f1f-8236-5682cacfdd03", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -159501,7 +159501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf129f32-e0d2-480f-a0cf-1272ab684d06", + "id": "23472014-3ba5-4833-ac03-79f8eccdebed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159544,7 +159544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "083d02d0-be3c-4012-9eca-8b9b7d97b61f", + "id": "f17afe8e-215a-41e1-b4a4-90308864c2af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159587,7 +159587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d652a623-4744-46e4-aa21-24d42f464e2d", + "id": "bb22eedc-bc0f-4cd1-a64e-d42d7b3b81ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159630,7 +159630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e384ac2-59c7-4e40-a6ab-55ca994f21b8", + "id": "b125a6c1-cad9-4a67-ae33-e7ff0404e33c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159673,7 +159673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6d4c0e-ab18-4f3b-8be9-225fed717c50", + "id": "758dcb29-0b11-48fa-bc69-602e7fb7ba75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159722,7 +159722,7 @@ } }, { - "id": "17ed42af-679f-44a6-a68c-41ce68041f9c", + "id": "f160e3a5-9331-4337-a070-01a6b3f77399", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -159764,7 +159764,7 @@ }, "response": [ { - "id": "1b5f1ef9-0204-4aae-b686-a4b4947a1e4a", + "id": "48af2cf1-ab8e-4d3a-b99e-7c9c3d734271", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -159820,7 +159820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c381cee7-1877-4a20-8d2f-331a2636afa8", + "id": "804f6da8-16ce-4eeb-8159-a0bc6f7e8028", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159876,7 +159876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cc15ebb-a3a1-432c-90b4-bace1e6b0284", + "id": "51b3f349-03ed-4220-8c8e-792f3dc08560", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159932,7 +159932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eea908b8-152a-4b18-8e8f-53c353bdc31e", + "id": "6e45f6e5-9b42-4efb-a067-3353e42d99ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159988,7 +159988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d701db6e-3948-4ab8-a7dd-ea61b4586cf6", + "id": "ea5bbeb8-4b17-4bd5-9c49-aaba8d1bf05a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160044,7 +160044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "857d79ee-6fb7-4b74-987e-e722adda1a04", + "id": "d9be9e7f-6117-4fd9-b813-988cf5c0e8da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160106,7 +160106,7 @@ } }, { - "id": "843ea8ef-a3f2-4dee-87fd-ac8a662fd3e9", + "id": "1a4f2631-46fb-482c-994d-76841fbbab0a", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -160148,7 +160148,7 @@ }, "response": [ { - "id": "f7cdd6a8-e1c6-4f68-84ed-0b3d194fc93a", + "id": "6c8f92dd-a8f7-4a49-8855-8ba7a553d492", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -160204,7 +160204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "114c5c4c-4da2-4e20-a567-a58ace606116", + "id": "3ac897de-8920-4452-8938-56e59a6d6d6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160260,7 +160260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3499e0a-37f4-44a7-a88f-75fba3c4f26a", + "id": "051fbce6-9bc5-4bba-93bd-9f45eedfbea4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160316,7 +160316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab32931e-7f92-45df-bc96-dfbc38e0c420", + "id": "328d97f2-332d-44be-a89e-31087a7e2570", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160372,7 +160372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "163f408b-cc68-4933-89aa-5b729147d5b1", + "id": "e6d9fee3-df05-44e3-86f3-74c5cf1c1540", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160428,7 +160428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1554544b-b2e2-41b6-9f2d-b8fca0f4fede", + "id": "789fffa5-0a60-4e74-9eaf-6aebad227f24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160496,7 +160496,7 @@ "description": "Use this API to implement password dictionary functionality.\nWith this functionality in place, administrators can create password dictionaries to prevent users from using certain words or characters in their passwords.\n\nA password dictionary is a list of words or characters that users are prevented from including in their passwords.\nThis can help protect users from themselves and force them to create passwords that are not easy to break.\n\nA password dictionary must meet the following requirements to for the API to handle them correctly:\n\n- It must be in .txt format.\n\n- All characters must be UTF-8 characters.\n\n- Each line must contain a single word or character with no spaces or whitespace characters.\n\n- It must contain at least one line other than the locale string.\n\n- Each line must not exceed 128 characters.\n\n- The file must not exceed 2500 lines.\n\nAdministrators should also consider the following when they create their dictionaries:\n\n- Lines starting with a # represent comments.\n\n- All words in the password dictionary are case-insensitive.\nFor example, adding the word \"password\" to the dictionary also disallows the following: PASSWORD, Password, and PassWord.\n\n- The dictionary uses substring matching.\nFor example, adding the word \"spring\" to the dictionary also disallows the following: Spring124, 345SprinG, and 8spring.\nUsers can then select 'Change Password' to update their passwords.\n\nAdministrators must do the following to create a password dictionary:\n\n- Create the text file that will contain the prohibited password values.\n\n- If the dictionary is not in English, they must add a locale string to the top line: locale:`languageCode`_`countryCode`\n\nThe languageCode value refers to the language's 2-letter ISO 639-1 code.\nThe countryCode value refers to the country's 2-letter ISO 3166-1 code.\n\nRefer to this list https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html to see all the available ISO 639-1 language codes and ISO 3166-1 country codes.\n\n- Upload the .txt file to Identity Security Cloud with [Update Password Dictionary](https://developer.sailpoint.com/docs/api/beta/put-password-dictionary). Uploading a new file always overwrites the previous dictionary file.\n\nAdministrators can then specify which password policies check new passwords against the password dictionary by doing the following: In the Admin panel, they can use the Password Mgmt dropdown menu to select Policies, select the policy, and select the 'Prevent use of words in this site's password dictionary' checkbox beside it.\n\nRefer to [Configuring Advanced Password Management Options](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html) for more information about password dictionaries.\n", "item": [ { - "id": "cc206ebb-f602-4ed5-aa91-099948fc2610", + "id": "22d5b461-350b-4ef0-b5d9-059c44b1de50", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -160525,7 +160525,7 @@ }, "response": [ { - "id": "0fbe476f-4ffe-41d8-be09-435fc198ca1a", + "id": "e9245a52-442f-4ecd-ba45-7ab538f5b24a", "name": "A password dictionary response", "originalRequest": { "url": { @@ -160563,12 +160563,12 @@ "value": "text/plain" } ], - "body": "nisi", + "body": "aute magna Lorem sint", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "daa69458-9f37-4a85-9b2a-b903aa86d463", + "id": "d63d0f7d-1e17-4061-ba51-6b13524f69bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160611,7 +160611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d40a8800-4e1a-4623-9467-3d8abb5eecef", + "id": "4d3e2fbb-4378-4f5c-97ff-2cb010159a17", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160654,7 +160654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13acc382-e958-45c3-aab3-06c28d9d9af2", + "id": "7adfc85c-fc9b-440c-9992-b14f3bafd339", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160697,7 +160697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "508a865d-ead9-4f71-882c-ac83cd9f2f2e", + "id": "114649c9-c4cc-4ce7-ac74-3eaaf85d3a4d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160740,7 +160740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84e726b7-0136-41c7-977f-4e88c5d60b36", + "id": "12788d82-c556-46d2-9feb-d7144fc16349", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160783,7 +160783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53c40487-f7de-4b1a-9d14-f8b1488be819", + "id": "093c6c93-abfa-4283-8630-b56623f2907a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160832,7 +160832,7 @@ } }, { - "id": "711e0ca8-9118-4b9b-a27e-5059deb6dc74", + "id": "5e38df92-9df7-4f2f-b258-05735f272445", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -160877,7 +160877,7 @@ }, "response": [ { - "id": "3f455d0d-c39f-4e5d-9ce6-bad572c4dc98", + "id": "de0a4e70-7dfb-4e4d-9920-995afdaa292c", "name": "Successfully updated.", "originalRequest": { "url": { @@ -160926,7 +160926,7 @@ "_postman_previewlanguage": "text" }, { - "id": "73b598e2-a9bd-4444-98d8-a96244877c2a", + "id": "2891ed10-5fca-4c87-a60c-8ac32d58eeb8", "name": "Created.", "originalRequest": { "url": { @@ -160975,7 +160975,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6fc9436d-1292-46fa-8c7c-362cec1ad829", + "id": "81b66822-e631-476d-b64e-4f6eba7c6b5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161034,7 +161034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d174fbe7-bf91-4607-8aed-2c03ca6f1fba", + "id": "3eea1de1-1dee-4c19-8c51-c13af7a2751c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161093,7 +161093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27279213-b751-4e6f-ac5c-2e9271504d60", + "id": "f7aa8ea5-c464-4ae0-9647-e6b92966a71e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161152,7 +161152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ca97d38-7a82-4379-9823-d4c1e7da97d8", + "id": "52f9ac42-2933-48fe-b767-86dcd9ed0692", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161211,7 +161211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea1c3f1f-445e-4756-9830-029ad939e4f1", + "id": "ccd58e97-3d60-4e6e-b1a2-4a1a74fffa46", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161270,7 +161270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c157e34-75c3-4a2f-8485-41e38aaae68c", + "id": "f1738072-3095-408f-9171-cedb4020511c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161341,7 +161341,7 @@ "description": "Use this API to implement password management functionality.\nWith this functionality in place, users can manage their identity passwords for all their applications.\n\nIn Identity Security Cloud, users can select their names in the upper right corner of the page and use the drop-down menu to select Password Manager.\nPassword Manager lists the user's identity's applications, possibly grouped to share passwords.\nUsers can then select 'Change Password' to update their passwords.\n\nGrouping passwords allows users to update their passwords more broadly, rather than requiring them to update each password individually.\nPassword Manager may list the applications and sources in the following groups:\n\n- Password Group: This refers to a group of applications that share a password.\nFor example, a user can use the same password for Google Drive, Google Mail, and YouTube.\nUpdating the password for the password group updates the password for all its included applications.\n\n- Multi-Application Source: This refers to a source with multiple applications that share a password.\nFor example, a user can have a source, G Suite, that includes the Google Calendar, Google Drive, and Google Mail applications.\nUpdating the password for the multi-application source updates the password for all its included applications.\n\n- Applications: These are applications that do not share passwords with other applications.\n\nAn organization may require some authentication for users to update their passwords.\nUsers may be required to answer security questions or use a third-party authenticator before they can confirm their updates.\n\nRefer to [Managing Passwords](https://documentation.sailpoint.com/saas/user-help/accounts/passwords.html) for more information about password management.\n", "item": [ { - "id": "8e2d2c09-1348-4c08-b152-2c27c29b690e", + "id": "09babfcc-c21d-4726-9337-3ebc09b0e840", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -161384,7 +161384,7 @@ }, "response": [ { - "id": "78c0d5e3-536c-4071-981e-31d93a42638e", + "id": "8d2a3ecf-2588-4b61-9c0d-73751b006658", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -161441,7 +161441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc52ac29-6052-4891-b123-ea23120845ed", + "id": "7fb6b83c-d0e4-4fdc-996f-aabe6c92a4d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161498,7 +161498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7b699ee-ab87-4481-91de-ec958fd56b28", + "id": "3aa55b1d-0c31-4a78-b1a6-ae20dbacf0ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161555,7 +161555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cbc6d30-9c7c-4c26-9199-4d6bf10085f9", + "id": "14272b09-8482-4ffe-9aa4-fe9f78c3a0c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161612,7 +161612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95f488cb-817d-44d6-8018-a21b1d72b0ea", + "id": "ee91c94a-15c7-41c7-a82c-844b0829af3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161669,7 +161669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab0dca87-0e9d-4c5f-aee7-f800ceb9dbf1", + "id": "072e8d7d-88f6-4582-bc9d-8253fa5eb630", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161732,7 +161732,7 @@ } }, { - "id": "113ce31e-010f-43bc-9889-74add88be677", + "id": "faa91228-592a-4bf6-a400-105468e28697", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -161774,7 +161774,7 @@ }, "response": [ { - "id": "3d2eb4ae-bd17-46c8-ad99-11cd6eeb50b1", + "id": "cce5c51e-3546-4ca6-b39a-07c18f39108d", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -161830,7 +161830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b44e2739-6c36-4010-bce6-44078648068a", + "id": "affca752-fe97-4585-8723-4eadc091d885", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161886,7 +161886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "565127e8-5cf8-4a89-b165-2a6fef3e508d", + "id": "9b1ed0b5-5e25-4a19-8a66-4334bf490471", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161942,7 +161942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59cf5583-32c6-43a7-8797-a47e6a96f040", + "id": "f205190f-7b23-44f9-af94-ed90416ec478", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161998,7 +161998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05940b16-faad-421c-bf5a-660748563e5b", + "id": "6f048124-b398-48ac-8475-618fb5e58a4e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162054,7 +162054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b12a1729-61ff-4bbd-9a20-e8b7257fb7bf", + "id": "14c9a529-03ab-4988-89c2-8e0041b71b32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162116,7 +162116,7 @@ } }, { - "id": "decc1a19-344d-4a58-aaf8-622a2eea71d0", + "id": "de702481-bd89-4582-b529-740fc24f1cca", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", @@ -162158,7 +162158,7 @@ }, "response": [ { - "id": "fda41a0b-a078-4f9d-b276-e6d660969db7", + "id": "77e6c77f-b2df-433b-980d-8228586390c0", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -162214,7 +162214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c156d16-cbdd-4111-aac1-1dd1103cf939", + "id": "67c08bf4-7fd9-4058-bd56-a5c095cfa675", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162270,7 +162270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08c5225d-84cc-424e-8313-5919f636159e", + "id": "7c08ea0e-c96d-4f16-9d2d-77c6d7c727be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162326,7 +162326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbd108ae-1d4e-4ee1-8cc3-2c9886aa27d9", + "id": "3906beaa-d63e-4164-b6ae-6c2c811c7c75", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162382,7 +162382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c98ef35-2c69-491e-88ac-b630b5346448", + "id": "1227d4e9-40e1-46b1-974a-55cd8738b071", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162438,7 +162438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc680303-5543-447b-bd40-0e83d961e150", + "id": "48bd3dbd-f241-4f8b-b962-e8acd881ac14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162500,7 +162500,7 @@ } }, { - "id": "e29ddb43-d920-4668-8d5b-6ca1b6be9ac8", + "id": "cd2d09f4-2a4c-4c71-af94-3f6be51fff71", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -162520,7 +162520,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -162541,7 +162541,7 @@ }, "response": [ { - "id": "ba9dfb54-5b7f-4521-b3ac-9b500a67610b", + "id": "4200e8ae-a5a8-4df6-81c6-d0c2f6b6bbb4", "name": "Status of the password change request", "originalRequest": { "url": { @@ -162585,7 +162585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab5f192-0373-4d74-90ec-e00354831051", + "id": "552fd2f2-e06e-4716-b864-dfc9295af670", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162629,7 +162629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce1d7e1e-c2b0-4d80-86de-c5d94903c1b8", + "id": "612d1eeb-af79-4b73-b092-ef65262b5e11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162673,7 +162673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cc1be27-d5b8-4df2-8efc-0d75782e7e79", + "id": "b006d343-8d71-46d4-8bd3-d618babf81aa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162717,7 +162717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d12d5a6-dfc4-483e-9c15-9c557264cb43", + "id": "91553ab8-78e4-4d28-bb16-7c460730570a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162761,7 +162761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "032f5dd3-1344-4a72-bf70-482ea399b5a0", + "id": "550e1ffa-b841-4be8-851e-32aa8f8aea60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162817,7 +162817,7 @@ "description": "Use these APIs to implement password policies functionality.\nThese APIs allow you to define the policy parameters for choosing passwords.\n\nIdentityNow comes with a default policy that you can modify to define the password requirements your users must meet to log in to IdentityNow, such as requiring a minimum password length, including special characters, and disallowing certain patterns.\nIf you have licensed Password Management, you can create additional password policies beyond the default one to manage passwords for supported sources in your org.\n\nIn the Identity Security Cloud Admin panel, administrators can use the Password Mgmt dropdown menu to select Sync Groups.\n\nRefer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/pwd_policies/pwd_policies.html) for more information about password policies.\n", "item": [ { - "id": "f7bc770a-7163-4fdc-9200-848a12d9753f", + "id": "723ef50b-09b9-4071-bd09-8a8eb912408d", "name": "Get Password Policy by ID", "request": { "name": "Get Password Policy by ID", @@ -162858,7 +162858,7 @@ }, "response": [ { - "id": "390747d5-f55a-46cd-928b-7e2b2c7f32f8", + "id": "c45bfc9a-719f-464b-9925-e7bb50c0ecb4", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -162902,7 +162902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4722653a-32f0-4fdd-8373-ef038c3fd9d9", + "id": "1e54e387-e1e8-4f83-b125-e85d5e3ae0bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162946,7 +162946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae4732a9-cd04-47c7-945f-62e4b0415a5b", + "id": "3085abe5-2298-42c0-8a3a-c1b8c5865cc9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162990,7 +162990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a306f2e5-e621-40b8-af40-bbd68f8e85c9", + "id": "18a0d8cc-c11c-4c0b-bdab-778ce242e394", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163034,7 +163034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63c6a683-2729-4a4c-9d5b-4bc0dfb7bece", + "id": "23829e87-70dd-40b9-8ece-a0db285aae45", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163078,7 +163078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9e7d0ad-3ddf-461c-af43-ecd6e2aec464", + "id": "1bb33ecb-236c-4134-9fe2-d82122114764", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163122,7 +163122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5031edb-b9ac-420c-927f-27f07ba0e1f3", + "id": "f7dc1eeb-6522-4e6d-933d-f7a99db10aeb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163172,7 +163172,7 @@ } }, { - "id": "2fac27b9-bdde-434a-8387-745c9e2e7ecd", + "id": "fe5c0e8e-ebd3-4d29-9912-4dce05b9f265", "name": "Update Password Policy by ID", "request": { "name": "Update Password Policy by ID", @@ -163226,7 +163226,7 @@ }, "response": [ { - "id": "47409ae9-db2e-4e1c-bc74-aac815bef197", + "id": "3c7210bf-c087-42f7-b165-ba9ebd48d703", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -163283,7 +163283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76051813-2f50-4434-91cf-b5ed19a6165b", + "id": "ec1d9d39-ed93-4310-af2d-e20401a9ed95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163340,7 +163340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63c042c4-2e3e-4420-b864-b5851658fdf1", + "id": "47e94c48-8f74-4cc3-9c07-cd78cec6af46", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163397,7 +163397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "166b2852-0e1b-420b-96ad-b53a67ef9322", + "id": "0ebbd207-909b-40f1-a8a9-8af6db44ad79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163454,7 +163454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23ea8120-1e87-4ebd-8382-ca197976ce9a", + "id": "7269a792-859b-44bd-8890-629a6f78d340", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163511,7 +163511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e104af89-fae3-472c-960d-0e29557b5e1e", + "id": "e3cfc722-7dcb-4eed-a778-b33cb80c3d21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163568,7 +163568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77eb6a9b-21bd-4f0f-a21c-e0a8a463b435", + "id": "48809823-2da6-416c-9eb3-e81893e3dcd6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163631,7 +163631,7 @@ } }, { - "id": "0c89b9be-3682-467f-a988-6630aad89d37", + "id": "d2cf5a32-2b42-4c6a-b79a-bdcf3e978f38", "name": "Delete Password Policy by ID", "request": { "name": "Delete Password Policy by ID", @@ -163672,7 +163672,7 @@ }, "response": [ { - "id": "12e87677-e5b7-4833-bd3e-9c9d6fbdbbb7", + "id": "bdab1919-d64e-4c13-8433-e59746822441", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -163706,7 +163706,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a5daf340-b27a-485b-b8ef-6151890a6dcc", + "id": "5aafbe3f-83c1-488f-bb38-aeb690636476", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163750,7 +163750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b1f06e-d90f-4d5f-956e-0c5ca4f1bd55", + "id": "d5746cd6-4374-4f81-a02d-19f3d1276ee3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163794,7 +163794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5837ba3d-8aff-4d36-a534-3e1a3dca2067", + "id": "a33f02f0-e189-4439-83a5-bfad95af89c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163838,7 +163838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a304221d-9f35-4a10-8ed4-fa09cb10cecf", + "id": "d080a607-fcde-4272-9b58-18a7cc6980d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163882,7 +163882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff90c1cf-dfb6-4629-bb12-d4698d81fb5c", + "id": "3ece1124-5b83-4fb0-a324-343925601c1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163926,7 +163926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bfb5706-bf23-4a4e-8b26-a13bb1bacfac", + "id": "9e7e37f1-65ac-4670-a843-ed1767f32e5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163976,7 +163976,7 @@ } }, { - "id": "e0cb5e5f-9438-42d3-9a94-79a7bf0ab027", + "id": "3eb16dbf-4306-4280-a225-064ce7ff4a6d", "name": "Create Password Policy", "request": { "name": "Create Password Policy", @@ -164018,7 +164018,7 @@ }, "response": [ { - "id": "80b7ccb6-11b2-430f-99aa-440396568f87", + "id": "bbae494a-ea06-497b-8a8e-d313decc2c68", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -164069,12 +164069,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"1981-06-18T06:33:24.631Z\",\n \"lastUpdated\": \"1954-02-20T22:31:14.724Z\",\n \"firstExpirationReminder\": 45,\n \"accountIdMinWordLength\": 4,\n \"accountNameMinWordLength\": 6,\n \"minAlpha\": 5,\n \"minCharacterTypes\": 5,\n \"maxLength\": 25,\n \"minLength\": 8,\n \"maxRepeatedChars\": 3,\n \"minLower\": 8,\n \"minNumeric\": 8,\n \"minSpecial\": 8,\n \"minUpper\": 8,\n \"passwordExpiration\": 8,\n \"defaultPolicy\": true,\n \"enablePasswdExpiration\": true,\n \"requireStrongAuthn\": true,\n \"requireStrongAuthOffNetwork\": true,\n \"requireStrongAuthUntrustedGeographies\": true,\n \"useAccountAttributes\": false,\n \"useDictionary\": false,\n \"useIdentityAttributes\": false,\n \"validateAgainstAccountId\": false,\n \"validateAgainstAccountName\": true,\n \"created\": \"cillum nulla aliquip elit\",\n \"modified\": \"proident \",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", + "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"2012-11-22T09:43:22.513Z\",\n \"lastUpdated\": \"2004-06-25T10:14:41.559Z\",\n \"firstExpirationReminder\": 45,\n \"accountIdMinWordLength\": 4,\n \"accountNameMinWordLength\": 6,\n \"minAlpha\": 5,\n \"minCharacterTypes\": 5,\n \"maxLength\": 25,\n \"minLength\": 8,\n \"maxRepeatedChars\": 3,\n \"minLower\": 8,\n \"minNumeric\": 8,\n \"minSpecial\": 8,\n \"minUpper\": 8,\n \"passwordExpiration\": 8,\n \"defaultPolicy\": true,\n \"enablePasswdExpiration\": true,\n \"requireStrongAuthn\": true,\n \"requireStrongAuthOffNetwork\": true,\n \"requireStrongAuthUntrustedGeographies\": true,\n \"useAccountAttributes\": false,\n \"useDictionary\": false,\n \"useIdentityAttributes\": false,\n \"validateAgainstAccountId\": false,\n \"validateAgainstAccountName\": true,\n \"created\": \"ut\",\n \"modified\": \"in\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ed00df5e-f6a0-4918-b06c-343c2ab4bc7d", + "id": "c98aaee2-389f-4f39-a073-5474786c5929", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164130,7 +164130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ddcd3b0-1bac-4485-b378-7fe8d7923fa0", + "id": "d138229b-61f1-4cbe-9c50-856eee2939ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164186,7 +164186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "277d98d0-7c87-489f-94ee-2ce93196a0fb", + "id": "3b780273-c84f-4394-b3b8-43f23f6d56f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164242,7 +164242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fbfe40e-86bc-4a5a-bfbe-64484852f6f9", + "id": "77617f97-40ae-4302-8d1d-7f7e0d23fa6f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164298,7 +164298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a504e5-4647-4192-9f96-4abe183f6dc3", + "id": "c31cdfea-aa36-4c41-b838-a01dda2862aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164354,7 +164354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93fe66f2-0148-4cd2-b848-c12ebe88961d", + "id": "39029b97-5019-4f4e-b330-80289628af8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164416,7 +164416,7 @@ } }, { - "id": "6825b9e0-0f1c-49f3-9bd9-42d489941e10", + "id": "cde78352-0bdc-4757-bca5-38cb289d42a2", "name": "List Password Policies", "request": { "name": "List Password Policies", @@ -164473,7 +164473,7 @@ }, "response": [ { - "id": "a7d04691-f184-4f8d-b181-3b559a920f0b", + "id": "3dac11c7-8561-4732-96d1-be95a3648ad6", "name": "List of all Password Policies.", "originalRequest": { "url": { @@ -164544,7 +164544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecd9005d-3261-4ce4-9035-5d14f3b8a019", + "id": "66110515-e9d7-4bdb-97df-41e521319f65", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164615,7 +164615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1720bcf8-377c-4723-92c8-1a73c8bb9afa", + "id": "b2fa2ad9-2ee0-40a0-b4ec-ac7f4f2e6cbb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164686,7 +164686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "128b1446-9ba1-4765-b54a-7da3a02a2edf", + "id": "002c879d-6ccc-4fa6-8a1d-2f2630085534", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164757,7 +164757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6508032-956f-40f6-81f0-5589385153ba", + "id": "21d09ea3-dcf2-4822-ae56-66a0028edd6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164828,7 +164828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1395b972-f924-4bee-8d54-72bc7b082572", + "id": "6898039d-c869-48dc-82d8-3ecd1210c6a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164911,7 +164911,7 @@ "description": "Use this API to implement password sync group functionality.\nWith this functionality in place, administrators can group sources into password sync groups so that all their applications share the same password.\nThis allows users to update the password for all the applications in a sync group if they want, rather than updating each password individually.\n\nA password sync group is a group of applications that shares a password.\nAdministrators create these groups by grouping the applications' sources.\nFor example, an administrator can group the ActiveDirectory, GitHub, and G Suite sources together so that all those sources' applications can also be grouped to share a password.\nA user can then update his or her password for ActiveDirectory, GitHub, Gmail, Google Drive, and Google Calendar all at once, rather then updating each one individually.\n\nThe following are required for administrators to create a password sync group in Identity Security Cloud:\n\n- At least two direct connect sources connected to Identity Security Cloud and configured for Password Management.\n\n- Each authentication source in a sync group must have at least one application. Refer to [Adding and Resetting Application Passwords](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html#adding-and-resetting-application-passwords) for more information about adding applications to sources.\n\n- At least one password policy. Refer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/policies.html) for more information about password policies.\n\nIn the Admin panel in Identity Security Cloud, administrators can use the Password Mgmt dropdown menu to select Sync Groups.\nTo create a sync group, administrators must provide a name, choose a password policy to be enforced across the sources in the sync group, and select the sources to include in the sync group.\n\nAdministrators can also delete sync groups in Identity Security Cloud, but they should know the following before they do:\n\n- Passwords related to the associated sources will become independent, so changing one will not change the others anymore.\n\n- Passwords for the sources' connected applications will also become independent.\n\n- Password policies assigned to the sync group are then assigned directly to the associated sources.\nTo change the password policy for a source, administrators must edit it directly.\n\nOnce the password sync group has been created, users can update the password for the group in Password Manager.\n\nRefer to [Managing Password Sync Groups](https://documentation.sailpoint.com/saas/help/pwd/sync_grps.html) for more information about password sync groups.\n", "item": [ { - "id": "d0fafe31-1dea-408c-8804-1c84ecc5964d", + "id": "21009ab7-e8ba-453b-9693-ef80c1dfc113", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -164968,7 +164968,7 @@ }, "response": [ { - "id": "e2d401a7-1df8-4a19-8544-633c1061c669", + "id": "5f418d6b-9f3d-4bed-b626-2302ef75bd18", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -165039,7 +165039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d75c6544-9f3a-4187-b01b-50d287ea5d4b", + "id": "11e1a52a-03ad-4daa-82e6-c51a0d07aedd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165110,7 +165110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73bd9d4d-d07f-4146-8853-d7394fbada87", + "id": "a883c41f-382c-48d2-8fd6-6f55f6b1ebd9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165181,7 +165181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e124a1d2-0e76-4bc0-b294-77c85b9e53bb", + "id": "15021e75-6f49-46a6-956c-2a65658ce7b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165252,7 +165252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f084b2f-202c-458e-ab9e-33804d084ed9", + "id": "776ad6ba-2a1a-4753-b664-e02c60f181ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165323,7 +165323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90a7ff8-1ec7-40fa-9edb-e3e6ace5d3f6", + "id": "318b4362-9546-41fc-a07a-e6bf3a4bef05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165400,7 +165400,7 @@ } }, { - "id": "dfdab5ad-c72b-4028-b29b-6159c4332912", + "id": "098fdd32-151a-46a4-88a4-240cd1094899", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -165442,7 +165442,7 @@ }, "response": [ { - "id": "ada7fc93-3dbe-4f1b-a4ba-5b8433b7da40", + "id": "5e88a678-7495-4ab4-8c00-f21d87a5a04d", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -165498,7 +165498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56277aaa-169c-492e-8b63-33d365a684e3", + "id": "cf2148ed-3cde-47a9-b021-a3f7c882fb5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165554,7 +165554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d8ad8b3-805d-4be6-87e6-64d1cfffdabb", + "id": "690f47fb-11fa-440b-b7ed-dcf26f0b64f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165610,7 +165610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bf66b60-fe2a-473d-8cb8-8986f9c9b5ad", + "id": "272f14a2-5409-45b3-8fa8-37a7c827282a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165666,7 +165666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0a0228e-aa02-42ad-ac5a-54d1a057959e", + "id": "75ca1f27-e371-4af7-85ca-93e123cba989", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165722,7 +165722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a786019-6142-41f6-9817-6d60e9a7a981", + "id": "d1a1f47d-5825-4f8e-9ab7-83b45ace48c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165784,7 +165784,7 @@ } }, { - "id": "4312b089-e7a4-4d1c-9b96-21086887937f", + "id": "8f45066b-ccf9-4ada-9068-dc288d079262", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -165825,7 +165825,7 @@ }, "response": [ { - "id": "dbbb1ce4-c130-422a-870f-99b83cff3b99", + "id": "86db66be-719f-4915-8cf3-c6bb0ad172f4", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -165869,7 +165869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2dfbbaf-3c2b-4a33-86b9-0037fbfa4424", + "id": "a8dda161-48e1-4301-af05-343a185ca63e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165913,7 +165913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f0b7687-5b4a-464e-aa56-771d6dd16697", + "id": "3716c5ef-5066-4c31-9e6a-2402e6498f4c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165957,7 +165957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2f74b2-3fe9-468a-8faf-2b804dddbb6e", + "id": "5a953cd7-252e-4680-95cf-9821f6b22b8e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166001,7 +166001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "846fa135-c7ef-4ed5-ad90-50969e9a651f", + "id": "acd4b475-6766-43e4-a9ba-a6803b980383", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166045,7 +166045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e39a3fa0-913b-4c3b-ab80-a193324ba402", + "id": "94d3cd20-9f32-4e19-b013-c8d1a1459c93", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166089,7 +166089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c635e25-d3f3-4f84-938a-b186bd452a0d", + "id": "3ca3bbb9-4084-4082-9c1a-40e464b945c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166139,7 +166139,7 @@ } }, { - "id": "cf5f5ed0-d5e3-4dd0-9d8b-d1624a8b31aa", + "id": "7f917bfd-361d-4e2f-8f94-980ca90e53f2", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -166193,7 +166193,7 @@ }, "response": [ { - "id": "e5b8354d-67f8-43d3-9bff-686437014a04", + "id": "e13e5e33-9964-449f-a0ef-91c9a4e5d122", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -166250,7 +166250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29ac0258-5429-4c2d-9128-6e416e1c7f87", + "id": "22592165-5708-4c96-b15a-16109e191268", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166307,7 +166307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "506587fe-3424-45dc-94d1-ae1f7f724881", + "id": "1a1495f3-d145-4269-b000-978a53664064", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166364,7 +166364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ad9916a-0e79-4505-8008-706fb1edccf5", + "id": "621d4194-12a7-480c-9739-b95f117ad643", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166421,7 +166421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29e03651-58de-4486-89d7-bc2a610cce54", + "id": "e4bd49a9-fa82-4fed-966e-a77712851575", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166478,7 +166478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "504139fe-4e6c-443d-9175-7791d42f2121", + "id": "c7e41ce7-9019-4f22-982e-cf713466add4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166535,7 +166535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b03295c5-2e90-4a6c-b7db-9bfa2e3b94e4", + "id": "94c84371-4f4a-422d-9560-071ee5db20eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166598,7 +166598,7 @@ } }, { - "id": "1f562477-9250-4c08-8f52-211d1bd273f6", + "id": "fdbe75a6-7ece-4c45-8dd0-efeb39fa3908", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -166639,7 +166639,7 @@ }, "response": [ { - "id": "164ad696-eb67-4997-b642-c9c505a107ab", + "id": "049c7bd8-cccb-419e-9ae2-d93c1d5f4d3c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -166673,7 +166673,7 @@ "_postman_previewlanguage": "text" }, { - "id": "40974aed-03b8-4395-91a6-c7902c025f6a", + "id": "dd4b0ee2-4f65-49e1-bbea-3e1881a1e705", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166717,7 +166717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f454412-81e5-4154-b38b-b6934d8d8267", + "id": "bd03be6d-945f-4f88-b634-18596036d986", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166761,7 +166761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ea0878-f45e-42d5-95dd-b60622c42324", + "id": "fe5950da-51a5-46a9-90a4-90c981b02c6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166805,7 +166805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fe11e5b-f4b0-4afb-91ad-e92a628602a5", + "id": "cf015de7-0a6e-4ae5-8cb6-ece4b8fe47f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166849,7 +166849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03e7f031-af09-4a82-a5db-7a9bf1bf5112", + "id": "948997e3-2080-4310-b7d3-84dc386c1fda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166905,7 +166905,7 @@ "description": "Use this API to implement personal access token (PAT) functionality.\nWith this functionality in place, users can use PATs as an alternative to passwords for authentication in Identity Security Cloud.\n\nPATs embed user information into the client ID and secret.\nThis replaces the API clients' need to store and provide a username and password to establish a connection, improving Identity Security Cloud organizations' integration security.\n\nIn Identity Security Cloud, users can do the following to create and manage their PATs: Select the dropdown menu under their names, select Preferences, and then select Personal Access Tokens.\nThey must then provide a description about the token's purpose.\nThey can then select 'Create Token' at the bottom of the page to generate and view the Secret and Client ID.\n\nRefer to [Managing Personal Access Tokens](https://documentation.sailpoint.com/saas/help/common/generate_tokens.html) for more information about PATs.\n", "item": [ { - "id": "9b58ec3b-1d8f-49cc-a7d1-6ad2fd3205bd", + "id": "1e895982-0b4f-480b-9eea-c04e7479a7d2", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -166953,7 +166953,7 @@ }, "response": [ { - "id": "38700aaa-550c-4fe2-8c87-b26b962090f1", + "id": "9799ff48-f343-4241-991b-a12b50edce64", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -167015,7 +167015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57d556f8-1925-43c4-8b8d-ee1a37d23e1c", + "id": "7947480d-7fc5-41df-bab4-1c49fc4f3bfd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167077,7 +167077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "545d08f5-3c58-4eb4-b6c7-f1e408eea36f", + "id": "00100b3a-145b-4f0d-8f67-b51e975bce2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167139,7 +167139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16b3d679-56af-4b3c-9aa5-b43a05f14a2e", + "id": "469b5e6f-781d-46b8-87d3-6b5a11392116", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167201,7 +167201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ac5a931-d096-44bf-83a5-28d49ee11c54", + "id": "d480b1c3-cc99-4fb3-9ec1-f5a62c284230", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167263,7 +167263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22f81639-952f-4f8a-bad0-baf3493c52be", + "id": "5a5cf4e1-7113-453c-8b3d-272a456f937b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167331,7 +167331,7 @@ } }, { - "id": "276ed119-5b82-418e-9c90-75d3f915b6bb", + "id": "d8d5b320-ac77-4193-8966-32bfe9e925cc", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -167373,7 +167373,7 @@ }, "response": [ { - "id": "c14379d6-1a72-4bee-acea-750bcac2ad35", + "id": "a81bf0be-10d9-43be-b7b8-01fdc37d582e", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -167429,7 +167429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12ef2c79-617d-4915-b2e4-a43f1211a827", + "id": "33aa48ef-e9bc-44d0-9b98-599026bed797", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167485,7 +167485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d53ae34-f627-4a87-9077-a4e469ab67db", + "id": "c750bab8-6dd5-47ee-b184-f5331b3bf7ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167541,7 +167541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bac97c2-5035-4889-a9b5-b77f7fdb5765", + "id": "a49c9ee6-9106-4ce2-af80-0c5b414478c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167597,7 +167597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd5567f9-3546-42ab-b32c-cc3f12f6c201", + "id": "10adff97-a372-4862-9aca-9b2f7a4dfd33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167653,7 +167653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c68f27-6483-42e6-b9c9-41d27b1a7edb", + "id": "9cc79dab-576d-49e2-bb31-5794b422afad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167715,7 +167715,7 @@ } }, { - "id": "81cbb3fe-0de8-435d-b567-4a30ba8303e0", + "id": "e5068e4d-0f67-4c01-b203-c8154000e526", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -167769,7 +167769,7 @@ }, "response": [ { - "id": "81fb408b-a237-47cf-b851-48589ddf4feb", + "id": "a59d73d6-5465-40e1-a2f0-4ea35b1bc778", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -167826,7 +167826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "012b2218-db0b-4a1c-aa09-29bfbfa80e1d", + "id": "7ddb3f54-8d07-498f-b2a5-fe0f3642ccb3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167883,7 +167883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fcb64b8-4223-4625-8248-564653adea47", + "id": "cf2eedbf-47d5-4372-b873-fdfc6bbd1e7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167940,7 +167940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205ae099-d0cf-4e49-8b64-515eded2e4f8", + "id": "375995d2-6fed-45e4-baeb-cef81b732650", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167997,7 +167997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f0ea369-465a-4ee0-976b-e9929ca7e7b9", + "id": "086d4a5a-deb7-45c1-863d-d802c9244ab6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168054,7 +168054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa361117-35bc-4d7d-85b2-a14710506df7", + "id": "b9d4e8f3-c260-47cf-ae0a-d94f4e2b4b1c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168111,7 +168111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f140ed39-a409-4b99-84c2-80e1904f9027", + "id": "0d6f770f-5bb9-4472-bb3b-e3aac42c0677", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168174,7 +168174,7 @@ } }, { - "id": "712824b0-b609-4214-bd99-e093ed82cfbe", + "id": "89d3022a-7dfe-4a67-a641-fa238115d5c5", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -168215,7 +168215,7 @@ }, "response": [ { - "id": "59695a15-fa3b-435d-a061-b539506205a5", + "id": "12cf71ac-7476-46ad-ab52-96b881c6e985", "name": "No content.", "originalRequest": { "url": { @@ -168249,7 +168249,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ca50aacb-8ecb-493d-bcba-a3dc14d2fdab", + "id": "0e5b691d-19ed-46f4-bd03-b0f8091bc3c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168293,7 +168293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "393e460c-da80-4aae-bd3b-7b8252f647fe", + "id": "545d3e33-a050-4458-9803-9334a8b38951", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168337,7 +168337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13e75b81-daa8-4e13-a8f1-4716120dc163", + "id": "e2f8c068-3faf-4ec5-bb69-059ed92a15d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168381,7 +168381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1751293-13ed-4870-aef8-bc3f2a6692b5", + "id": "84303553-969e-45fe-b35d-28ae44a874c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168425,7 +168425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1d5779b-98d5-44b1-b81b-5edb2f47b91f", + "id": "4edfa68d-0762-415e-92c3-a51d206ee6e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168469,7 +168469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdb33be7-7fb3-4e00-acdf-a0d97de9dc6a", + "id": "e7feb373-3f9f-4f7c-bb44-7a0ad5f86211", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168525,7 +168525,7 @@ "description": "Use this API to implement public identity configuration functionality.\nWith this functionality in place, administrators can make up to 5 identity attributes publicly visible so other non-administrator users can see the relevant information they need to make decisions.\nThis can be helpful for access approvers, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n\nBy default, non-administrators can select an identity and view the following attributes: email, lifecycle state, and manager.\nHowever, it may be helpful for a non-administrator reviewer to see other identity attributes like department, region, title, etc.\nAdministrators can use this API to make those necessary identity attributes public to non-administrators.\n\nFor example, a non-administrator deciding whether to approve another identity's request for access to the Workday application, whose access may be restricted to members of the HR department, would want to know whether the identity is a member of the HR department.\nIf an administrator has used [Update Public Identity Config](https://developer.sailpoint.com/docs/api/beta/update-public-identity-config/) to make the \"department\" attribute public, the approver can see the department and make a decision without requesting any more information.\n", "item": [ { - "id": "413bef5d-1126-41bd-acf4-07344acf80e9", + "id": "752b5c5e-d31c-4064-8bd2-3b95932cab8f", "name": "Get Public Identity Config", "request": { "name": "Get Public Identity Config", @@ -168554,7 +168554,7 @@ }, "response": [ { - "id": "d3aa09dc-e38d-4db2-bef2-2ebbdace3ffc", + "id": "6d1f2578-e6a1-4d30-a72c-c3e90e72978c", "name": "Request succeeded.", "originalRequest": { "url": { @@ -168597,7 +168597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0fa4bdc-1c59-4509-a554-074e4d0a0773", + "id": "fb44cbbc-5342-4edd-bd3f-6691014244b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168640,7 +168640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a5c9b95-96f7-412f-a45c-927bb5bdf6b7", + "id": "63f12336-5f6a-4369-ad2e-c063bd3b9bc3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168683,7 +168683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06dc4375-14c1-44ff-b7e8-fe2f7593d703", + "id": "4121216e-cacd-48c6-8bba-a2a2da5d8407", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168726,7 +168726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11776d12-0f7e-400e-9ca4-188279d57e8a", + "id": "6e03baf6-1c6e-4cb9-9c6d-f9bd4dd9b0a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168769,7 +168769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19937aab-057b-4ce4-b748-e030ec30e898", + "id": "07ad9fe4-e21b-426e-a6c9-c8a4d7bb6e33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168818,7 +168818,7 @@ } }, { - "id": "909b8159-7b41-4614-b7d8-89c43fa50d72", + "id": "53706fff-7444-446f-bc4e-18a1b482364a", "name": "Update Public Identity Config", "request": { "name": "Update Public Identity Config", @@ -168860,7 +168860,7 @@ }, "response": [ { - "id": "cb0919b4-1189-4d66-922b-0032836b39a6", + "id": "6d7b8845-00fa-4a4b-83d8-f5350455c283", "name": "Request succeeded.", "originalRequest": { "url": { @@ -168916,7 +168916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ae6811-3f17-4cbb-902c-f91493873511", + "id": "ff28b292-d982-4444-ba54-7f0cb77c115e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168972,7 +168972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8586c21f-befc-4fdd-969b-c16ca5f0eaa0", + "id": "e0923569-2d8f-4edf-9cfe-cfa7e315d202", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169028,7 +169028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b638fcc-ab4c-4f46-a275-16ce63be10b9", + "id": "9ab335ff-b917-422a-8dcf-6e0c999c9830", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169084,7 +169084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eb92157-3406-4f1d-a0b8-034755c4b9d8", + "id": "306a9ad9-a7e0-4cb2-812b-9fac85467bc4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169140,7 +169140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ffb1132-b950-4f31-99d5-671b47fb8e38", + "id": "a5f4e99c-2cac-4e78-80d5-2c257f0466b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169208,7 +169208,7 @@ "description": "Use this API to implement requestable object functionality.\nWith this functionality in place, administrators can determine which access items can be requested with the [Access Request APIs](https://developer.sailpoint.com/docs/api/beta/access-requests/), along with their statuses.\nThis can be helpful for administrators who are implementing and customizing access request functionality as a way of checking which items are requestable as they are created, assigned, and made available.\n", "item": [ { - "id": "c11ca012-0973-46f7-b76e-03f4771808bd", + "id": "68a14d0d-f2ce-4915-ae1f-6561ca0c4fea", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -169319,7 +169319,7 @@ }, "response": [ { - "id": "d2cb5365-559b-4b90-b437-5ac7ea3610ef", + "id": "e209c4c0-d7f4-4aeb-9388-a94b3fbf4bfb", "name": "List of requestable objects", "originalRequest": { "url": { @@ -169444,7 +169444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffa52ad8-ab7e-422c-aed2-f9abe1476196", + "id": "a764a3ee-df05-484c-9b25-eed22e9217f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169569,7 +169569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f414c14c-6a6d-47be-ad46-a795fe035619", + "id": "0fa154cd-7812-4452-a258-9571e32f9fc4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169694,7 +169694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "806694ad-41d9-45dc-b6d0-720077993866", + "id": "fc41dbe8-4c68-4f11-b569-3e6eccd4e2ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169819,7 +169819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4c00c3a-b883-4d0d-a76e-6084f5afc5a6", + "id": "28ce6f18-aa89-4287-9d53-bda563ea18f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169944,7 +169944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7223291-a83d-4ba2-994d-e59b6005aebc", + "id": "9d1b1f35-12a4-4af8-8d86-2fb7f4497f09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170081,7 +170081,7 @@ "description": "", "item": [ { - "id": "df183acd-c4d2-4115-af93-db3bac9a1f3a", + "id": "97deaa25-8923-4d16-8c72-89a16553cdd2", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -170111,7 +170111,7 @@ }, "response": [ { - "id": "a9a4ac02-0c76-4292-b437-23d7449cebc0", + "id": "97fab9b2-5386-4363-89ac-d66ef05f0f4f", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -170155,7 +170155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a67065ae-9838-4c96-aadb-65984211f8f9", + "id": "cc6768d4-8f8a-4df7-8f3d-f1a65ba2370c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170199,7 +170199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aee1470b-978f-4406-9b16-1accf329b4a8", + "id": "d290f1df-0d9c-4d4e-beda-b8da2310535d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170243,7 +170243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "156beacd-2cf7-427a-a056-50fd2ad49dcc", + "id": "a035f2df-8349-4ced-9137-d57c138c4db0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170287,7 +170287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "403055b7-f8bc-4e40-a1d3-80e7ff567e31", + "id": "9d7483ee-71e4-4f5a-8d29-3c5af39cef3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170331,7 +170331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eefd9cbc-7977-4257-8587-b8e76ad1901c", + "id": "c5b1b012-1154-481c-8a78-3e6fe2034a18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170381,7 +170381,7 @@ } }, { - "id": "0bca8475-6149-4ada-8b9e-c22e7de1f5ab", + "id": "5a0c90bb-8db8-4648-8db6-0116981a8e39", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -170423,7 +170423,7 @@ }, "response": [ { - "id": "ed6b5229-f898-4013-a863-6af3dcfa3737", + "id": "1ea2f52a-951d-4885-b4d9-a121ded708a0", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -170468,7 +170468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e103122-a4cf-4d0d-9431-2196fadcb587", + "id": "59ca7c23-bc2a-4891-8ede-72e5877055a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170513,7 +170513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "711a6d77-07fe-46b8-b724-1f5250c4e1b3", + "id": "cc540196-7ee3-4322-94db-2ed24eb05718", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170558,7 +170558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c706db-abb4-4d60-9182-30b563490709", + "id": "cb19dc07-6b80-4f42-b74f-a61e1e4e8941", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170603,7 +170603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "653dae26-3079-48ae-99ce-562ffe1f3110", + "id": "0af20036-74db-46aa-ba16-02a1a492e1a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170648,7 +170648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31efa8d-fdab-4798-9c32-bba8907b87dd", + "id": "9893ad35-c831-42a5-a5a6-1495641d4afe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170699,7 +170699,7 @@ } }, { - "id": "9b3d89f3-de4a-4715-9b68-8f1f68dd35c0", + "id": "891df508-c320-4362-accf-bf8b39c0638e", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -170729,7 +170729,7 @@ }, "response": [ { - "id": "890e6a8a-b197-40bf-afc3-9ef23750e217", + "id": "a39135bb-e11a-4240-a121-5a10a5c80d62", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -170768,12 +170768,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": -94865065,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", + "body": "{\n \"numberOfUpdates\": -17876683,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6da55be7-8d5a-4812-9b69-a1ce167abe44", + "id": "c5c97521-8523-479a-81cc-69e65aa2c019", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170817,7 +170817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96abac6b-684c-495d-ba76-23a9cd144d6a", + "id": "427a282f-b376-4aa3-9414-16e3de0874fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170861,7 +170861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d765274a-3a3f-45bf-8f12-bf0e442b8e56", + "id": "220c3dfb-8374-429c-8894-e23f678bb53e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170905,7 +170905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9355232-a5a4-499b-9833-dbec601e5986", + "id": "dbd81c5f-ef6f-405c-9a23-ba7b08025927", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170955,7 +170955,7 @@ } }, { - "id": "44708e24-bcab-45ca-95ca-e6d72e45b0fd", + "id": "dd1cd641-adee-4213-9e5d-935f1754e308", "name": "Get role insights", "request": { "name": "Get role insights", @@ -171030,7 +171030,7 @@ }, "response": [ { - "id": "bf9cb5af-42c3-45e4-aa70-d85a8a1a20b3", + "id": "639e0c87-9ffc-43c2-8966-6882bdb6671c", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -171114,12 +171114,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1988-12-15T05:00:59.051Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"Lorem incididunt ipsum aute\"\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2005-04-08T02:51:50.139Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"officia est nulla\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1995-01-15T22:04:02.519Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"ea tempor\"\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1983-08-20T17:12:44.997Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"cillum\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ef289706-14fd-428d-9fea-1477e4da1154", + "id": "55eda819-ab9f-445e-8b7c-6b7db2bae7df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171208,7 +171208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "806cabb4-b7be-4ee3-8667-61937da3a30a", + "id": "8d32c7f9-e9e8-4eed-ac8b-d457ad942974", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171297,7 +171297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f79d9059-83a6-494c-9e3e-1915d31f6f6e", + "id": "a6ac2612-789f-4c01-81e6-2da32f6b7a16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171386,7 +171386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a8c9d10-fc2f-471c-b1ca-0e6165684801", + "id": "6eb1a627-de4a-457c-811e-49e297b08b35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171481,7 +171481,7 @@ } }, { - "id": "14de032c-875c-4b89-8d0f-5079190f56f7", + "id": "57dfcfbb-fb66-473d-8629-e28c6ecec82a", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -171522,7 +171522,7 @@ }, "response": [ { - "id": "9df81e2f-66dd-4806-a34c-40154f001ee7", + "id": "a0ac2d92-9fb8-4d2a-890b-2bd116799e62", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -171561,12 +171561,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2022-05-11T09:36:44.312Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"amet non\"\n }\n}", + "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1971-09-02T07:32:58.478Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"enim eiusmod\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "58ed65f0-1b84-4776-9df5-46ba07ec8ff2", + "id": "a082f697-ef34-4162-9731-40e233509b5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171610,7 +171610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9295868e-702e-4e22-b38f-e80e16cceac0", + "id": "2c56b997-4bfa-490c-beea-3c33b6d2e455", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171654,7 +171654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5f9501f-b392-41e2-84f6-b037032a2c9e", + "id": "7370a37a-ece4-461b-add7-8ca2f45dc971", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171698,7 +171698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0546d171-dcac-4e43-9254-fdc743891c7d", + "id": "23095982-c5eb-41a5-a56f-35eb675746d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171748,7 +171748,7 @@ } }, { - "id": "a36b3e9f-01d5-46df-8a52-8cdde93d36c0", + "id": "81d2a9b5-6e99-46fb-9d85-a341d8471daa", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -171773,7 +171773,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -171809,7 +171809,7 @@ }, "response": [ { - "id": "588f9933-f946-491e-903d-f2ad9d15c3fb", + "id": "91a343e8-b6d8-4aa1-b376-3103669007b6", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -171829,7 +171829,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -171868,12 +171868,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"veniam reprehenderit do sed\",\n \"id\": \"minim\",\n \"description\": \"culpa Excepteur\",\n \"attribute\": \"occaecat do ipsum eiusmod\",\n \"value\": \"qui nisi nulla dolor\",\n \"source\": \"sed qui\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"in in anim proident\"\n }\n },\n {\n \"name\": \"dolor consequat\",\n \"id\": \"ad\",\n \"description\": \"sit\",\n \"attribute\": \"velit eu\",\n \"value\": \"culpa\",\n \"source\": \"dolor aute\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"fugiat voluptate nostrud\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"nisi aute in\",\n \"id\": \"occaecat cillum an\",\n \"description\": \"cillum veniam\",\n \"attribute\": \"sint\",\n \"value\": \"sint in irure\",\n \"source\": \"sunt laboris no\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"proident eiusmod\"\n }\n },\n {\n \"name\": \"fugiat ipsum sint irure\",\n \"id\": \"deserunt sunt culpa occaecat\",\n \"description\": \"ex laborum dolore\",\n \"attribute\": \"in\",\n \"value\": \"culpa tempor\",\n \"source\": \"et do\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"ad aliqua voluptate\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af13ab0c-a6a9-49d4-876e-f472c5b29d25", + "id": "e31e83bf-a779-4814-85ea-91874766cf34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171893,7 +171893,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -171937,7 +171937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6ac82c-d092-48f1-98cf-f46e56b97564", + "id": "a18ac8ef-2587-4e7a-aac3-2de325e6cee8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171957,7 +171957,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -172001,7 +172001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f0becd8-f313-4d6c-bddb-a58831b12673", + "id": "d1b3637a-2ff4-4ff6-aa13-fd5a351e4866", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172021,7 +172021,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -172065,7 +172065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02215da0-618f-41b1-ad08-4e2491fc826e", + "id": "0be8e865-4965-43d1-af15-ac2dfa68a5ca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172085,7 +172085,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -172135,7 +172135,7 @@ } }, { - "id": "a2302069-120a-4acd-862d-4246c7ba4408", + "id": "dd73da52-b041-4d84-9a03-6eb561942c57", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -172197,7 +172197,7 @@ }, "response": [ { - "id": "5b6cfd4c-d563-4b45-8411-68de13030015", + "id": "d37291d4-fab2-4013-91b8-a20abaa37cda", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -172257,12 +172257,12 @@ "value": "text/csv" } ], - "body": "nisi", + "body": "aute magna Lorem sint", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "7cebd96e-958d-4973-a1d3-baf84023ab52", + "id": "4fdf585f-9eab-4cf9-943b-bef2e3990841", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172327,7 +172327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f83c335b-b931-4cf5-8d23-aa5880849001", + "id": "69513629-7b5a-4bef-9c56-8a1d41a3b859", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172392,7 +172392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8217e5ba-4f16-4fe9-b1e6-ae33c2f100db", + "id": "4c5a8893-ca4c-477b-ac00-df28f20e96ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172457,7 +172457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9773e099-0ab0-4400-868c-5195436235f2", + "id": "7bb76dfd-2eb6-4515-8456-9d4a82378043", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172528,7 +172528,7 @@ } }, { - "id": "df3a42c1-249f-45c7-932b-49689751c1da", + "id": "e8eb1dea-0255-4a1d-8143-d38f38042479", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -172580,7 +172580,7 @@ }, "response": [ { - "id": "c99d5577-1d3d-4861-b527-2e6b988ead02", + "id": "54e42dc5-e7da-482d-9438-55753ffc4db6", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -172635,7 +172635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a1fd906-683b-4c57-9fad-fc0b5886f823", + "id": "cb0162e0-4977-4b3f-9729-5e112b58e085", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172690,7 +172690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae395348-4a2b-4069-83df-b223b8887bfb", + "id": "f02d5319-8acc-42dd-b464-50678256b9f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172745,7 +172745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b1b492-a901-404d-bd99-df12ac0ee28b", + "id": "bb498663-51f7-4d6f-86bf-4becde589887", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172800,7 +172800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac76c744-b313-454b-8558-192eea28a84d", + "id": "c6ee197a-b2e3-4de4-a3de-e37d85b5b732", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172861,7 +172861,7 @@ } }, { - "id": "d86518ce-e626-4455-a1cc-350789290463", + "id": "415bba64-122e-47b7-ad5b-60be50df9e03", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -172970,7 +172970,7 @@ }, "response": [ { - "id": "f7f1ce80-80e0-4446-b357-542142128737", + "id": "d4f0db6a-6f23-401e-8dce-c576c7af53c5", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -173072,7 +173072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f68ca3-af07-41ce-856a-98fd18fd6b3e", + "id": "5454c1a3-eb2e-4a92-a26a-a653cf69a203", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173174,7 +173174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "383cbfcd-051f-4ca6-b337-098f469e4489", + "id": "01c93f93-18ee-4773-aac8-bd57ee5e1e08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173276,7 +173276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0b88e57-2097-4cec-80e2-d489717c50c0", + "id": "cd00de55-c3be-458f-8fa3-4d91f7f73326", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173378,7 +173378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c0ba3ca-40ad-44f8-8e39-7a599da39334", + "id": "6cb70680-bbca-434b-a67f-fecce91d62e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173492,7 +173492,7 @@ "description": "Use this API to implement and customize role functionality.\nWith this functionality in place, administrators can create roles and configure them for use throughout Identity Security Cloud.\nIdentity Security Cloud can use established criteria to automatically assign the roles to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks.\n\nEntitlements represent the most granular level of access in Identity Security Cloud.\nAccess profiles represent the next level and often group entitlements.\nRoles represent the broadest level of access and often group access profiles.\n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nRoles often represent positions within organizations.\nFor example, an organization's accountant can access all the tools the organization's accountants need with the 'Accountant' role.\nIf the accountant switches to engineering, a qualified member of the organization can quickly revoke the accountant's 'Accountant' access and grant access to the 'Engineer' role instead, granting access to all the tools the organization's engineers need.\n\nIn Identity Security Cloud, adminstrators can use the Access drop-down menu and select Roles to view, configure, and delete existing roles, as well as create new ones.\nAdministrators can enable and disable the role, and they can also make the following configurations:\n\n- Manage Access: Manage the role's access by adding or removing access profiles.\n\n- Define Assignment: Define the criteria Identity Security Cloud uses to assign the role to identities.\nUse the first option, 'Standard Criteria,' to provide specific criteria for assignment like specific account attributes, entitlements, or identity attributes.\nUse the second, 'Identity List,' to specify the identities for assignment.\n\n- Access Requests: Configure roles to be requestable and establish an approval process for any requests that the role be granted or revoked.\nDo not configure a role to be requestable without establishing a secure access request approval process for that role first.\n\nRefer to [Working with Roles](https://documentation.sailpoint.com/saas/help/access/roles.html) for more information about roles.\n", "item": [ { - "id": "0f4fec92-b2c6-4864-8963-833ebac0f88c", + "id": "67df3940-c69e-49a0-b800-2f24d258983d", "name": "List Roles", "request": { "name": "List Roles", @@ -173594,7 +173594,7 @@ }, "response": [ { - "id": "cc483b6c-ff2e-4979-85ea-609f29f069ac", + "id": "4916fc69-cd16-4d4b-abf9-342bdad7c628", "name": "List of Roles", "originalRequest": { "url": { @@ -173710,7 +173710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e54f866-46c1-4565-8c0f-fa84af3840cd", + "id": "d334ea6d-8e1f-446a-a330-d1fd7851618b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173826,7 +173826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73f18f02-32db-4b9a-90ea-0eaf29abd9fa", + "id": "c568cae8-394c-4d3a-9356-e5b672c2974e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173942,7 +173942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f554a4b2-440d-45f7-826b-5ba5bc10c44e", + "id": "55f6cbfe-cf6b-44af-8178-b274dc5dc204", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174058,7 +174058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0df763c7-4ac5-4d92-979f-7d6647e1961e", + "id": "f5b065e9-c976-43ab-b57a-6eee26018379", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174174,7 +174174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac8c8d6-25f9-44ab-aba7-34aa8a7abbba", + "id": "cbb251fd-9572-43ac-8803-4039d91cd5a8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174296,7 +174296,7 @@ } }, { - "id": "45da0b7f-414d-4e0d-9a2a-1e5e36ab61cf", + "id": "bdd830bf-34ea-4fb2-8d0e-cd268ea6eea2", "name": "Create a Role", "request": { "name": "Create a Role", @@ -174338,7 +174338,7 @@ }, "response": [ { - "id": "c8c8b0db-b644-4b7a-8b91-5470c178511c", + "id": "c85a4893-df83-45df-ac48-fb7cb4564c99", "name": "Role created", "originalRequest": { "url": { @@ -174394,7 +174394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96b7f9a-21ca-40cd-af42-21f410c17557", + "id": "7425eddb-5aa0-4bb2-af63-74a501a6489b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174450,7 +174450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfa159f9-fddf-41e3-bb48-50364c6a06f3", + "id": "f838c1b8-a6a4-461e-933a-41abdfa24a69", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174506,7 +174506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97786471-4792-4ba5-973c-407b596246e6", + "id": "0811226f-149a-425e-b403-b5aa64cc649d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174562,7 +174562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4499743c-c69a-4d50-b9ea-b76c6d13716d", + "id": "46352ce1-ca05-4c45-8514-a04a69076c6c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174618,7 +174618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46e135b-50a5-49e9-a43e-388888cf6034", + "id": "ec4d0c93-1b4e-4468-b8d4-1489cdf71733", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174680,7 +174680,7 @@ } }, { - "id": "d39f443d-8b51-401f-bf5d-83ee5eb726e9", + "id": "7159d4f3-ffff-4de7-87e7-7034d30c0962", "name": "Get a Role", "request": { "name": "Get a Role", @@ -174721,7 +174721,7 @@ }, "response": [ { - "id": "073bdc1a-9e11-4ed9-a13c-98863fc4737c", + "id": "0861af79-da56-47f4-a8f4-df1352d66928", "name": "List of all Roles", "originalRequest": { "url": { @@ -174765,7 +174765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a5bbf88-b2a6-4e44-b08f-8deaabf1c21b", + "id": "55e9b488-0207-4c1b-8edb-087e700c26e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174809,7 +174809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de062087-2d6d-4409-91e7-b7ebd4b751cf", + "id": "a1c026e5-90bd-4c2e-8cab-cc7279c1170d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174853,7 +174853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbf30c6a-f627-49c1-a76f-9f429c06f2ed", + "id": "f03db222-1eb7-4f47-914d-9cd78c21339e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174897,7 +174897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "445e9e12-5811-4584-8665-204621dc5ce4", + "id": "c3a283e3-0a19-4ced-907a-692e0c8784a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174941,7 +174941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4be1a158-d792-4937-accd-7e6299f01f7a", + "id": "7d91a6ef-b2fd-4193-a6f7-678fa14b89ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174991,7 +174991,7 @@ } }, { - "id": "db4b89c9-612e-4c91-8e15-7484ccc7f293", + "id": "ef53716a-f79e-45ef-938b-90eb0cbf2c48", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -175045,7 +175045,7 @@ }, "response": [ { - "id": "d295e500-6159-4c6c-ab91-3e6304d8d38b", + "id": "0371ed50-e931-4054-80cb-c3f36639b44c", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -175102,7 +175102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f6cef17-7cae-45b9-9bd7-28169dbb7d91", + "id": "345ad28f-85b6-4adb-b2c5-a02611190e0d", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -175159,7 +175159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad336487-36a0-4859-855f-9aedfcd2ebcd", + "id": "3b2d2fe2-66b0-49fc-9e4d-7335cf9ecf12", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -175216,7 +175216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53abb090-ef4f-4af9-be60-1b3c64f7dd59", + "id": "bf59c234-c576-443b-8398-9da93938b595", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -175273,7 +175273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9749bfc1-286c-4481-89a5-242b329a2103", + "id": "f822f5dd-2414-4272-b3f0-2070a1f926fd", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -175330,7 +175330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "163f0a1a-c6e6-47ca-854c-33373287523a", + "id": "e4dec55f-3e91-47c0-a9c2-ef2e9358f80c", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -175387,7 +175387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c405dc28-d4dc-4493-8021-4e8a432ebdf2", + "id": "a2fc0353-6727-42fe-a1d8-1bfb2bc8e1f8", "name": "Make a Role Dimensional", "originalRequest": { "url": { @@ -175444,7 +175444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8b0f5c2-4c19-40f9-9510-d6bac325a6d1", + "id": "1b84218a-eec2-4a3e-81be-1435b6f43788", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -175501,7 +175501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5972dd0a-e0df-4020-a319-d18931ec4b22", + "id": "efccca5f-f9e2-48db-882e-d3627b002a3f", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -175558,7 +175558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64127be1-2886-4b7f-acb6-63311d92b3bf", + "id": "5262c6f9-db6b-4968-9516-dcb4824d74ea", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -175615,7 +175615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91884dec-799c-4620-8b6e-7b6aa0c62310", + "id": "28de77c4-64c5-4c6c-a5b6-09d083da400d", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -175672,7 +175672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "694b6493-f7f1-407d-bffc-aaac6bf60078", + "id": "0029e34d-4c7c-426f-9fd1-34c422518885", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -175729,7 +175729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59f2817c-39dd-489f-85ec-debd32e59a63", + "id": "f59ce2f2-7b1a-4eec-8131-a3b3379064f3", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -175786,7 +175786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bfc7785-022e-402f-adda-73531e3fe999", + "id": "52ac2815-ee4f-4716-bd39-1d4365d56333", "name": "Make a Role Dimensional", "originalRequest": { "url": { @@ -175843,7 +175843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b7a64cd-1037-402f-874b-2bf40e9cac89", + "id": "7ab2baaa-4fb2-4e68-8559-d049d2090e69", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -175900,7 +175900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "428d9658-ca53-43ad-b9da-8681434b12cc", + "id": "21b3efc6-f2be-427b-9171-2b0661d3f089", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -175957,7 +175957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73a8377c-bb00-4864-adf1-1b1662eb2183", + "id": "3bc8f06c-5ebd-4c05-ac50-8fab4165f59b", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -176014,7 +176014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57a278ac-5e3d-45a2-a7e9-e700754228f4", + "id": "4b6e32a2-c7da-4eb3-95cd-002f9d14d107", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -176071,7 +176071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eec6cae2-2fba-4d30-bf6c-b110901d253d", + "id": "721eb004-c8c9-4d7c-a2d2-33f282108d33", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -176128,7 +176128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4734c5da-1118-4c3e-8d5f-5af7225d4b1e", + "id": "c9809fd7-c9f7-494f-bd4f-2fa92a32f91a", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -176185,7 +176185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d4ae5ad-9233-4f9e-8db9-e67b831b1be9", + "id": "597a77bd-88c8-4d1e-9474-7dbecbe553fc", "name": "Make a Role Dimensional", "originalRequest": { "url": { @@ -176242,7 +176242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb49cf84-24d5-4f20-83ad-517799bb92ae", + "id": "ac2a0f07-591e-417b-a311-f86211ed999e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -176299,7 +176299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54471ad9-4433-4dab-8c6d-005f20a3b47f", + "id": "087aab4a-8fbd-45e0-bdc5-d5bc753a0b87", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -176356,7 +176356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73e6f6e3-137d-413a-9519-5b761f0f3cbc", + "id": "e3178072-3e01-4651-884e-99da8dc3aa50", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -176413,7 +176413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7657facc-92b5-408c-8cfb-92f85f24601c", + "id": "4b39b993-0441-4dac-a339-a8a2fb8166c8", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -176470,7 +176470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c674a157-7d7a-4779-b81a-d38256b13d8b", + "id": "d237111b-bf0e-47d1-b0fc-d1823cbf9aa5", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -176527,7 +176527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae352bd9-7c2c-4d1c-ab45-70d1ea7f07ed", + "id": "3af934b4-20ca-4900-bd4f-09aa66328083", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -176584,7 +176584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe4603b5-bc9c-49fb-8b2e-f73e89770ee4", + "id": "563b8015-9698-456e-8a95-fa1bd6e529a4", "name": "Make a Role Dimensional", "originalRequest": { "url": { @@ -176641,7 +176641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8baac71-1199-41ba-90dd-882db1785229", + "id": "49111413-81c8-48b2-848c-a71cf2e8da5f", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -176698,7 +176698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97d7d5ea-f360-45db-922c-59bcd5ed621b", + "id": "fee1b1c5-285d-42f9-9744-757375dd75d2", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -176755,7 +176755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5f464a-e7bb-459c-a7c5-f7cab200a871", + "id": "87577755-140a-45b4-9e12-70993480d505", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -176812,7 +176812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82a5833c-d359-4e95-8d6c-f30cfbca40fe", + "id": "5d5107e7-1c5f-47ca-9a3f-30241a1264c3", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -176869,7 +176869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1e03247-453f-4ec5-b836-c5aff5e4460b", + "id": "a9d277dc-493b-4f5f-aaa5-32703f29e84c", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -176926,7 +176926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e99bd48-d85f-4678-990d-b6e6e1dbd44d", + "id": "85a90dfc-b55e-4047-b22b-b855347fa4fc", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -176983,7 +176983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "755b9422-c17c-4db4-b8e1-43eed7016788", + "id": "72a2a782-f78e-4646-a78b-64efafbe1dc8", "name": "Make a Role Dimensional", "originalRequest": { "url": { @@ -177040,7 +177040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72d3e6c5-db92-43a7-9b76-4a9797a3d382", + "id": "e025df6b-8800-4bf8-8c06-46e752c5f6ea", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -177097,7 +177097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eba70b8b-ca88-4c3d-8406-b09f8c2f1cf4", + "id": "dc8a431f-433a-4851-821e-d740d5e561ad", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -177154,7 +177154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cc55c6e-1be4-4b35-a02d-ad66fa6b5c38", + "id": "e1289ab8-8a77-4341-8a92-c62cd40cf14b", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -177211,7 +177211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce77a790-42ee-4882-b298-5e76af38b8ed", + "id": "7f69dc17-61fb-4b78-bd10-ed7c5515c2a4", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -177268,7 +177268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2f12892-4a0c-4602-8439-2c0bb1c9c5d3", + "id": "6e7198a8-dab1-4b28-a86c-b3944e478da5", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -177325,7 +177325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c36f6092-c43a-47e2-a55d-c4e2616c6033", + "id": "fb3deb98-bf41-42c1-b829-719cc12b6922", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -177382,7 +177382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9943911-8d05-4da6-b034-93cbc578e3bc", + "id": "bba6c34b-c2af-4164-bb65-cc669f4028f0", "name": "Make a Role Dimensional", "originalRequest": { "url": { @@ -177445,7 +177445,7 @@ } }, { - "id": "937fc430-4c24-4391-8226-6522a31f8847", + "id": "0534aa33-853f-45a9-97f3-6741bc17e87f", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -177486,7 +177486,7 @@ }, "response": [ { - "id": "8fcacd8d-e283-4c8d-9872-ac0a28ff8789", + "id": "5dc477f3-160a-4f1b-9174-7be43d6c6338", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -177520,7 +177520,7 @@ "_postman_previewlanguage": "text" }, { - "id": "295690ac-4dc0-4930-9836-5017ee2315b2", + "id": "f7a33abf-9995-4d4d-b78b-a7257fbafb2a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177564,7 +177564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f945309c-cd4e-43bb-88a6-495161f06a75", + "id": "e73a2bd1-6ed6-49be-86b4-d3981c991838", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177608,7 +177608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3581156c-b940-48f0-8e30-4c1864272faa", + "id": "dd7a7907-eecc-4a48-9a8b-1d3aa5a15878", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177652,7 +177652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46c221f1-ec6f-4d3b-8684-fecb7fc68cfa", + "id": "39d9f022-636b-46f0-a264-986c4c2fc295", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177696,7 +177696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2973e775-3709-44c5-bb57-179a5f84a0cc", + "id": "393c3348-a859-4bf8-88af-ffc0fa114a68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177746,7 +177746,7 @@ } }, { - "id": "b0f932d5-efc2-4877-a801-9c50a2629db8", + "id": "f75a98b7-72e7-4760-ad21-3548fa91d7b0", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -177789,7 +177789,7 @@ }, "response": [ { - "id": "73c09afc-e0d4-40ce-9ee5-fe1cd0c94ad5", + "id": "ea5928f0-6374-4afd-b3b2-43c617c659e1", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -177846,7 +177846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53b2c49a-5aa3-49d5-a367-b0700a9e74ed", + "id": "419e1b52-0763-4d1b-bf7f-b32c6524569d", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -177903,7 +177903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e19b14ae-faaa-470f-ad8c-d5af12633ef6", + "id": "87412cf5-050c-4ffc-9da3-75d0e22616a3", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -177960,7 +177960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28ef0014-c202-49a8-a24d-a65f13125eaf", + "id": "d3e87473-9b73-4569-86d0-59562f545614", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -178017,7 +178017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "839f1b12-0f17-464e-a020-b98908df0693", + "id": "76417e8e-3a16-4274-85b1-9e7bdc14da7d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178074,7 +178074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "783718e3-589b-49b6-a593-1517ca298bc4", + "id": "42c9c010-e79d-406e-9102-1011c6da4a47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178131,7 +178131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "828f5bb0-215e-4bd5-aa9f-f2faad1ac7ec", + "id": "a300f3a3-e892-4d32-83d9-30a10cb70f80", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178188,7 +178188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "071b970c-550b-411b-939f-360219a94fd0", + "id": "cb5310c0-b2c2-478f-a7bf-511e73572e9d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178251,7 +178251,7 @@ } }, { - "id": "2391e2e4-877e-4a84-ae70-235706581868", + "id": "b35516a6-d737-4939-978b-d0d80ecb3f91", "name": "Identities assigned a Role", "request": { "name": "Identities assigned a Role", @@ -178336,7 +178336,7 @@ }, "response": [ { - "id": "91d8244c-8028-46b3-a658-4c01beb683e3", + "id": "75558193-0f95-4d0e-a4ca-c7123907aad8", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -178427,7 +178427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "015f7722-520f-4dbb-a00d-fb600744bb11", + "id": "49347d25-8e03-487d-aa83-6be776c4ab63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178518,7 +178518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d8be6be-4006-4017-9cdb-4dcf18fd0966", + "id": "09410164-609c-46bf-88d1-f3a27ee28c35", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178609,7 +178609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8912799f-e457-4e00-acc2-feb0788c4cd5", + "id": "90ac438d-0505-4486-91db-01750aa20cd5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178700,7 +178700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ec32bbd-0013-4166-9449-739819b988fb", + "id": "7df56843-20af-452d-9e4f-6eedbe68c936", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178791,7 +178791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a264b7a2-4e50-401a-bd7b-449d312e8274", + "id": "654e46cd-3f8b-4b98-8acc-dc4b679be216", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178888,7 +178888,7 @@ } }, { - "id": "45f58dd8-2079-48c6-9fd2-c72219e73232", + "id": "bc7a9367-a099-4b5e-9f35-ecad58b3ed58", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -178976,7 +178976,7 @@ }, "response": [ { - "id": "dc2e46e1-4fe9-498e-abf8-16d6fe61d496", + "id": "712138f2-847c-4057-8b16-e5a6bb186a17", "name": "List of Entitlements", "originalRequest": { "url": { @@ -179067,7 +179067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca45116e-5935-4176-9a63-946f15b27408", + "id": "ce3495e9-9d85-4958-9e27-17d641a63525", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179158,7 +179158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0cabe1-17dd-4462-ab3b-a0c8a9b2e68e", + "id": "5c0c21d0-aed7-4880-9226-78a25f00988e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179249,7 +179249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07a164c8-ce13-43a8-8ab0-8018b1975a76", + "id": "a00c0c11-3dac-4d7e-a0c3-527ab577e8ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179340,7 +179340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e260d9ca-09d2-4d81-b1dc-8bd5d13c8fbc", + "id": "69f9d35b-f6d8-4812-b40b-eec6ff672e49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179431,7 +179431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a060191d-f81d-4455-aa72-0b9671351b63", + "id": "e1d1cc3b-0e13-4747-9513-f43003ae0830", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179534,7 +179534,7 @@ "description": "Use this API to implement search attribute configuration functionality, along with [Search](https://developer.sailpoint.com/docs/api/v3/search).\nWith this functionality in place, administrators can create custom search attributes that and run extended searches based on those attributes to further narrow down their searches and get the information and insights they want. \n\nIdentity Security Cloud (ISC) enables organizations to store user data from across all their connected sources and manage the users' access, so the ability to query and filter that data is essential. \nIts search goes through all those sources and finds the results quickly and specifically. \n\nThe search query is flexible - it can be very broad or very narrow. \nThe search only returns results for searchable objects it is filtering for. \nThe following objects are searchable: identities, roles, access profiles, entitlements, events, and account activities. \nBy default, no filter is applied, so a search for \"Ad\" returns both the identity \"Adam.Archer\" as well as the role \"Administrator.\"\n\nUsers can further narrow their results by using ISC's specific syntax and punctuation to structure their queries. \nFor example, the query \"attributes.location:austin AND NOT manager.name:amanda.ross\" returns all results associated with the Austin location, but it excludes those associated with the manager Amanda Ross.\nRefer to [Building a Search Query](https://documentation.sailpoint.com/saas/help/search/building-query.html) for more information about how to construct specific search queries. \n\nRefer to [Using Search](https://documentation.sailpoint.com/saas/help/search/index.html) for more information about ISC's search and its different possibilities. \n\nWith Search Attribute Configuration, administrators can create, manage, and run searches based on the attributes they want to search.\n", "item": [ { - "id": "a988ccd1-b1b3-4cab-8a69-a46ed46542ff", + "id": "9efc88db-9cf6-4cf9-b2be-eab4761307a2", "name": "Create Extended Search Attributes", "request": { "name": "Create Extended Search Attributes", @@ -179577,7 +179577,7 @@ }, "response": [ { - "id": "1fafa67b-3694-474e-b7cf-f72446519f41", + "id": "def84ddf-f42e-49d7-90aa-cbac80e1429c", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -179634,7 +179634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72666e24-a582-4385-8b76-9df627d97bd0", + "id": "2c56f435-fd17-45aa-b533-fd3548ae58d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179691,7 +179691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d922ce08-070c-42cc-90ac-f5b90071ecb4", + "id": "a6f61e02-c6fd-4e36-b2f2-27b8ac7efc54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179748,7 +179748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "158c9a1a-9642-4f43-a102-f2c50e400b44", + "id": "26580e50-f5b1-44dd-85e8-3561998d88a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179805,7 +179805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69a96240-5fdc-4dd4-a08c-0dcfb9f1f8ca", + "id": "b1228f4f-b1f4-4559-a415-5dccf7882678", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179862,7 +179862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1984d7bb-31e8-46f3-b3c5-3abd27ca705e", + "id": "da88e3cd-7cb4-4fde-9bf5-bd0328260127", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179919,7 +179919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30088e9-fc60-4410-8f22-bdb4c989a280", + "id": "318f2007-313c-42c9-bd66-895ef4f047cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179982,7 +179982,7 @@ } }, { - "id": "bb318e71-ee23-4b19-bb52-bd608f81c42c", + "id": "cbdd0f4b-4046-4d8b-b2e2-950cb7497a78", "name": "List Extended Search Attributes", "request": { "name": "List Extended Search Attributes", @@ -180012,7 +180012,7 @@ }, "response": [ { - "id": "9e1e38aa-9be0-4d56-aedf-e47ffdbc2c1c", + "id": "62fd450b-b903-4b2e-bb56-4f63d54b65e8", "name": "List of attribute configurations in ISC.", "originalRequest": { "url": { @@ -180056,7 +180056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecf481f0-c976-47cd-8dee-1d8b9bf0c7f7", + "id": "36130168-c3d7-42f8-886f-ee3eea85eb22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180100,7 +180100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ec9c71e-44c0-4a3c-9a05-f3e418e68805", + "id": "ac5d2859-efa5-472a-b67f-bc21f7b1e3e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180144,7 +180144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71fb7470-1db1-4a21-982c-b9cbe4a461fb", + "id": "2c43a27a-ef2d-4bb1-a5de-028890bfdca6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180188,7 +180188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25ca25d4-69ec-4837-b239-38c10c5939dc", + "id": "cdb3ad2e-e07d-414d-b60e-257157e0896f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180238,7 +180238,7 @@ } }, { - "id": "f7fc1bde-e72f-4f47-93c5-f6e610eefd1f", + "id": "ea3348e3-ec8e-48f1-b65f-50167204972d", "name": "Get Extended Search Attribute", "request": { "name": "Get Extended Search Attribute", @@ -180280,7 +180280,7 @@ }, "response": [ { - "id": "5fcde28c-9508-4f21-801c-c642bf9c4051", + "id": "bf9bc164-9922-444c-9bf2-f4b307ee7e0b", "name": "Specific attribute configuration in IdentityNow.", "originalRequest": { "url": { @@ -180325,7 +180325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f7900ad-7173-4845-8998-7a88be6f82ef", + "id": "910276cf-ac34-492d-8a3a-5e83158a6975", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -180360,7 +180360,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ae8d0c43-ca91-4a15-a7d9-71887318c2cd", + "id": "edaacfdc-96e1-4201-a93e-3d166dcb477e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180405,7 +180405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f182060-6b0b-4cb4-aaca-a0eb488db9c8", + "id": "8b54b85f-2e82-4c25-999a-e78d3f9d568a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180450,7 +180450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "083cc584-ac41-43c5-80ac-1116638d10b7", + "id": "3958def7-0a6e-431e-a71c-ddcdc1adadb8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -180495,7 +180495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bf06aa8-1fca-4c4b-868d-3cfebc8ef62e", + "id": "6307b6b7-bf6c-4f77-8cc6-897cb8a3b736", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180540,7 +180540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af246073-69d2-432c-8469-be8dfe309ada", + "id": "23d44a75-6de7-4a51-9546-df1c347b682e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180591,7 +180591,7 @@ } }, { - "id": "bb965ec3-0aa7-4f14-9ace-4fd3540d51ca", + "id": "7ad1f25e-5a5e-4029-a701-3724eb4ad867", "name": "Delete Extended Search Attribute", "request": { "name": "Delete Extended Search Attribute", @@ -180633,7 +180633,7 @@ }, "response": [ { - "id": "12a7c8be-559b-43df-bc54-5a1fbeb401b2", + "id": "d99d58e5-0ac8-4adf-a98e-b2bdd044ad4e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -180668,7 +180668,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dd6a3ff7-fc15-4e9d-8c86-d70d830c402e", + "id": "25327cda-b25d-46e5-864b-34f02a3fcc3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180713,7 +180713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47f62ce-3f27-4ec1-8cc5-2e341533e133", + "id": "1afa8d2b-73b3-42cf-bf59-5eb2072d26db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180758,7 +180758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8547b58a-5ba6-4aef-9eb5-427d9a13a336", + "id": "49548efe-162b-4e5e-ac10-768bf8434e1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -180803,7 +180803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79511843-2810-4617-9746-afd4eaf7312d", + "id": "c0cbd490-9a6a-4917-abf9-2145e37301b3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180848,7 +180848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d36f72-f4f1-4f09-97a4-50e9ba1167bd", + "id": "abd9d1f5-22a0-4912-bf9e-9ed8d8b429b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180899,7 +180899,7 @@ } }, { - "id": "31dfe6ae-a4a2-4b06-a01f-152fc6c4038d", + "id": "d4e59f18-d194-4e43-8c32-0013962c09b3", "name": "Update Extended Search Attribute", "request": { "name": "Update Extended Search Attribute", @@ -180954,7 +180954,7 @@ }, "response": [ { - "id": "0f632ad7-c295-4d12-ada5-b7d14372763b", + "id": "ca8ea1fd-2084-4966-b566-61c93d1c7160", "name": "Responds with the search attribute configuration as updated.", "originalRequest": { "url": { @@ -181012,7 +181012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54375d7e-45ed-46ea-8d7a-e1a682cb7733", + "id": "d9bc4d70-5157-4c27-a6a2-7cbde208efbb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181070,7 +181070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad7116d-26fb-405d-92b3-65002b25261b", + "id": "8e404dc4-0164-4e8e-81f1-5b9f44cb1492", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181128,7 +181128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fd60a33-00f6-45d8-ae8b-6aa8a75c3efe", + "id": "a0c6bfa5-fd55-4f4e-87dd-4d46ed0e4777", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181186,7 +181186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79bb252e-5014-4570-b580-9a79dd402e33", + "id": "7dfb3dd7-29c9-47a7-8d7c-1373c0bead4f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -181244,7 +181244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a18b90f-1581-4335-a5a2-a700095c00b4", + "id": "39abbd5d-e91f-466f-be0d-6ae67e786c79", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181302,7 +181302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d969754b-26b3-4e55-b497-3ad1b377c5cf", + "id": "1165141a-25e6-4d9a-8e63-6ee5adab0566", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181372,7 +181372,7 @@ "description": "Use this API to implement and customize access request segment functionality. \nWith this functionality in place, administrators can create and manage access request segments. \nSegments provide organizations with a way to make the access their users have even more granular - this can simply the access request process for the organization's users and improves security by reducing the risk of overprovisoning access. \n\nSegments represent sets of identities, all grouped by specified identity attributes, who are only able to see and access the access items associated with their segments.\nFor example, administrators could group all their organization's London office employees into one segment, \"London Office Employees,\" by their shared location. \nThe administrators could then define the access items the London employees would need, and the identities in the \"London Office Employees\" would then only be able to see and access those items.\n\nIn Identity Security Cloud, administrators can use the 'Access' drop-down menu and select 'Segments' to reach the 'Access Requests Segments' page. \nThis page lists all the existing access request segments, along with their statuses, enabled or disabled. \nAdministrators can use this page to create, edit, enable, disable, and delete segments. \nTo create a segment, an administrator must provide a name, define the identities grouped in the segment, and define the items the identities in the segment can access.\nThese items can be access profiles, roles, or entitlements. \n\nWhen administrators use the API to create and manage segments, they use a JSON expression in the `visibilityCriteria` object to define the segment's identities and access items. \n\nRefer to [Managing Access Request Segments](https://documentation.sailpoint.com/saas/help/requests/segments.html) for more information about segments in Identity Security Cloud.\n", "item": [ { - "id": "9cfeeecf-a5dc-42be-ae45-51e9c69eef88", + "id": "2ed197e8-92c9-42d6-9244-69bd4cfc015c", "name": "Create Segment", "request": { "name": "Create Segment", @@ -181414,7 +181414,7 @@ }, "response": [ { - "id": "f368f8ef-7341-441c-b7e6-9e9797756762", + "id": "e1e26bb5-851d-48bc-89cc-c93b80147a59", "name": "Segment created", "originalRequest": { "url": { @@ -181470,7 +181470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b29e07bf-1aef-4b45-9b89-6e010e44b964", + "id": "0bf02ba0-2bf8-44e6-9281-b02007bd7ae2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181526,7 +181526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2f1a5d6-e373-4be7-9ba4-46edb7bc8259", + "id": "b16b0d08-4773-421c-a8c2-e684bd223e37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181582,7 +181582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7c6c8ef-3219-459f-aa1b-109362db313c", + "id": "c5e4b1e1-afb3-43d3-90dc-61b884119c92", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181638,7 +181638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bc52bef-5658-4777-b52a-b6c51e857782", + "id": "5f457e58-3d0a-47ab-b13d-5d93ffcd4102", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181694,7 +181694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bba2a6f2-09e3-40ac-b1b7-809f5649d676", + "id": "6c92ee2d-44f7-4a5c-a2e3-d0e2e8378f3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181756,7 +181756,7 @@ } }, { - "id": "571b5ffd-d6ec-440a-b571-b094b11062dd", + "id": "dd202bad-914a-4457-ad62-def34f181b7c", "name": "List Segments", "request": { "name": "List Segments", @@ -181813,7 +181813,7 @@ }, "response": [ { - "id": "2f86831a-bf35-4346-a7f9-c0324b574f1e", + "id": "54949b70-44ea-4651-9f2a-b267d80db0c2", "name": "List of all segments", "originalRequest": { "url": { @@ -181884,7 +181884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f00c14-95c1-440d-ad56-390b46b2ed33", + "id": "57e01c1f-e3a8-4a86-ab2a-9db068eac051", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181955,7 +181955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94024713-b622-4746-a020-de2af1bf1aad", + "id": "b66a7b57-5e38-4d93-a127-12efd74af521", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182026,7 +182026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40754b81-36c9-4dc4-92f6-bd70c5a67bb9", + "id": "4165667e-503f-4e9c-b8f4-2d2f4e4acc01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182097,7 +182097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0becab6-a466-44e5-be37-7824d9e043bd", + "id": "0410b30f-9ae9-40ea-ab33-4afec14c73ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182168,7 +182168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c09b8c8-2812-487f-b194-e08a752f92cc", + "id": "bc8fb043-13ad-421b-b00f-18c2247427ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182245,7 +182245,7 @@ } }, { - "id": "edd240d3-38c1-48f2-b123-f51feb279ef1", + "id": "287de4c4-6326-4512-8a0d-9db74a0eecd5", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -182286,7 +182286,7 @@ }, "response": [ { - "id": "096a92f6-b431-4270-8f80-269eaba1a433", + "id": "b0a72139-fccf-4c10-98c7-c42ba0cac530", "name": "Segment", "originalRequest": { "url": { @@ -182330,7 +182330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed5bcfb1-50b9-47c1-b034-a2a5c2c3bc63", + "id": "05b18a01-d2af-427a-8ccd-324184c64482", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182374,7 +182374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e2b7cc2-8d8e-4990-8b0f-4326b8b65214", + "id": "41f355e8-16af-466e-9ee1-971b1a7cbc81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182418,7 +182418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c7b32ab-821c-4fd6-946a-accfb3f302d1", + "id": "10a7033a-8b16-44b9-9875-f03f7a627b00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182462,7 +182462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc960c6b-7fcf-4763-b123-ea4aa93f4f8d", + "id": "c3283b96-38c5-4e21-9e3b-94b6c3169414", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -182506,7 +182506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08f4e05e-5fd5-4cc4-ba94-fa10650f5173", + "id": "c8f0c7b6-928d-401d-b226-d8ae641cdf02", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182550,7 +182550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c6d8766-a751-4777-9db2-441c9d3decc4", + "id": "b21885a5-ddff-4808-9b6f-7d517b7bcee6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182600,7 +182600,7 @@ } }, { - "id": "b207e449-b664-43e1-87d3-97c9185eecde", + "id": "2d954b97-a8b5-4f59-a1ec-e4a2ac852fc5", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -182641,7 +182641,7 @@ }, "response": [ { - "id": "da54a7e9-93b7-4553-99aa-dec9b37c5c6a", + "id": "0ef548fa-d3a5-4191-9b63-8d553c7bedbe", "name": "No content.", "originalRequest": { "url": { @@ -182675,7 +182675,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0ebb93e3-206e-4863-8163-ef7c913e9d41", + "id": "16a5b002-47a9-45be-8219-1178f1d345d8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182719,7 +182719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91295d2a-e8a0-4ac5-b9cf-4628fb7cca94", + "id": "1bac121e-2cd3-4349-b252-cd210a603cda", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182763,7 +182763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234a1764-2b13-41cf-993b-4056f6153490", + "id": "b4abd382-ed34-45f1-a6e5-fadd229db980", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182807,7 +182807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49d2cb4d-b5a8-461b-874f-40eac5cfda9f", + "id": "760e57ce-e9e9-42da-b901-4cd1493ec50f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -182851,7 +182851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0c2eba0-46f7-421a-a7ec-dafa951c15fa", + "id": "1a450e85-1b1b-4bf7-aef9-e43a6ba2b34d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182895,7 +182895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed35fbd5-6e81-4a99-82b8-504eef709fc8", + "id": "4c6e8328-6ec5-4ad3-9a0b-137fc772c2e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182945,7 +182945,7 @@ } }, { - "id": "615e5fcb-fd27-4226-8f73-638456227241", + "id": "f9a71a8b-7ef9-4974-ac9f-d7633ede6eb4", "name": "Update Segment", "request": { "name": "Update Segment", @@ -182999,7 +182999,7 @@ }, "response": [ { - "id": "4b91db8e-51fe-4288-adae-924dc561b05c", + "id": "bcf8dfdb-50d8-48d0-8958-58b8fdb6fec0", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -183056,7 +183056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d6f847b-bf10-43b2-a1e2-bd7c7894dea2", + "id": "126a023a-054b-42cc-984a-b267fa5cad5e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183113,7 +183113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "880374b9-f149-4c07-a82a-16e137bd476e", + "id": "948989bb-08c9-41f1-87ea-d0667e2aa862", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183170,7 +183170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "719c51de-89aa-4381-abdf-10ec6b774567", + "id": "fad4f8f8-b5da-4196-8901-d8fa0901108c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183227,7 +183227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f5727a1-ee52-43d8-ab04-940fadfbac58", + "id": "74d6d65a-8dbb-450c-83be-35780d42c409", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183284,7 +183284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22ae1d62-9ba8-4a0f-806e-cf4c69886385", + "id": "c9ab6f3e-4fe7-40d0-a0b9-47f5271a9ef1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183341,7 +183341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6d5e669-84bc-4ca5-8748-7052b3975198", + "id": "c6d0910a-5ca8-470f-aa45-93f3af96902a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183410,7 +183410,7 @@ "description": "Use this API to build an integration between Identity Security Cloud and a service desk ITSM (IT service management) solution.\nOnce an administrator builds this integration between Identity Security Cloud and a service desk, users can use Identity Security Cloud to raise and track tickets that are synchronized between Identity Security Cloud and the service desk.\n\nIn Identity Security Cloud, administrators can create a service desk integration (sometimes also called an SDIM, or Service Desk Integration Module) by going to Admin > Connections > Service Desk and selecting 'Create.'\n\nTo create a Generic Service Desk integration, for example, administrators must provide the required information on the General Settings page, the Connectivity and Authentication information, Ticket Creation information, Status Mapping information, and Requester Source information on the Configure page.\nRefer to [Integrating SailPoint with Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html) for more information about the process of setting up a Generic Service Desk in Identity Security Cloud.\n\nAdministrators can create various service desk integrations, all with their own nuances.\nThe following service desk integrations are available:\n\n- [Atlassian Cloud Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_cloud/help/integrating_jira_cloud_sd/introduction.html)\n\n- [Atlassian Server Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_server/help/integrating_jira_server_sd/introduction.html)\n\n- [BMC Helix ITSM Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_ITSM_sd/help/integrating_bmc_helix_itsm_sd/intro.html)\n\n- [BMC Helix Remedyforce Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_remedyforce_sd/help/integrating_bmc_helix_remedyforce_sd/intro.html)\n\n- [Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html)\n\n- [ServiceNow Service Desk](https://documentation.sailpoint.com/connectors/servicenow/sdim/help/integrating_servicenow_sdim/intro.html)\n\n- [Zendesk Service Desk](https://documentation.sailpoint.com/connectors/zendesk/help/integrating_zendesk_sd/introduction.html)\n", "item": [ { - "id": "ceb8cab4-96fc-4ea5-8d4d-cd3c64d746cf", + "id": "5a213d8d-6320-4c05-a51f-2fe2d447b815", "name": "List existing Service Desk integrations", "request": { "name": "List existing Service Desk integrations", @@ -183485,7 +183485,7 @@ }, "response": [ { - "id": "385c8ebc-ef9d-47c4-a7b5-9d9f7a275087", + "id": "fbaed47d-3e8e-44bc-a1d3-3072429dbcef", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -183574,7 +183574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9847cda-053e-4303-96c7-7aa23ed2128c", + "id": "bd401b4e-c497-4836-81cb-32f5d7d042ba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183663,7 +183663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17a695ca-1a16-46a9-9245-ce6ec50c538e", + "id": "a029401c-578e-43cc-9dd1-736c8649ac82", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183752,7 +183752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f434cb79-72cc-4dc3-a010-da654e684be7", + "id": "f071572b-fb5c-4036-9db8-9ac2d9d8c604", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183841,7 +183841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fcab34e-2a85-47f2-9cdb-23a1f3d621fe", + "id": "6afa9273-fc78-423a-9037-1d8f0ca5b0e9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183930,7 +183930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "900b82b0-a5dc-4f77-ab16-01a4ad4b7d3b", + "id": "a4b6d554-3a5b-4a66-bb05-801d3e01eebb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184019,7 +184019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a79ff50-45e3-4bbd-90fe-a6eac300fa69", + "id": "13bb813b-8e50-422d-8344-b7b6ca4c27f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184114,7 +184114,7 @@ } }, { - "id": "10d744d0-b051-4e8e-b240-3ebf8460c024", + "id": "11cfb98a-d580-4cd1-981b-8a15681e51b8", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -184156,7 +184156,7 @@ }, "response": [ { - "id": "9a037a0a-75c3-4e88-82c5-25ef702e509e", + "id": "dc7c5368-1c6d-42c2-bec8-bb92ae1d88ab", "name": "Details of the created integration", "originalRequest": { "url": { @@ -184212,7 +184212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d1b577-85b4-4a67-8a67-d84ab615f216", + "id": "976101bb-6069-4998-8943-d91c00bc25e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184268,7 +184268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ec356b-00b9-42e7-9136-e809649809c1", + "id": "5afd4337-b00c-49d7-a967-5edba71a80c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184324,7 +184324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "375043db-5897-4874-8328-b5013ce55161", + "id": "a36423cd-e1aa-4b33-869d-60e05fa29ea3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184380,7 +184380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef788373-f75c-49e8-9b5b-475b00cddb70", + "id": "6fa92670-616b-433b-b80d-66e04aadb5af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184436,7 +184436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c244ff27-ccfa-483b-a7b8-3f3d98098214", + "id": "5c875e42-d05d-4241-ac6c-5369f2dbd303", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184492,7 +184492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a511d21-7dd1-4a2d-b181-55b3d9db5230", + "id": "b2852a8a-8dd4-437e-84b6-3fef29ce81f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184554,7 +184554,7 @@ } }, { - "id": "8f8807c6-4073-47fc-b285-012afe8f9659", + "id": "0c8bbdee-4614-41bf-bb29-e8f726fcc6ee", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -184595,7 +184595,7 @@ }, "response": [ { - "id": "84f6718d-582d-4e99-b1d4-25067dcb7f8e", + "id": "9d1f01b3-993c-40ee-8314-3759d1ab4eff", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -184639,7 +184639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02536c6f-38dd-45ed-9662-c20ea8d3aa48", + "id": "0a09bc77-1d1a-4130-9dba-c3dbd287f35d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184683,7 +184683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebfb17de-d8fd-4094-a9b2-caabdb83cedd", + "id": "a80b0632-41e8-41e6-9cfd-01089ba49ea1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184727,7 +184727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be58f8a-5043-44e6-a837-7f843f4e184c", + "id": "f923330d-ba6b-49ac-9f88-e49324038bae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184771,7 +184771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4d76726-ee7b-4acb-a73a-f5c157fc3bd2", + "id": "a49c94c7-5c8f-4f8e-a186-5234be438fbe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -184815,7 +184815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f64aeac8-45a9-42a4-beae-36a21a8dcbb5", + "id": "e9639db2-60a9-4856-9995-07fbcf993c1d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184859,7 +184859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c57938a8-7a46-4d5c-a04a-ba9916c4fed9", + "id": "4847daf1-76fe-45cf-9166-9a157f1af4bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184909,7 +184909,7 @@ } }, { - "id": "790be303-dabb-4ed8-bef2-854962ca3835", + "id": "a8fc7f52-7fa2-4bbe-9c85-979b96e60a53", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -184963,7 +184963,7 @@ }, "response": [ { - "id": "688586cc-8422-4793-9a55-4a320abdb996", + "id": "4aed98a2-fe91-4a82-bdfa-5e5c51eac13a", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -185020,7 +185020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a67739ce-1406-433f-b9cc-d9a254acf157", + "id": "336457fc-494a-4f61-8a0b-6fa2276e980f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185077,7 +185077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2fae07e-f0cf-47aa-9887-e1f70db8846d", + "id": "f52d11c6-7f70-43bc-9ecd-b5b710995b30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185134,7 +185134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60abdca0-d5d4-4d07-8d93-777d147d2d61", + "id": "fd9130ca-d15a-48d7-9d87-da518855bc40", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185191,7 +185191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6f5c60a-3124-412a-b17b-f6ba27c01c9b", + "id": "f9eeb4df-d73e-4c17-a2b9-ef28ff94c962", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185248,7 +185248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0a71757-75c1-42e1-934f-793125ca86cb", + "id": "4337e760-5a13-4c7a-9ace-b199492f9553", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185305,7 +185305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59602fdb-04ff-4718-97ba-d5b50b537fef", + "id": "0a7d03d6-ebd7-4869-b5f7-eb7d802783a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185368,7 +185368,7 @@ } }, { - "id": "26c617c3-1b01-4a18-b1f7-485428dc05fa", + "id": "23efbbc5-e850-4546-8d78-f3da0ce2c1c4", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -185409,7 +185409,7 @@ }, "response": [ { - "id": "a4fece4d-041f-47e8-a728-5c064f3d4e59", + "id": "42125742-1666-400e-a19d-1820d9faceeb", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -185443,7 +185443,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6ad26ee-4327-4be5-aaf2-56c6ee5ff89e", + "id": "6c608142-0c25-4eb7-8286-216869c328b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185487,7 +185487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97777460-a7b7-42c4-abad-cd97081d8e02", + "id": "d59b1f34-2739-46b3-bc40-9687e4f37494", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185531,7 +185531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3b4cada-8d99-4a92-8716-7e2d24890069", + "id": "c1395876-4a61-4be1-a35a-ae7ee0222d65", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185575,7 +185575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d5b924d-d103-4985-80df-638aef7bfd94", + "id": "2adecb8e-0751-42d7-9040-2f1bfc227c3b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -185619,7 +185619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72f626aa-41cd-4ab6-be10-57ebc9f96706", + "id": "8d29628a-5ee2-459d-a51b-4a43cc258e18", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185663,7 +185663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3d23937-deb3-4e19-9788-e9806e733739", + "id": "1a01bce4-13f6-4daa-b5dd-88d36031b0c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185713,7 +185713,7 @@ } }, { - "id": "adb3d260-ed47-4b4e-9f82-b0dee30b4680", + "id": "daa62289-4da3-4e09-bcd5-5245044226c1", "name": "Patch a Service Desk Integration", "request": { "name": "Patch a Service Desk Integration", @@ -185767,7 +185767,7 @@ }, "response": [ { - "id": "27678468-9cc3-47a2-b6d6-c77750230d94", + "id": "3d36f35d-46a6-43f0-9725-03a6e3f9eea3", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -185824,7 +185824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5999c61-cb71-416b-aae0-f92df7a8dfc3", + "id": "9bd28520-8903-4f2e-8494-87ade24636ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185881,7 +185881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca1656ed-bd5b-48c4-8706-cc27e190a7ef", + "id": "47536e09-4808-402b-8e52-e5ae02287d78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185938,7 +185938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "998c4686-2729-4076-91ab-c24b43dfd3bb", + "id": "82d84d3d-b264-4056-969a-83e6915c4e10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185995,7 +185995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2496028-08a2-4e08-b973-513d20b0a01e", + "id": "948fdf0d-32f7-4492-8a22-32f65ae6fc54", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186052,7 +186052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32f8bbb6-8fab-4cad-b85e-ab1b7f8ee1b4", + "id": "224ca141-0a0f-422e-b1db-d0cab495c545", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186109,7 +186109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "215bb897-cbdf-4c20-b08f-e9832ee75412", + "id": "da76d704-f1e5-45f8-b165-e638f4309260", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186172,7 +186172,7 @@ } }, { - "id": "9751696a-e124-4734-ae43-3a8f03194c06", + "id": "6b3e89f0-a187-4387-b582-34a54bc0e8a1", "name": "List Service Desk integration types", "request": { "name": "List Service Desk integration types", @@ -186202,7 +186202,7 @@ }, "response": [ { - "id": "9d33bbb8-0541-4f17-833f-cef793386631", + "id": "11f265e6-18d9-4019-bdfd-003fcd921b6d", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -186246,7 +186246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f17a2ae8-e7ad-49ad-90f5-033b0d696b57", + "id": "1860ebb7-2f04-4978-bfb8-d17162804900", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186290,7 +186290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5442e70d-c865-4bfd-ba7d-ce83a16f0792", + "id": "525e9acc-be9c-4f63-9726-e24e5d7fbb59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186334,7 +186334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "501957aa-9ba2-4b99-ae06-64579ca343d2", + "id": "ab733769-805b-4c35-9cc2-0a51c5306e1f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186378,7 +186378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f40b3bc-fc9e-4db9-9e31-43382ec8ecdd", + "id": "536a8062-b28d-44e8-ade6-14391ce78b31", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186422,7 +186422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8edf9e00-a09e-45e0-87fe-83d1addb7e8e", + "id": "514d6638-bab5-4c3a-909e-cf9f45b9ded7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186466,7 +186466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a89102e2-aead-4b74-a4fe-58a0dec72798", + "id": "aa78246c-a959-4056-9834-95c2e95a8752", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186516,7 +186516,7 @@ } }, { - "id": "5f480aab-e9bf-466e-8dbe-72b670cd4ca9", + "id": "1b7bf2e5-82d8-4b03-ab22-74ef535d270a", "name": "Service Desk integration template by scriptName", "request": { "name": "Service Desk integration template by scriptName", @@ -186558,7 +186558,7 @@ }, "response": [ { - "id": "a424ebbf-2859-4bc9-8c6f-bbc92fb2c816", + "id": "64d07d1f-f9d0-44f2-95ab-91a49c71a377", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -186598,12 +186598,12 @@ "value": "application/json" } ], - "body": "{\n \"attributes\": {\n \"amet_2_\": \"velit occaecat\",\n \"suntb5\": \"nulla pariatur\"\n },\n \"name\": \"aName\",\n \"provisioningConfig\": {\n \"universalManager\": true,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 1\"\n },\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 2\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n Before Provisioning Rule which changes disables and enables to a modify.\\\\r\\\\n \\n\"\n },\n \"noProvisioningRequests\": true,\n \"provisioningRequestExpiration\": 7\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\"\n}", + "body": "{\n \"attributes\": {\n \"fugiat_99\": -9987631.259237781\n },\n \"name\": \"aName\",\n \"provisioningConfig\": {\n \"universalManager\": true,\n \"managedResourceRefs\": [\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 1\"\n },\n {\n \"type\": \"SOURCE\",\n \"name\": \"My Source 2\"\n }\n ],\n \"planInitializerScript\": {\n \"source\": \"\\\\r\\\\n\\\\r\\\\n\\\\r\\\\n Before Provisioning Rule which changes disables and enables to a modify.\\\\r\\\\n \\n\"\n },\n \"noProvisioningRequests\": true,\n \"provisioningRequestExpiration\": 7\n },\n \"type\": \"Web Service SDIM\",\n \"id\": \"id12345\",\n \"created\": \"2023-01-03T21:16:22.432Z\",\n \"modified\": \"2023-01-03T21:16:22.432Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89269177-a4cf-4d9e-baf9-81abf30e3dd2", + "id": "d75a2aef-7f69-4b02-8de8-5910af775dca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186648,7 +186648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4a777ca-9d31-4f87-93f6-1e5ab02d3e2b", + "id": "71c22038-87ec-4824-8420-47404010d491", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186693,7 +186693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea99b5bc-0914-4c67-a689-337bbc0d68c3", + "id": "dcc8bdfb-206c-46d3-8cf0-674b3f2dc4d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186738,7 +186738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e7f9bd-33d0-430e-95f2-4237faede56c", + "id": "2c59a573-9d39-4cb2-afcd-8a7782c8a848", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -186783,7 +186783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d2d18de-8093-4440-abf2-5d564250d362", + "id": "4b954eca-b97e-4a46-a141-977134330a8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186828,7 +186828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b300685-c8d0-4146-8d2f-f29d4e2873c9", + "id": "ef1f7231-9489-40f9-bdeb-ed41e94352f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186879,7 +186879,7 @@ } }, { - "id": "bbd88062-14ef-40fe-b3e5-bd15f05d5ddd", + "id": "705275b7-367c-43cc-bf56-d773caeb6889", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -186909,7 +186909,7 @@ }, "response": [ { - "id": "4e0e5b16-6d11-4b66-b520-7fa99e0c6a42", + "id": "fedd1fcf-5f73-4495-8098-4f988b023172", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -186948,12 +186948,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36681654-5042-42e4-991b-b38b884918ce", + "id": "febff4c8-cd14-4d1f-af05-94fef9c8dccc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186997,7 +186997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba3a5846-b9b1-4f20-b752-f57c1fbfd568", + "id": "794f353f-1c7a-48fc-8488-468280275033", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187041,7 +187041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3f6a094-7a65-4d02-a072-78eb6019ce59", + "id": "853c17bf-8cb6-4366-b912-bc1021621f55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187085,7 +187085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c1e89fc-595c-4db6-b12f-08cfd6543ffa", + "id": "ef71eb0e-d4d5-4530-82fb-23a087a0027e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187129,7 +187129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "205c588f-95c8-460a-8d6a-8fab5bf82656", + "id": "bde11fe3-e584-4079-9c2f-130dff321a05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187173,7 +187173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29d63508-714b-4272-9926-641d6472836a", + "id": "bd8a117f-7b98-413e-9be3-3fee2efc3779", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187223,7 +187223,7 @@ } }, { - "id": "7bc9ae02-f1a5-448a-82a6-941b69fffdd9", + "id": "031dbed7-05b8-4162-9ac2-12eb3107ba29", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -187255,7 +187255,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187266,7 +187266,7 @@ }, "response": [ { - "id": "6504b92d-3ff1-47f9-b907-db5289cb5fa0", + "id": "04296fd4-efac-444a-9c09-c6de36113ec5", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -187301,7 +187301,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187318,12 +187318,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "29f9caac-1cfc-493f-83d7-c977338a2c78", + "id": "67a2b399-65bc-4a7b-91aa-06f72e6376f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187358,7 +187358,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187380,7 +187380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e84c49ef-330b-4483-acb0-4df57144e2d0", + "id": "d18970d4-57be-40b8-b0b8-d78de103fe3b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187415,7 +187415,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187437,7 +187437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaded78f-56ba-44f5-9777-74edb56f49c2", + "id": "096c3bff-6752-44d4-ab1b-c4e4b5c64906", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187472,7 +187472,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187494,7 +187494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d55e0d98-18f1-45de-b81f-bf3bffeee40b", + "id": "15a574cc-8485-487a-9d38-24ba0997c151", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187529,7 +187529,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187551,7 +187551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d60cc9a-8cdd-4e9c-8859-b6f542822ab4", + "id": "85b8ccec-a6a1-4f9b-9f3c-14bdb9adf3a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187586,7 +187586,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187608,7 +187608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6874eb5e-8271-4b6a-a746-672a37c7b89b", + "id": "4562f43f-e98a-4ddf-be40-408260018e60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187643,7 +187643,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"enim inc\",\n \"provisioningMaxStatusCheckDays\": \"esse Duis\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"aute Lorem culpa eu id\",\n \"provisioningMaxStatusCheckDays\": \"nulla dolor\"\n}", "options": { "raw": { "headerFamily": "json", @@ -187677,7 +187677,7 @@ "description": "Use this API to administer IdentityNow's Service Integration Module, or SIM integration with ServiceNow, so that it converts IdentityNow provisioning actions into tickets in ServiceNow.\n\nServiceNow is a software platform that supports IT service management and automates common business processes for requesting and fulfilling service requests across a business enterprise.\n\nYou must have an IdentityNow ServiceNow ServiceDesk license to use this integration. Contact your Customer Success Manager for more information.\n\nService Desk integration for IdentityNow and in deprecation - not available for new implementation, as of July 21st, 2021. As per SailPoint’s [support policy](https://community.sailpoint.com/t5/Connector-Directory/SailPoint-Support-Policy-for-Connectivity/ta-p/79422), all existing SailPoint IdentityNow customers using this legacy integration will be supported until July 2022.\n", "item": [ { - "id": "67b0a606-b8e3-4994-850a-2065823dfc3d", + "id": "af0bbb68-6f8f-42f6-a371-0965f83e7984", "name": "Update an existing SIM integration", "request": { "name": "Update an existing SIM integration", @@ -187731,7 +187731,7 @@ }, "response": [ { - "id": "e0769209-85b7-4c22-9443-d1b70368a051", + "id": "7407bec4-42a5-4b8c-b0a3-318c443106a6", "name": "details of the updated integration", "originalRequest": { "url": { @@ -187788,7 +187788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e705fc4-4462-4a46-bf4a-1b4729d36eb6", + "id": "0c7d6ba0-5363-434c-bdd2-b698c6f94bb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187845,7 +187845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "624a9a01-0716-48ff-b533-05bb6c5a0b4e", + "id": "b109132a-4f2c-4ca1-accf-96e591d7b504", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187902,7 +187902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39280df-b271-4510-a534-c6477218be2a", + "id": "13ba0ae1-c044-4d05-ae7a-21edec004cb6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187959,7 +187959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a56de284-a496-4bec-ae1a-70b57ae8388b", + "id": "e62843e6-7b29-4aec-8b5b-12732c3c31a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188016,7 +188016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8bf707b-1165-4737-95d3-e7dafe67fe65", + "id": "e68f3c00-4d21-4455-8fd1-116d50f31453", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188073,7 +188073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4206057-c83e-42a1-8e4b-edfcf45ee630", + "id": "da821cb1-350f-41df-a6bd-d928d115ea3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188136,7 +188136,7 @@ } }, { - "id": "314a1c51-21d9-4aa9-9baf-a3bce8ab2be8", + "id": "4e715f02-7329-4174-a722-a07549ae42ec", "name": "Get a SIM integration details.", "request": { "name": "Get a SIM integration details.", @@ -188177,7 +188177,7 @@ }, "response": [ { - "id": "3f1fe5be-a17c-4474-8304-ae577f73439b", + "id": "5d103bd8-a071-4a97-8ef5-25a28bc61575", "name": "The DTO containing the details of the SIM integration", "originalRequest": { "url": { @@ -188221,7 +188221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "923c7dec-a06e-486d-bac5-b706e2cf35b6", + "id": "ee2f6d7e-0436-49a6-a316-462fffac03ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188265,7 +188265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6e768a7-dbad-496e-ae83-6ef6cc8f5989", + "id": "8f8a5add-41a8-4809-9c2f-17e8c560a2b2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188309,7 +188309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fd02851-79f2-411d-8d52-157194c45e67", + "id": "51215135-e898-4da7-a3ae-08fb4aeb8681", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188353,7 +188353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c50eb86-79f3-477d-9865-28e7a22fe3fe", + "id": "d3687262-89ce-4bf4-9322-76cd0b1423ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188397,7 +188397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae4fd913-ca52-4a70-b429-7ff34e9cb5b9", + "id": "ee837212-3348-48d0-a4a3-783b9667040c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188441,7 +188441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eda0da0-d858-4cdf-95f5-fead6f22ad7b", + "id": "b2eaff81-f775-45b8-bdb9-5f94b9f7bfda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188491,7 +188491,7 @@ } }, { - "id": "1a54a1cc-8fe6-4f04-8aed-1ca665606122", + "id": "528f0e9e-872b-4efd-91cf-6bfb6aef4df7", "name": "Delete a SIM integration", "request": { "name": "Delete a SIM integration", @@ -188532,7 +188532,7 @@ }, "response": [ { - "id": "647e1a5a-1fdf-4b98-9de3-f79372d00734", + "id": "b2c69134-6099-4a62-8ff7-b997867d4525", "name": "No content response", "originalRequest": { "url": { @@ -188566,7 +188566,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c21aafa3-08b1-4a96-a998-93d3b759ddc4", + "id": "4ee62235-7c6e-4f32-be9e-a770f5962a67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188610,7 +188610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55c30bc6-e142-441c-8559-145b4f9cebcb", + "id": "5c744050-b8a0-4923-85ca-a5116e0d60e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188654,7 +188654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b966b7d4-7b34-42b2-bb2c-bab10b5ca804", + "id": "949de39f-e30c-4d3f-ac03-72c7d5cbbfd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188698,7 +188698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "315b621c-1cc6-4677-9086-c8b623f763f4", + "id": "2e33090b-f93b-474b-812d-44415d757d90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188742,7 +188742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df2f7127-f84b-4ea0-acdb-adcebcc47d3a", + "id": "bf8b431e-5ede-439f-9c92-dce4bb0a4f8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188786,7 +188786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d32a8ee-3cdc-40e3-ba04-e22c1b8999ae", + "id": "4c23ef9e-0d0e-4dea-8b50-4df9035d9221", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188836,7 +188836,7 @@ } }, { - "id": "a3752a4e-0eba-4ef9-b5e8-a1c3b2c6cd37", + "id": "a1bb2546-fc5d-4f12-bfbd-13c5283462d8", "name": "Patch a SIM attribute.", "request": { "name": "Patch a SIM attribute.", @@ -188890,7 +188890,7 @@ }, "response": [ { - "id": "59eb08ef-d9b4-4073-af56-87d51f8ccbcd", + "id": "5a03f638-53d7-4d1e-a228-be86f71a75a9", "name": "The updated DTO containing the details of the SIM integration.", "originalRequest": { "url": { @@ -188947,7 +188947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06b01801-4a09-4bdd-a1c3-c128cf040d1d", + "id": "1624058f-01e4-406b-9943-bfd600f8e9f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189004,7 +189004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7f44bb3-e6e0-4454-8e2f-4b713cb30abb", + "id": "bb0b2330-b9aa-4e9f-b8d4-00c85b04e528", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189061,7 +189061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbddf975-6f82-42dc-9fea-5533dff6274f", + "id": "d0db0bdb-a934-40b8-910c-a165572f79ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189118,7 +189118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ffaa63-8b8a-475c-bd0d-50c6df976c65", + "id": "a324e29e-5f2b-4a06-a48a-c951a90a7e27", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -189175,7 +189175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "837cf1b4-e0f9-48f1-a28a-1eb3db0f8606", + "id": "82987588-b6ab-46d2-81bd-fecebe667311", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189232,7 +189232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c0c638b-22af-4194-90db-af0aa0b67b9e", + "id": "438efab9-196d-4ccf-b3ef-d0494fe37359", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189295,7 +189295,7 @@ } }, { - "id": "c2ab4344-6eb9-4c7d-89a0-95fd375e71c9", + "id": "6f420c6f-f3bb-49ae-b65e-582fc4bc21f1", "name": "Patch a SIM beforeProvisioningRule attribute.", "request": { "name": "Patch a SIM beforeProvisioningRule attribute.", @@ -189350,7 +189350,7 @@ }, "response": [ { - "id": "5e3895b9-291d-4c10-8b7b-03b315d67252", + "id": "52acfdcc-6ce3-45c7-8f72-c6bfaadd141f", "name": "The updated DTO containing the details of the SIM integration.", "originalRequest": { "url": { @@ -189408,7 +189408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54e0b8f4-d7b5-4412-b3ce-5b8bfb0933c9", + "id": "6092b7cd-44f1-42c2-a773-1ddd3c036841", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189466,7 +189466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "660279ad-f349-491f-9063-1d7a8a2536bf", + "id": "9e662196-1c7d-4179-ac9f-9f69dc7bd6bb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189524,7 +189524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "451d3c5f-31d9-4929-9611-b19edd46b945", + "id": "ac18f0b2-f6ef-4778-a4cf-e5f3982d3be5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189582,7 +189582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1bad57c-94eb-4f33-8a88-0394baa2e876", + "id": "3aca5a1d-edf2-4d49-93ed-6f945c509716", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -189640,7 +189640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a69ab538-1add-4d4f-b4db-483687ccb1cf", + "id": "756a49ab-a6e6-4835-adb3-432df630b600", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189698,7 +189698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a97f71da-cb98-48f1-99a6-9f13cb970c17", + "id": "758098b6-0257-4503-8856-77bc6a04c466", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189762,7 +189762,7 @@ } }, { - "id": "60c5d3a9-1e8e-4ed5-bd42-d8b6367b7e03", + "id": "985b6489-fe27-47ae-843d-c909fea4e5af", "name": "List the existing SIM integrations.", "request": { "name": "List the existing SIM integrations.", @@ -189791,7 +189791,7 @@ }, "response": [ { - "id": "4f80dbc0-4c92-424a-bc4f-c9224cb4c46d", + "id": "755cc34d-6a87-48cb-8058-537d4613144a", "name": "The DTO containing the details of the SIM integration", "originalRequest": { "url": { @@ -189834,7 +189834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56bd25b3-4efc-44c7-8cdb-3b2d8c580468", + "id": "b44426b7-5bfc-4cf6-913c-c2faced82bb1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189877,7 +189877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ade6e04-bb2e-4510-98e5-a5fde5a5008e", + "id": "0668f496-b83f-4e4d-b4ba-b6c2762e4abc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189920,7 +189920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45725faa-f3b5-4ee1-a35a-ca7af72b46fc", + "id": "562ad52c-4df8-4a8d-8053-11d73e0dbfc6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189963,7 +189963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d9f61df-ddb0-4f98-9bf0-c7fb43d6761d", + "id": "b0337e38-d479-4217-b941-e4a2b5079db9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190006,7 +190006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be0bc02a-20c1-40c9-8d5a-f21e57738467", + "id": "f03ea13d-9b66-4d91-abe9-e9111c81e124", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190049,7 +190049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d2394e2-c781-4629-aba1-f66077ae6eb9", + "id": "3864b5b7-c1f3-4d72-9093-90184d832a7d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190098,7 +190098,7 @@ } }, { - "id": "b37c1e86-f913-46dd-b7c2-3294e9d386ff", + "id": "5e99c191-34b9-4f05-9859-fc17a3b9d13d", "name": "Create new SIM integration", "request": { "name": "Create new SIM integration", @@ -190140,7 +190140,7 @@ }, "response": [ { - "id": "f51781c4-5e9f-4534-bffa-e8a458325b5d", + "id": "396d2763-0386-4f27-b084-adab1e06c8e6", "name": "details of the created integration", "originalRequest": { "url": { @@ -190196,7 +190196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a913214d-dbd7-4ee7-8cf9-66d42ca8e1b3", + "id": "2efe9727-443a-47c5-b836-c0def548a29b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190252,7 +190252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a775b422-9a7c-4bfb-a236-918f92f1c896", + "id": "e0fd03ae-d396-44c6-9626-a10af4f485e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190308,7 +190308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f213683-3cbe-45db-a3c6-54b93c2a90bb", + "id": "7570d4d7-78d4-4eba-ac2b-71b496ab436e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190364,7 +190364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed23b697-21f9-4209-8c32-65f6b5adfd29", + "id": "bda2a6d8-100f-47a5-9d9a-484e8fac81ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -190420,7 +190420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "599e38d8-5123-4153-a3eb-8deaf734b0e1", + "id": "0ccf09ab-4967-4a1e-a673-19c4b3f7cebb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190476,7 +190476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc0c74f-faa1-4c49-8300-5d71192e38a0", + "id": "4a9f79a8-2dca-45e2-9aea-2b7711e829bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190544,7 +190544,7 @@ "description": "Use this API to implement and manage \"separation of duties\" (SOD) policies. \nWith SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nTo create SOD policies in Identity Security Cloud, administrators use 'Search' and then access 'Policies'.\nTo create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.\nThey can search for the entitlements they want to add to these access lists.\n\n>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list.\n\nOnce a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies. \n\nTo create a subscription to a SOD policy in Identity Security Cloud, administrators use 'Search' and then access 'Layers'.\nThey can create a subscription to the policy and schedule it to run at a regular interval. \n\nRefer to [Managing Policies](https://documentation.sailpoint.com/saas/help/sod/manage-policies.html) for more information about SOD policies. \n\nRefer to [Subscribe to a SOD Policy](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html#subscribe-to-an-sod-policy) for more information about SOD policy subscriptions.\n", "item": [ { - "id": "3ab38c1c-1696-424f-aba6-cfbf9e362e33", + "id": "5e83afb4-2aef-4527-bce5-69e283e3f22e", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -190586,7 +190586,7 @@ }, "response": [ { - "id": "201a878e-b1a1-41f5-845d-5c0761611156", + "id": "777a0979-b588-4d80-992b-6c1ebde81c4c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -190642,7 +190642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8117e022-c93d-4743-add9-1c64fa7a508c", + "id": "bcdf5757-92f7-4188-950a-e696d76e6654", "name": "General Policy", "originalRequest": { "url": { @@ -190698,7 +190698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "304e71cb-4c49-49cb-bbff-c6f083397b9b", + "id": "d2b364a0-7685-4e25-b2c9-87ac28e35c02", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -190754,7 +190754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8664fa05-2b38-4b43-b658-49497f190980", + "id": "1e1af515-a264-48ad-b612-2846dfffc901", "name": "General Policy", "originalRequest": { "url": { @@ -190810,7 +190810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0240bf0c-5989-4015-a9e6-eccddb9e7080", + "id": "d0ecd244-369f-4ee4-b07c-a1caaee1e1ab", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -190866,7 +190866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0e59749-395a-410f-8f8d-caa9665f2e43", + "id": "2321f201-e449-4e7c-bb42-cd9d46b5e8be", "name": "General Policy", "originalRequest": { "url": { @@ -190922,7 +190922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5be2f7e6-17fb-4659-9799-3672ae937cc6", + "id": "ea386b55-20c6-4866-82fe-848afaa5f373", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -190978,7 +190978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25809e2d-4fd0-40df-bfe0-06d98b6e249d", + "id": "c5085546-91bc-49b9-83eb-d3314bc052f0", "name": "General Policy", "originalRequest": { "url": { @@ -191034,7 +191034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "706434a4-b5b3-4cd8-a1fe-582de46ef65d", + "id": "9916116f-7f99-4c3d-b7e5-90a2242a0f0d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -191090,7 +191090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0146ea5a-ca9c-473b-a44c-8ea18cb5cc99", + "id": "701b808e-ac48-438f-974f-579079acecc2", "name": "General Policy", "originalRequest": { "url": { @@ -191146,7 +191146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8b64fcc-9bd2-4b9c-aafc-6b2127bffaa6", + "id": "656fb6ad-0ff9-4b2f-9030-dcbdd2b93261", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -191202,7 +191202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a514dfd2-8e75-4d09-b6e3-fa2cdf0bc503", + "id": "7f9df9e4-f605-4388-b592-1081aa51e475", "name": "General Policy", "originalRequest": { "url": { @@ -191264,7 +191264,7 @@ } }, { - "id": "7ded7508-d77f-4e54-86ca-eb10f2699084", + "id": "3895b341-ed10-4867-9da4-f692baed5b44", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -191339,7 +191339,7 @@ }, "response": [ { - "id": "49fc2564-21f9-46f3-8b19-f34d27234c15", + "id": "4578cba5-b818-48c7-9c7c-99cdca07c8a9", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -191428,7 +191428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d422f3b4-f805-4bc4-b79c-d9058c962305", + "id": "699d46d6-3428-4c87-85c9-cb4ffb264a9b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191517,7 +191517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cb832e0-9154-49e8-817a-a4c30dd52524", + "id": "8bc0b591-c89c-4ae5-9735-cfc90ea5557d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191606,7 +191606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae07a55b-c49b-402f-a65c-9abbc31d8861", + "id": "48dd1933-07dc-4163-b060-d786d97ca650", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191695,7 +191695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da4811e-ec3b-4d74-a36d-1ebd90700eba", + "id": "a4eb52ad-9510-4add-beb3-4ca930e870ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191784,7 +191784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a90a007c-0e96-4630-9db4-6bfdbd4bdd4f", + "id": "6b4b0575-fa9c-4dfe-a1b6-7faf198f5efa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191879,7 +191879,7 @@ } }, { - "id": "3b3a1131-c474-4f49-9d11-59c4460bb994", + "id": "ce967c35-d3b5-430e-9f54-297b4efcaa6d", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -191920,7 +191920,7 @@ }, "response": [ { - "id": "f2957a9c-d2d5-4fc4-b38a-dddea846492a", + "id": "c4bea907-da96-44e5-a4ed-aba5f1e502d1", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -191964,7 +191964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61f5887e-5e15-443e-b97a-68bac857378e", + "id": "6d55fc9d-5ca7-4466-a04c-2e5a089f3087", "name": "General Policy", "originalRequest": { "url": { @@ -192008,7 +192008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4363880-c7ac-4125-aaab-fa3254290ea1", + "id": "d6ac3964-f937-4f4b-b230-a7bac5c633d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192052,7 +192052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18ea7675-09c0-4c6c-976f-a18af656c2e1", + "id": "d0e19f1b-442a-40cc-9663-06cd0031b11e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192096,7 +192096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d2b471c-8532-478f-ae55-d1336ba963eb", + "id": "0a55fb76-e161-4915-86b8-525ac90f88b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192140,7 +192140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5573082-04ba-4126-98df-9219ede03a16", + "id": "93ed1e01-cdcb-410e-962b-2d2837cd4ebc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192184,7 +192184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b2ed0eb-8b6f-4226-a8a9-b26ba6ec6bc6", + "id": "7094c19a-e37e-492e-8653-03d871bd1d35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192228,7 +192228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f84f3540-f81d-4911-8407-665596ad98ab", + "id": "a3456432-999a-4710-b108-66bba9ac9a1e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192278,7 +192278,7 @@ } }, { - "id": "c3534e12-8a85-47a2-95bb-9296acb5a224", + "id": "8dd431bc-d504-49cc-b100-f36e74a2edc2", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -192332,7 +192332,7 @@ }, "response": [ { - "id": "ec66a386-883e-4b4a-b88b-7cc0ee58aecd", + "id": "0f863de9-9deb-4f17-9f8c-454d651f2aff", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -192389,7 +192389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df63185-b547-4e13-95a8-2f783fdabbdf", + "id": "db5922bb-e23f-4105-8c04-272520c74bd4", "name": "General Policy", "originalRequest": { "url": { @@ -192446,7 +192446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ff558d6-ff78-495b-ace7-3310cf008bbc", + "id": "59ab9a78-c375-4b35-b2ba-50f97fcca75f", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -192503,7 +192503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcbeb7e7-cbc5-41bd-8c2a-9e737a59616d", + "id": "55070d62-8750-40b9-8bd8-1fa43df12683", "name": "General Policy", "originalRequest": { "url": { @@ -192560,7 +192560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067c36a3-a037-40eb-afb1-9eb9fbf2f1f3", + "id": "18e7f8be-0778-4a61-af49-78d0539cddcf", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -192617,7 +192617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "093b62f5-6e5e-40be-b335-755320f65005", + "id": "e9339129-3ef6-404e-8530-eaac4c7f7cbd", "name": "General Policy", "originalRequest": { "url": { @@ -192674,7 +192674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99afdf64-fef6-474f-b643-389e5557b044", + "id": "113ef496-df56-435a-8284-0834a8e9386c", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -192731,7 +192731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d3ac1d3-2ec0-480d-8e07-57cf86191199", + "id": "800c3892-f623-4a1b-9323-5b51ddeda746", "name": "General Policy", "originalRequest": { "url": { @@ -192788,7 +192788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9892e0f0-e721-48df-8742-5fe446e262b2", + "id": "c628c1db-3412-4b07-b380-23ca53511c0b", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -192845,7 +192845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9772d04c-fee0-4c62-9e8f-e8a295dbe997", + "id": "b69b9553-2a7f-4838-a370-6fdfc33f1591", "name": "General Policy", "originalRequest": { "url": { @@ -192902,7 +192902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ae0fd19-ad67-4872-91ee-926f450cb888", + "id": "f8fd5ed2-bbf3-462a-a0f9-967b486e0415", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -192959,7 +192959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4fae133-a97c-4c37-8b8b-4185db3f1872", + "id": "db9c1eae-713a-47d0-8fc8-855641043529", "name": "General Policy", "originalRequest": { "url": { @@ -193016,7 +193016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a763b8f-80c8-4d7a-916b-9a4d9e06718b", + "id": "b3096e2e-babe-4e00-adcc-0bba1ed0340a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -193073,7 +193073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d645cf6-7023-4113-84b4-ec3181be3bcb", + "id": "b2518ec1-7240-46cb-9304-f54a3f1fb590", "name": "General Policy", "originalRequest": { "url": { @@ -193136,7 +193136,7 @@ } }, { - "id": "c550bd61-f5e3-4876-a3f2-82fd3a4f4cc2", + "id": "33efaffd-245e-409f-b29e-d3b06e914133", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -193187,7 +193187,7 @@ }, "response": [ { - "id": "edc74700-9385-4dcf-9d2c-c995dea2675c", + "id": "70e412fa-f205-4431-af40-4bd24b6b05f4", "name": "No content.", "originalRequest": { "url": { @@ -193231,7 +193231,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4a37908f-1852-40a2-b342-53aaa9a40981", + "id": "83288e91-15f2-41b3-92c3-a3903f3cec22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193285,7 +193285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b876349e-00a1-4fc2-bd9d-eff3d3ca98b3", + "id": "1b6150bc-2120-44cd-a62a-25d825ad273e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193339,7 +193339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b22b58ed-8be6-4e48-8978-fbdc8a0af8b2", + "id": "9033ed5b-75f4-4160-b271-5a12a89658fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193393,7 +193393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b920098-ef4d-48f9-9c65-f029450ea402", + "id": "740a0f09-e967-4ad3-ad28-536d69d8e5cd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193447,7 +193447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c88abcc-f460-4bce-a67a-f669aafea0ad", + "id": "4647bf7e-36ab-4864-b2cf-710ecb442e34", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193501,7 +193501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "487906fe-9417-4467-acbc-1d1ba16d9628", + "id": "8d8070c7-b77d-4efb-bec2-29645865dee3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193561,7 +193561,7 @@ } }, { - "id": "bb8e2d35-0807-4850-94fc-d10061bd6fec", + "id": "633317cd-43ab-4079-a29b-0898bc2f7b2d", "name": "Patch a SOD policy", "request": { "name": "Patch a SOD policy", @@ -193615,7 +193615,7 @@ }, "response": [ { - "id": "5326d0a9-9705-43d6-b544-30c7c19fe3be", + "id": "fc8098b4-3b5d-42c3-8a8f-fc80149c6a4b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -193672,7 +193672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b563728a-0798-4893-a2be-3fa1c5c95a50", + "id": "e7532a76-e041-43ef-88ca-98dd138c6bc7", "name": "General Policy", "originalRequest": { "url": { @@ -193729,7 +193729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "994560c6-fab6-476b-9ba9-580c6151d49f", + "id": "90a14d5e-87ce-41a1-b812-bd134fc732d4", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -193786,7 +193786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bea5483a-d624-41ab-a659-95abcdd637fb", + "id": "72359cd2-42ff-47f7-b7f3-6134975c891e", "name": "General Policy", "originalRequest": { "url": { @@ -193843,7 +193843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a96a56d-24c9-43f9-ae52-951711011f32", + "id": "98bee88e-065c-41d2-9435-90208777b14b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -193900,7 +193900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f706bc6f-aebe-48de-bc12-41a2dfe06ea9", + "id": "3b5c6d03-2546-42ec-aebb-79ee71f9da0a", "name": "General Policy", "originalRequest": { "url": { @@ -193957,7 +193957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fb9bbac-74cb-4c75-978f-ec2ac0c3b83e", + "id": "d8ae1330-85d9-4b1b-958c-1fedf71b1bc4", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -194014,7 +194014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1174e85-d7e2-465e-9186-974c8ce14d04", + "id": "bc6a575f-319d-4ad3-8bc5-16b65969f487", "name": "General Policy", "originalRequest": { "url": { @@ -194071,7 +194071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46293ed-7d02-40e9-970d-d65fa99bc0f8", + "id": "382882a6-fb66-462b-871c-7ff31421f583", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -194128,7 +194128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71c5895f-d189-4f88-a62f-b2d452f74a56", + "id": "850ab2e6-8b8c-42ec-82dd-ab4d4b34b1d9", "name": "General Policy", "originalRequest": { "url": { @@ -194185,7 +194185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc5ffc8a-9f92-4bb2-a5b8-a49f1118f0ed", + "id": "2d4e3ea4-7175-49b3-9748-1f704788cf5a", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -194242,7 +194242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6878f764-0f85-41d6-8b30-0dfd0e556039", + "id": "4d61e18f-34c7-4e45-a9c8-54eec393b2c5", "name": "General Policy", "originalRequest": { "url": { @@ -194299,7 +194299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be3aee4-0a78-4ba9-9616-e1339142959e", + "id": "fa93e495-090c-46c3-8e07-6b729f0beeec", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -194356,7 +194356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "603408c4-a22d-4da9-9f00-41a9f4d11df9", + "id": "d1b9f9b0-9fc6-4e2c-94ea-304739b1259d", "name": "General Policy", "originalRequest": { "url": { @@ -194419,7 +194419,7 @@ } }, { - "id": "2dea853e-90ff-46d7-aee5-85033c8061c3", + "id": "8f773ee0-18f0-4ca3-a393-b150a4a69db5", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -194461,7 +194461,7 @@ }, "response": [ { - "id": "108bd06a-0d10-442e-ba30-57ade2ebcdf1", + "id": "f940cf05-18fc-4758-845b-b8bb12c6d8a0", "name": "SOD policy ID.", "originalRequest": { "url": { @@ -194506,7 +194506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2064602e-de58-4f22-aeee-185b6d753bef", + "id": "7e7215b8-a346-4c49-b576-d8c248c52661", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194551,7 +194551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca5a0903-01d2-4f14-bb8c-f93f50e9c01b", + "id": "687e3655-ada5-4c7d-99ae-9b51c4df1703", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194596,7 +194596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "133e97bb-53ab-41cd-9517-357991252ceb", + "id": "9d0f6581-e2ae-4c95-8e28-9eaa90064dec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194641,7 +194641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0270dd1e-aa15-4d79-a1ff-095eb6583042", + "id": "cc668208-fb52-4cbb-8e9c-b4ccf3644955", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194686,7 +194686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baced510-e02f-4d77-b4b3-7e4412a2db36", + "id": "8704209b-81a5-44bd-9c02-7bae36a79cff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194737,7 +194737,7 @@ } }, { - "id": "01dc4468-57a9-46a2-8445-9f638d3f891b", + "id": "f271134e-7cc8-4fee-929b-d806bea8d187", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -194792,7 +194792,7 @@ }, "response": [ { - "id": "de679948-eccd-4a20-912e-a26beff69a48", + "id": "68982a46-7d83-4051-a67b-f58b3d409d31", "name": "SOD policy by ID.", "originalRequest": { "url": { @@ -194850,7 +194850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bf9467e-0c7f-43b1-896a-2cfff961b0bf", + "id": "f7abca2b-5e53-4f8f-90ad-740358e9b52b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194908,7 +194908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "078057dd-8f43-4341-b7ae-e86ee6e17ac2", + "id": "0065f272-e76c-42ae-af80-73e8d40476a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194966,7 +194966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87a22323-3f03-4d7c-a895-67ca1ec6d12b", + "id": "c4307442-20f1-4b4e-8cd6-3d5c0fca2bc7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195024,7 +195024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da25eb27-481c-47cb-8004-429b494b7367", + "id": "08b01592-36ab-4c0f-bf4e-87813a9d78b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195082,7 +195082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf271c6b-7a3b-4e7a-a425-e62457d8b4f4", + "id": "56a75176-6cfc-444a-a046-359423b7250f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195146,7 +195146,7 @@ } }, { - "id": "570e7f47-d6b7-4741-a91f-97a45ea28599", + "id": "b1f180a8-b914-4e2f-b8f7-ce58fcee6119", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -195188,7 +195188,7 @@ }, "response": [ { - "id": "5fe72e26-d427-47cd-909f-7b7efc3c27ac", + "id": "23d6ae11-e40f-4f71-a710-edfe566c1435", "name": "No content.", "originalRequest": { "url": { @@ -195223,7 +195223,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f6543cfd-acf1-43b7-9f53-8053c2732783", + "id": "5a80eca3-0ce5-44f8-a103-2927f6698767", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195268,7 +195268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f58319b8-9667-4929-a9dd-e27ab55cb641", + "id": "1f8f1c86-a493-4560-abc3-c341df40a90d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195313,7 +195313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e264cd40-c167-4e0f-bf36-5ddde1f7b848", + "id": "a13d8fc6-4a0d-4e6f-bba1-5678b3ff4eaa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195358,7 +195358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab5d75a6-59ee-4d59-863c-6cc4e02a17a6", + "id": "3e08ba01-5d47-4288-ae14-8649955a949b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195403,7 +195403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db9b1559-baf6-437a-b634-71c2d7f405b9", + "id": "9f1e6857-c770-4d97-bc47-1a270d726924", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195448,7 +195448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "998b21f8-dcae-4fc6-af42-c2720159033a", + "id": "fa584333-5e48-42f6-bf57-fcb2bd04f0e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195499,7 +195499,7 @@ } }, { - "id": "0c0bd85c-80cb-42e0-a642-eaa9348ed293", + "id": "2a2fb0b8-2cb6-4b73-aa42-7137835f0640", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -195542,7 +195542,7 @@ }, "response": [ { - "id": "2254079e-2ded-450d-9ec0-9002c460a672", + "id": "98934d74-b7ef-4027-ba13-a1ccbf7766e5", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -195588,7 +195588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "566cab6e-d025-4e74-aa33-8fbcbd3e84da", + "id": "d07d2c56-ce8c-487f-b573-c8a5f0dc8421", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195634,7 +195634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b99b34d0-bb9c-49cd-818d-90f084358865", + "id": "73938896-f19b-4666-8492-bd72c72aaa1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195680,7 +195680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44954c78-6d19-42e8-bcf3-272f8a8dafcc", + "id": "816c0419-0263-4c08-8f9a-5f1202185d56", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195726,7 +195726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c1ad00-a972-4f63-8a46-c223ea417595", + "id": "b1d4f2b6-bda7-43d4-9265-e248f8717d5e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195772,7 +195772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "415b5af7-d024-49ef-af6f-59981bd1e18a", + "id": "114b40d0-0b43-4bd2-8896-2d0f3d37c1f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195818,7 +195818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbb16135-8071-45af-b4bf-ec112ee5587d", + "id": "fcce83ac-0ce6-4217-b1b3-4225a385d88e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195870,7 +195870,7 @@ } }, { - "id": "af227e03-fc83-4d10-867b-73e79a1192e3", + "id": "3fb23529-b824-4519-81db-f709275ffd08", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -195912,7 +195912,7 @@ }, "response": [ { - "id": "d131c94c-c455-4cc3-85a6-fe1f5d021401", + "id": "2454576f-4180-43ce-83e7-303963f047c5", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -195957,7 +195957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc4668fb-3085-420c-8993-943d1e875ff0", + "id": "45c96715-c3f5-48a6-9bf5-865933ff75a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196002,7 +196002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af060240-85e4-4235-b29b-bc5dc3752d4d", + "id": "ebeb8479-6379-45be-ac22-26e4264f578e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196047,7 +196047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "795d6833-a428-4aa8-92b3-99c5e3f6477a", + "id": "f9490f03-a1e5-4dc4-9fa8-d0e746afc8d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196092,7 +196092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99ee9890-d1c3-41ca-8c79-b0008894dad0", + "id": "bf406601-5e1b-40c1-827e-73e815ac8859", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196137,7 +196137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0350b84-0af2-4ca2-8d06-c4cc621106bd", + "id": "01dd5ea7-d435-4f58-aa3f-36b3dda75600", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196182,7 +196182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3b5c856-0fd7-4116-8097-a3b3320b07f2", + "id": "20c6e2e7-3c75-4889-bcaa-2cb9b1713ff3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196233,7 +196233,7 @@ } }, { - "id": "920adaf7-e181-484c-a3ca-760ce7604e62", + "id": "e544553e-14a0-44d3-bc21-3211384aa5dc", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -196275,7 +196275,7 @@ }, "response": [ { - "id": "6dfea099-5b9f-4a04-ab47-f2d26e6b29a3", + "id": "dbd34634-fa1a-48a8-884b-8c5445aeaf09", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -196320,7 +196320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63d4813e-39c5-4d51-8578-a99f79ac64a7", + "id": "7f256876-2d47-4760-a9d2-f5c35aebe8b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196365,7 +196365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acddf5db-6009-44b0-9558-7a3f39999413", + "id": "03c1167f-f354-42b7-be6e-1d3151af5873", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196410,7 +196410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a14386f0-776d-493c-8079-ff0af0ddb291", + "id": "fbe94939-1087-4762-b791-27738cea3bc2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196455,7 +196455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b004ce3-5e9f-4b4c-a458-c54cfa9a43a5", + "id": "96da12eb-1830-4d8c-a2e8-6640a7409309", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196500,7 +196500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a4cee71-d0cf-489e-9be4-adf7c0012159", + "id": "1d88b278-99d2-411e-8052-6c5c62110705", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196545,7 +196545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fbc3655-b5c3-43a2-8792-8f06d3648d89", + "id": "b4d620a5-dfbd-4d1a-8ad8-4c1ae66795cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196596,7 +196596,7 @@ } }, { - "id": "7199d9f0-7603-4d09-949c-0bcc9ab3c07b", + "id": "85d9f12d-0a70-4171-a36e-8fcd58aedfc4", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -196639,7 +196639,7 @@ }, "response": [ { - "id": "8b1ec208-e237-4eb4-8f33-7c537c059618", + "id": "514459cf-cfd9-4f37-bf1f-e7c11ab1f7c0", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -196696,7 +196696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "794042ce-3310-4fc8-abca-b66ec1644964", + "id": "d49c1c9b-4fe6-421b-95d8-d334e755f6f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196753,7 +196753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b0b8e02-21f3-4856-96d9-14d37f99aeb7", + "id": "89a79c18-c15e-420d-8d01-9c97c9047f68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196810,7 +196810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d105ee5f-6351-47d7-88dd-f97776140429", + "id": "7b02c85a-5823-4e5b-adb2-4d54213b7278", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196867,7 +196867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80546ccb-8256-4c67-9649-fbdd8940d82d", + "id": "1859fc9f-cb90-42bf-a1e4-8632172cfee6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196924,7 +196924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a50ba12-8ad8-4bf9-801c-03dbf7e4af7b", + "id": "9e4364e5-cdc7-4ff9-9d77-58a75c4f5665", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196987,7 +196987,7 @@ } }, { - "id": "5ffd7e84-536d-4bb0-93b6-3a5a77b9172f", + "id": "60742ce2-7ff2-4f7a-a5e8-45373ea2c0f7", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -197016,7 +197016,7 @@ }, "response": [ { - "id": "7cd410e8-0c81-4ef3-992c-e6485f0fb49a", + "id": "62dc2657-4451-4400-8b46-0ba660f54da6", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -197059,7 +197059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "121990b5-262e-4377-8248-fc77c35e7b4a", + "id": "291b7f36-8f90-4d53-9c28-75b8fa9d3dd4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197102,7 +197102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc9ac55-076a-4fce-9aa6-e6506b689581", + "id": "0b863140-5a8a-4e02-9a75-52ebdacdc08c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197145,7 +197145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf15fac-e7d9-4eb9-8fd5-bde800a7da6b", + "id": "a6ce14b0-250e-4c3e-95bb-b5896af18990", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197188,7 +197188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af25d953-43ed-44d4-94f1-0238fa9883f4", + "id": "0d3ae84e-5837-4ec2-9041-ebd06c315795", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197231,7 +197231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "409980cc-e009-4c5c-bd49-db465d628a89", + "id": "0e2468a0-4d80-4165-aaad-406aeed2a30d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197280,7 +197280,7 @@ } }, { - "id": "3698fad9-c640-4060-af7b-63a4697cf09c", + "id": "3a42e9ba-c43a-4610-b1b5-06cc943a4717", "name": "Download violation report", "request": { "name": "Download violation report", @@ -197322,7 +197322,7 @@ }, "response": [ { - "id": "4f0c4569-279e-45e0-81d6-173db0dd171d", + "id": "a724edea-a0e3-4677-8c23-e72ca4bce805", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -197362,12 +197362,12 @@ "value": "application/zip" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "93db697b-3386-4585-9c92-7adee48b0c4c", + "id": "e178f412-3e15-46c7-8352-67e977e11967", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197412,7 +197412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a914cdad-d5d5-4931-9612-426962d54bf4", + "id": "66d295d0-a6c6-4e43-80c9-3f2ad930c3cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197457,7 +197457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "026fc747-ed95-403e-8cf2-c8ce0338fcf6", + "id": "084cb79e-4ce8-40b3-8b83-5e6859852fd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197502,7 +197502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfddd660-fcdb-418e-82b4-e55cdc193bee", + "id": "c88ef28b-489b-4f55-a84c-b72496f1698a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -197547,7 +197547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b0753ff-659c-40f0-95a6-359e2064c331", + "id": "672983d1-134e-4f29-a6e3-8501c3073edd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197592,7 +197592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d693e6ce-a13c-44de-a0b7-b920fc70d072", + "id": "199d19bf-bac3-4dde-847f-6e6dacb6efd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197643,7 +197643,7 @@ } }, { - "id": "032c36bf-875c-49ff-ab8b-f28b92860249", + "id": "c24d89ec-7ac7-4796-b216-87c162589ebf", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -197696,7 +197696,7 @@ }, "response": [ { - "id": "fc5310da-6c37-400e-a098-d2b920a36b09", + "id": "ec1a5fff-eddd-4c55-965a-4b6b9e52c1be", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -197737,12 +197737,12 @@ "value": "application/zip" } ], - "body": "labore ad magna", + "body": "do cillum", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "c70e2d4d-3126-420b-b3a3-cc49be0aba52", + "id": "94f3a40e-9a9e-4151-9ccb-4b571a49312c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197788,7 +197788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a94237ed-c49d-4674-808e-6d2231abd417", + "id": "67a3400d-4993-4a6a-9840-07483dcdbc1b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197834,7 +197834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7ef2b7c-bb60-47c5-9803-ce5a1ab35f51", + "id": "0f122f59-323a-4197-891f-e541f89f2a72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197880,7 +197880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "833f0118-3b3d-4eb7-9031-e1ff52ac137d", + "id": "f4d2b870-26bc-45d7-ab2d-46d3acf7d995", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -197926,7 +197926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a58891c3-bef5-42e8-ae98-1334696a7036", + "id": "fd71c4d0-9027-4968-8d54-9fbba7276d63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197972,7 +197972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0faaf2c9-6427-47dd-8790-0f60ebbcd59f", + "id": "5f371d02-2833-40d4-9880-924943996d76", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198030,7 +198030,7 @@ "description": "Use this API to check for current \"separation of duties\" (SOD) policy violations as well as potential future SOD policy violations. \nWith SOD violation functionality in place, administrators can get information about current SOD policy violations and predict whether an access change will trigger new violations, which helps to prevent them from occurring at all. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nOnce a SOD policy is in place, if an identity has conflicting access items, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies.\n\nAdministrators can use the SOD violations APIs to check a set of identities for any current SOD violations, and they can use them to check whether adding an access item would potentially trigger a SOD violation. \nThis second option is a good way to prevent SOD violations from triggering at all. \n\nRefer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations.\n", "item": [ { - "id": "dc65f766-28e2-4840-95ed-3109935c75f9", + "id": "28d3b9c4-9acc-4251-8ec1-755001a58fca", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -198073,7 +198073,7 @@ }, "response": [ { - "id": "c95194f0-10f1-439a-8945-6fb5c3b18e02", + "id": "99f51df7-5a7d-4c25-8e69-75b5bc284c11", "name": "Violation Contexts", "originalRequest": { "url": { @@ -198130,7 +198130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "232a8d6b-116c-4838-8a45-96365e0b7ad7", + "id": "93d4e48f-d35c-465f-b731-ce8b5228505d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198187,7 +198187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1166905a-f3c2-426d-b07d-304ce9ec09b4", + "id": "c6b9f2e9-d19d-452a-a032-c0c534281bfe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198244,7 +198244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57707277-5cca-420a-839e-a03407617899", + "id": "58f7614b-a45e-45e1-b5b3-e2475fc49c34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198301,7 +198301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3db1f21-814f-4714-8c06-9999843d05c5", + "id": "32e7d6c6-a5b6-434b-ba67-7784a110883e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198358,7 +198358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "152bde2d-9153-412a-924a-25e3f5a79054", + "id": "ada0001f-07c0-4b63-b5c3-669e1495310e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198415,7 +198415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61a3b2d8-23d7-401c-8e28-f820b9d72524", + "id": "cf571e93-6518-42b7-9cfa-9edfaad59f82", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198484,7 +198484,7 @@ "description": "Use this API to implement source usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.\nThis allows organizations to get the information they need to start optimizing and securing source usage.\n", "item": [ { - "id": "5a3300a4-8663-4f08-9441-5f740686958e", + "id": "1a55af8b-5385-4cc7-a5eb-edd4ebc352a3", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -198526,7 +198526,7 @@ }, "response": [ { - "id": "2a951600-0e22-426a-9e50-3d9147b02725", + "id": "8cce17c8-9685-40a6-8eb0-2f9b8e4ec36a", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -198571,7 +198571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a60bf28-6cfa-480a-a300-ff4446fad9b8", + "id": "e801532f-9f68-4e4b-a3b2-e0be4f19e5c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198616,7 +198616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a18817-81fe-4dd5-9553-32cc8cba17f8", + "id": "9257abb8-7115-4e29-ae72-0d03a4dd38f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198661,7 +198661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f23ff9d6-a6ac-4583-b82e-74c9824e7879", + "id": "660a4ef5-7ed0-41ef-a1ab-83645b87ccf4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198706,7 +198706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b67a95e7-dda8-42d9-901f-e69b66a2c374", + "id": "6f0c25e3-a014-4a66-9f7c-b9c994c6303e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198751,7 +198751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f15b51e5-8e9a-4392-a502-3f9c6f58bcb2", + "id": "95223f34-df14-4343-94dd-16dbd9267bdd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198802,7 +198802,7 @@ } }, { - "id": "da9e0fbf-f9b6-4da2-af0e-1532859af188", + "id": "b37c69f4-38e3-416a-8c42-1d43230e648c", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -198881,7 +198881,7 @@ }, "response": [ { - "id": "de7b1f71-fbf3-47d6-ab5a-ab4c801e3dd7", + "id": "9ad35f5e-1dc7-48e1-ad23-91cdff3602fd", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -198963,7 +198963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c625bc85-46bc-41c7-abc9-29d69899d3dd", + "id": "dbc6344c-4067-4a80-bc98-71eec0274308", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199045,7 +199045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14dee915-2d5a-4ef6-9da3-352646a4f47f", + "id": "f5f565db-49a7-4a31-b1a6-a67941064ab7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199127,7 +199127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "223b21ba-16d1-4412-9249-8307be0d4462", + "id": "f9302f99-0e10-479d-836b-96dfe3121835", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199209,7 +199209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18ce9390-39dc-4b59-8575-56c2faefe1d8", + "id": "10c7723b-429c-4421-87f2-f907d91498eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199291,7 +199291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e106ef9e-4f5b-4a92-9773-3edb1f7f4faf", + "id": "7ab3c748-65bd-479d-bce4-0d7b8bfc2ee8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199385,7 +199385,7 @@ "description": "Use this API to implement and customize source functionality.\nWith source functionality in place, organizations can use Identity Security Cloud to connect their various sources and user data sets and manage access across all those different sources in a secure, scalable way.\n\n[Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) refer to the Identity Security Cloud representations for external applications, databases, and directory management systems that maintain their own sets of users, like Dropbox, GitHub, and Workday, for example.\nOrganizations may use hundreds, if not thousands, of different source systems, and any one employee within an organization likely has a different user record on each source, often with different permissions on many of those records.\nConnecting these sources to Identity Security Cloud makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, Identity Security Cloud can grant the new hire access to all the sources they need.\nIf an employee moves to a new department and needs access to new sources but no longer needs access to others, Identity Security Cloud can grant the necessary access and revoke the unnecessary access for all the employee's various sources.\nIf an employee leaves the company, Identity Security Cloud can revoke access to all the employee's various source accounts immediately.\nThese are just a few examples of the many ways that source functionality makes identity governance easier, more efficient, and more secure.\n\nIn Identity Security Cloud, administrators can create configure, manage, and edit sources, and they can designate other users as source admins to be able to do so.\nThey can also designate users as source sub-admins, who can perform the same source actions but only on sources associated with their governance groups.\nAdmins go to Connections > Sources to see a list of the existing source representations in their organizations.\nThey can create new sources or select existing ones.\n\nTo create a new source, the following must be specified: Source Name, Description, Source Owner, and Connection Type.\nRefer to [Configuring a Source](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html#configuring-a-source) for more information about the source configuration process.\n\nIdentity Security Cloud connects with its sources either by a direct communication with the source server (connection information specific to the source must be provided) or a flat file feed, a CSV file containing all the relevant information about the accounts to be loaded in.\nDifferent sources use different connectors to share data with Identity Security Cloud, and each connector's setup process is specific to that connector.\nSailPoint has built a number of connectors to come out of the box and connect to the most common sources, and SailPoint actively maintains these connectors.\nRefer to [Identity Security Cloud Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about these SailPoint supported connectors.\nRefer to the following links for more information about two useful connectors:\n\n- [JDBC Connector](https://documentation.sailpoint.com/connectors/jdbc/help/integrating_jdbc/introduction.html): This customizable connector an directly connect to databases that support JDBC (Java Database Connectivity).\n\n- [Web Services Connector](https://documentation.sailpoint.com/connectors/webservices/help/integrating_webservices/introduction.html): This connector can directly connect to databases that support Web Services.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/docs/connectivity/saas-connectivity/) for more information about SailPoint's new connectivity framework that makes it easy to build and manage custom connectors to SaaS sources.\n\nWhen admins select existing sources, they can view the following information about the source:\n\n- Associated connections (any associated identity profiles, apps, or references to the source in a transform).\n\n- Associated user accounts. These accounts are linked to their identities - this provides a more complete picture of each user's access across sources.\n\n- Associated entitlements (sets of access rights on sources).\n\n- Associated access profiles (groupings of entitlements).\n\nThe user account data and the entitlements update with each data aggregation from the source.\nOrganizations generally run scheduled, automated data aggregations to ensure that their data is always in sync between their sources and their Identity Security Cloud tenants so an access change on a source is detected quickly in Identity Security Cloud.\nAdmins can view a history of these aggregations, and they can also run manual imports.\nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about manual and scheduled aggregations.\n\nAdmins can also make changes to determine which user account data Identity Security Cloud collects from the source and how it correlates that account data with identity data.\nTo define which account attributes the source shares with Identity Security Cloud, admins can edit the account schema on the source.\nRefer to [Managing Source Account Schemas](https://documentation.sailpoint.com/saas/help/accounts/schema.html) for more information about source account schemas and how to edit them.\nTo define the mapping between the source account attributes and their correlating identity attributes, admins can edit the correlation configuration on the source.\nRefer to [Assigning Source Accounts to Identities](https://documentation.sailpoint.com/saas/help/accounts/correlation.html) for more information about this correlation process between source accounts and identities.\n\nAdmins can also delete sources, but they must first ensure that the sources no longer have any active connections: the source must not be associated with any identity profile or any app, and it must not be referenced by any transform.\nRefer to [Deleting Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html#deleting-sources) for more information about deleting sources.\n\nWell organized, mapped out connections between sources and Identity Security Cloud are essential to achieving comprehensive identity access governance across all the source systems organizations need.\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about all the different things admins can do with sources once they are connected.\n", "item": [ { - "id": "398e40db-f277-4b3c-9a82-b267a71b2f12", + "id": "bb14b7a7-b378-4890-a24a-9f3caadc3be2", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -199478,7 +199478,7 @@ }, "response": [ { - "id": "e9e4dc57-89f4-4584-a97a-5ff507a8bb3d", + "id": "f4e81225-9bab-4e8b-9f20-92f3bd86b6c3", "name": "List of Source objects", "originalRequest": { "url": { @@ -199585,7 +199585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5f080b-9996-46eb-8cf6-bc8a03fb40fe", + "id": "eff7e050-83f6-4deb-a67d-a07873f04a8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199692,7 +199692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a32d4455-9074-4a26-94d7-e3b330f5d2c9", + "id": "e6fd72a0-a7b0-46c2-bb33-38fb94dd3a88", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199799,7 +199799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6638960-2e4d-4a67-ba89-984537009243", + "id": "67cc801f-c952-4c05-8cd2-6b7220923b37", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199906,7 +199906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdb434f5-3637-47c4-8bb4-15e245b2e612", + "id": "fd409972-6f6d-4f92-bf35-8ef8a852c816", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200013,7 +200013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "099f2976-fd97-4e14-9cdd-018448abc457", + "id": "b6130d0f-9f30-447d-9c7e-06d5be4c1d04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200120,7 +200120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4f6d988-926d-4cb7-b8cf-4f85b54cbb9a", + "id": "fa0b4298-4764-4985-b33a-8925bdc385ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200233,7 +200233,7 @@ } }, { - "id": "a53c9c43-bf42-44e4-89c9-6b32e99eb03f", + "id": "647c476e-6072-4e30-ad6b-845df9f04b7c", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -200285,7 +200285,7 @@ }, "response": [ { - "id": "f3a88096-d029-491f-860c-bde6418cdcb7", + "id": "96d7802e-2b06-4342-8207-a8eb29776f53", "name": "Created Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -200351,7 +200351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55ce7fdd-b636-43f4-9bfa-1956dce87260", + "id": "8caee2ee-ae5a-46b2-ad37-48c8f192df90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200417,7 +200417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aadca93c-b0e8-4595-8b90-55eced7dfefc", + "id": "e3572949-7c2f-4796-aabd-fb8a4ffc9fe5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200483,7 +200483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3e1fe48-bfb9-48ee-881a-cc07aae5dfc2", + "id": "23d95982-53b2-4bb6-8d2c-46c04f46b14c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200549,7 +200549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6ebc588-1790-40ea-8950-bd996bb16cb3", + "id": "7188636a-78d4-4cdc-a0cb-2d8c131b2139", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200615,7 +200615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a1e3cbd-098a-4a77-9331-49a0bdf1e46f", + "id": "d375548a-f206-474a-abcc-b6715d6baad7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200687,7 +200687,7 @@ } }, { - "id": "ea8b7574-aad3-4043-926f-a7f612a6195f", + "id": "f18ae24a-57fe-465f-b7e9-c67721a5a13d", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -200728,7 +200728,7 @@ }, "response": [ { - "id": "c5225be4-d182-45d8-a504-152433d09557", + "id": "8c79b677-3fa6-4d96-814a-e575b8a9ddf7", "name": "Source object.", "originalRequest": { "url": { @@ -200772,7 +200772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1b4434e-945c-42b8-b15a-a8dfdad44515", + "id": "ca3467c7-5f76-4e48-b641-a14663fd8478", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200816,7 +200816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff5539b-bb6e-4447-8c3c-ce8510fa6262", + "id": "4fa6fe4e-7210-4947-b95f-86c2acd92612", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200860,7 +200860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b211142c-a613-4b56-acfe-59d7f183eafb", + "id": "9740a378-6c34-402a-baeb-62ec27d886a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200904,7 +200904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8769b6da-b528-4866-a9cf-0fc90835dcce", + "id": "6a704c01-119a-43d6-a37f-c70a9a6d5f49", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200948,7 +200948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84095994-833a-4f9b-a0a5-aa04747a5a7b", + "id": "415d8d00-3c5a-476f-9781-dc5e53de78fd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200992,7 +200992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76946414-4dd2-48af-b0e8-536fe7a38a78", + "id": "575dcdc5-6cb4-458c-85a0-be3061435db1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201042,7 +201042,7 @@ } }, { - "id": "2fadc375-eff0-424b-ac1e-4a7c6a5a442e", + "id": "54545fae-3ec4-44b1-a2aa-9f5cfc648ed2", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -201096,7 +201096,7 @@ }, "response": [ { - "id": "8df631bd-ae57-472a-94bd-e057913cd846", + "id": "0e76e88b-c6d2-4f30-aac8-9c5e6b3238d6", "name": "Updated Source object. Any passwords will only show the the encrypted cipher-text so that they aren't decryptable in Identity Security Cloud (ISC) cloud-based services, per ISC security design.", "originalRequest": { "url": { @@ -201153,7 +201153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d19660a-e3c5-4b2f-935d-a2658acd8c52", + "id": "6ecb6953-2950-41f4-94d0-726d8f3eb53e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201210,7 +201210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2407a7da-d283-4ee5-ba19-72167524fbfc", + "id": "dd448fb2-fa3e-4abc-a611-e74a0cae27b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201267,7 +201267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc71a599-ac89-474c-b1ff-7025f99e9cf2", + "id": "31f529c6-839b-4834-b3ce-b388d6c42c67", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201324,7 +201324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65484dd2-0a6b-46cc-b573-cda5da607556", + "id": "c1b66c6b-d262-4602-9597-1462e81d4fce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201381,7 +201381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbfa7081-7b06-4d50-b6b3-058c3129e6ad", + "id": "ee5e50a0-b897-4438-b9e6-b69615f54473", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201438,7 +201438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c5d3659-eb84-4d64-8431-dbd1fb2a7326", + "id": "4c7741d3-400d-4db7-9d8b-9a087be37719", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201501,7 +201501,7 @@ } }, { - "id": "e5ae7a1f-68d6-4fa9-bb44-8e2dff729b4a", + "id": "05ae834f-5fa4-4549-822e-9f43511ba856", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -201555,7 +201555,7 @@ }, "response": [ { - "id": "01418527-6078-4426-9625-b96dfc174218", + "id": "2f8f7b50-6a28-4eb9-833c-2a71c5e53b41", "name": "Edit the source description", "originalRequest": { "url": { @@ -201612,7 +201612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "072a9954-711a-439b-8fc3-5f09e0ef78b5", + "id": "2cba79d2-c98b-4474-812e-40198c394ff1", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -201669,7 +201669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60b75ffc-c226-4880-9699-7cf2d4e44149", + "id": "602eb781-b4e6-4d07-81ce-55d15db97765", "name": "Edit source features", "originalRequest": { "url": { @@ -201726,7 +201726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e25a3ae-ff1c-4abf-866d-a24f15fd3fcc", + "id": "3d1baf0f-bef3-437f-a453-2fbeb38c39f9", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -201783,7 +201783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2ebf5ce-bd37-4a28-89c6-ac40b031c088", + "id": "cbff19ee-632e-443d-baaf-ecf368d79934", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -201840,7 +201840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b332ff-95ce-49b8-b5ed-0318990c7296", + "id": "e39dcc5a-3c8c-483d-8591-74d65a573e75", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -201897,7 +201897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a2c40d8-8f43-4cd5-b4f3-8681c3fd5c38", + "id": "32fc1bb0-6b2f-43cc-83ae-e2387f887c54", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -201954,7 +201954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f92a041-09d6-42de-bf58-8068073487bf", + "id": "b1ebb8f6-8edd-4a84-9300-685c23d5c883", "name": "Edit the source description", "originalRequest": { "url": { @@ -202011,7 +202011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc5d9a26-c516-4b2f-a5f2-0280bc3af7a0", + "id": "315cd5f8-7032-4a16-aed9-1f82e862fc6b", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -202068,7 +202068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58d5582-9a56-4792-a240-d58e74649358", + "id": "b7799f89-4412-4a0d-b567-5c1c99c47b26", "name": "Edit source features", "originalRequest": { "url": { @@ -202125,7 +202125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe5b073f-7780-4604-8c80-ec3534f4aa16", + "id": "e88c75bb-74ca-474f-829a-fe75541506a9", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -202182,7 +202182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f40dd3a1-66ae-4d9a-89ee-73f40aaa0d01", + "id": "39a03423-8af6-4808-8eab-9385fbb9b4cf", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -202239,7 +202239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63e3350-c8cf-4243-8bcd-2dcb39a44832", + "id": "16140946-bbf7-4078-889d-ae07498f7e5b", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -202296,7 +202296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1b7ec24-b9d1-4f83-8f0f-3bce6dabec34", + "id": "53a096dd-7610-4bab-b65b-85409cb23217", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -202353,7 +202353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c66e2c1-f1ce-4edd-8d89-58d10841da69", + "id": "245a5822-8c72-43f0-ab15-202781802b46", "name": "Edit the source description", "originalRequest": { "url": { @@ -202410,7 +202410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fddcfd98-50f5-4f26-a42e-ceb273669912", + "id": "46aa0ed4-8eb9-4e85-84a5-8a4370357d95", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -202467,7 +202467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46374341-a8e2-4af1-8c3e-01afa24f4296", + "id": "78da6436-ffb9-4f31-9357-687b55b2a0eb", "name": "Edit source features", "originalRequest": { "url": { @@ -202524,7 +202524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c92000c-3415-42e3-84ab-13d22f63b25a", + "id": "0edc856c-e13a-4dd5-a369-53e3be18690c", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -202581,7 +202581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0e02b8-01c2-4871-b189-8f4340931b96", + "id": "fbc3ddc9-2d29-4a3e-8f0e-06ed4d72657e", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -202638,7 +202638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36424252-f4f9-4294-8403-c0f05e44f53b", + "id": "b5e0260e-c7bb-4b75-8c49-bd52c92581be", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -202695,7 +202695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9963c530-795c-4a63-afbc-5d147fb2178b", + "id": "180feda4-37d5-43b9-a662-4a3f5f771905", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -202752,7 +202752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c9e7bf-ed49-4806-9516-9741d03eb097", + "id": "5644cc15-e7f0-44db-a64b-435a24c5492a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -202809,7 +202809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "809971ec-8215-40f9-9ac1-c6fe5d75ecaf", + "id": "91a8d80d-4bfc-4e0d-8601-1157c43f0c0c", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -202866,7 +202866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc8cbd67-4f13-479f-965f-33b21d97649c", + "id": "4de953fd-efa9-4eb4-a513-2eb9efb7938e", "name": "Edit source features", "originalRequest": { "url": { @@ -202923,7 +202923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b63e57e-12e1-46d7-b68c-4d88bc787995", + "id": "bee1528f-ce33-4a91-ae7b-d165080384f5", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -202980,7 +202980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7caeb5e0-9a38-4392-aac9-b246e6de2082", + "id": "0c142da6-45fa-41d7-bbf1-6aa30c15a4bd", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -203037,7 +203037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0093d430-f0ee-465e-afbc-287236f8a0e0", + "id": "a7c915b7-95a4-46f1-a021-eaf033e67640", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -203094,7 +203094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca274726-b5b1-47c8-8195-9b1e35c4cdc1", + "id": "b13ff3b1-d123-4401-865d-1d77368c893a", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -203151,7 +203151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d848427-4720-428b-b7c4-d30a92d4473c", + "id": "2a827491-79a9-42b3-b370-15d077963c58", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -203208,7 +203208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05828c3d-ca30-4980-9739-f7f7f4ee778f", + "id": "1af02c7f-f8bf-4bcb-b8f4-8fede7d095c5", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -203265,7 +203265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf10556b-a1f3-4583-85c7-a2eb32b9fb05", + "id": "6eac849c-98e2-4fa3-97d9-d7c9cd45f84e", "name": "Edit source features", "originalRequest": { "url": { @@ -203322,7 +203322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b8bf104-3c1a-40c5-afc8-bd610c89cd67", + "id": "aa9edf52-6a68-41f6-8bf7-508a04c7bdc7", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -203379,7 +203379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a46411a0-0964-4dc4-a212-49ed24a1de61", + "id": "c256d720-acfc-4657-a2a6-3cc68b138834", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -203436,7 +203436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b067860e-3654-408e-87f9-af134c9648c6", + "id": "4c09632e-72cd-4cd2-8008-55c560d6a024", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -203493,7 +203493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8e6bef6-6bf0-4466-a5ba-788e13bc4ce2", + "id": "97d05904-0834-4c39-abc2-671378fdea86", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -203550,7 +203550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f1db0cb-8263-45d0-afac-95780074354a", + "id": "a1eb0e34-7014-475d-8b5a-04f4b2a5c1d7", "name": "Edit the source description", "originalRequest": { "url": { @@ -203607,7 +203607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "929426e7-3c30-4261-9b1e-d725c9c557f4", + "id": "ceaf899d-717c-4d72-a366-a3b14d24f0c8", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -203664,7 +203664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0803df85-0d77-4c6f-914d-478cfa184ee0", + "id": "877d830a-34b2-4ced-b24d-659da07ce965", "name": "Edit source features", "originalRequest": { "url": { @@ -203721,7 +203721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e44977cb-4310-49f4-90b0-d487ea88dfc3", + "id": "217e6092-0ca7-4094-8b8b-3e223e68846a", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -203778,7 +203778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86306c68-212e-43ec-9e5b-ce0677fbb59a", + "id": "fa69c5a8-bc4d-4b43-96e1-03c712aa7f70", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -203835,7 +203835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11db3ebd-d810-44c4-9b1a-783a40130c35", + "id": "f78feabc-9d09-4aa4-819d-abc1eaa73567", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -203892,7 +203892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "488ccbb3-5add-44af-8d55-2bcf2f2d8aab", + "id": "d9da6495-1d2d-48a8-bd34-b096651ddf6c", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -203949,7 +203949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c33d661-9812-43ac-8da2-4bd8a522d765", + "id": "6b063fed-3a5d-421f-9309-94001dc73cdd", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -204006,7 +204006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "262720c3-c588-43a8-9223-db26e1cae8f0", + "id": "881c7be3-99da-4ca8-a9fd-b89edd6305b7", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -204063,7 +204063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37c17a79-32af-4147-bb4c-386ae3e9d039", + "id": "2da9fb9d-f9db-46f3-b091-56da0c12592d", "name": "Edit source features", "originalRequest": { "url": { @@ -204120,7 +204120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e10f3c-7304-4ad9-9bd1-76a9647cd881", + "id": "3c931b59-f0ad-4295-bb8d-acd19f1fe336", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -204177,7 +204177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67fed4b9-a871-4bce-8a50-62d763349677", + "id": "0a5aed1e-2977-4b12-a5b5-8d8e92414b84", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -204234,7 +204234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "727146c9-49fc-4f50-8a7b-9bf5256cf658", + "id": "5853eb60-34a4-4387-a8cd-ad0721fd6f55", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -204291,7 +204291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bdb68f7-5383-4663-9e93-252333202279", + "id": "48d7f570-3c19-4524-a0a9-7df54163ea42", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -204354,7 +204354,7 @@ } }, { - "id": "a35188fc-72e0-4dd9-8e5a-2157aa832b16", + "id": "af22ee9e-43e8-443e-ba2d-86df2eb45c80", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -204395,7 +204395,7 @@ }, "response": [ { - "id": "1aa71895-b595-44d5-aa86-290ea5f329c0", + "id": "0e9adddc-9321-4762-a9e4-141b66dd53b0", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -204439,7 +204439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c9b9a3-1675-4280-8e87-bdbf370dc474", + "id": "5a5ca454-21d8-4248-be1d-915d7ac8071a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204483,7 +204483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b7255f9-6e99-414a-9185-4f1c4e231a38", + "id": "20f82fc8-0f91-4469-b119-8ff74948d91f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204527,7 +204527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410429c0-2c12-4d7f-aa10-143255d78d0e", + "id": "81804ada-b2d3-4e75-acb5-172f4f4a86e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204571,7 +204571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2421fc99-4166-4a6d-aa64-218ee106b4a0", + "id": "775b2924-bab7-4f7e-a7d3-ccacb7cdf2f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204615,7 +204615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9618774a-155d-455e-9518-a270bb95540a", + "id": "256f916b-ae46-475f-8af7-73dadcd8a76b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204659,7 +204659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a1a5b97-bf95-44a2-a84a-e9ecc1d4423c", + "id": "462cfaa4-662d-4837-985c-896318316a7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204709,7 +204709,7 @@ } }, { - "id": "ab7a8f8e-1a5e-4495-b6ef-bb98f532b731", + "id": "9a2b109f-9d0b-4a0c-a064-55698e3c5b7f", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -204751,7 +204751,7 @@ }, "response": [ { - "id": "8c662607-7c43-4cb9-b99a-e9fba79fe688", + "id": "c4e8a20e-e220-49ea-bf39-27930beb8d20", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -204796,7 +204796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e743e6f2-0009-4d8b-ba5a-85ea22037a65", + "id": "5be7e3de-91d8-4a59-be59-a76ae5f8f851", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204841,7 +204841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2958c108-aa45-48bc-8639-61edb5293208", + "id": "69a28790-acc5-4eb3-b26a-9024d2d4209c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204886,7 +204886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ed0da9d-3d9a-45ae-89ce-055d8179ab08", + "id": "45da35d9-603c-4613-ad3a-1056e8b6ddfb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204931,7 +204931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6419dacd-1b03-422c-a4d8-1b4e08552296", + "id": "56008769-ebac-4762-8741-9d41709113c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -204976,7 +204976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd1fd113-a6d7-4464-b987-370e183733c8", + "id": "6cb82963-ff34-47ea-80ff-c9b86ae622e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205021,7 +205021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd8a194-a3c0-4613-a786-26c7658c1cdd", + "id": "f0379aa1-de6d-40f2-a32b-9f0019eeeb2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205072,7 +205072,7 @@ } }, { - "id": "2f380427-b4ed-481b-89e2-1006ee43606d", + "id": "23975145-ead1-410d-b4f3-80e07c98a7ab", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -205127,7 +205127,7 @@ }, "response": [ { - "id": "c1b8696c-10d0-443d-a612-2960981580c6", + "id": "f69f60a2-b92e-4c81-aa6d-b71e7cd6d65b", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -205185,7 +205185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16524b11-c75a-4b41-b68d-86ec319d2710", + "id": "1f40404c-cf70-46fa-8fe9-80830f02eee9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205243,7 +205243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c3d92cf-af31-4043-a835-d88cc7e8db5b", + "id": "b74f40de-4c84-4404-ac89-def463c83a26", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205301,7 +205301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71bda027-559f-4c39-8b91-63345b03f314", + "id": "08fbb30e-0547-49f2-b963-c99089561e64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205359,7 +205359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e107e79e-4bc0-449a-8a36-04da21387405", + "id": "c8fe5a39-7ccc-4203-a7ce-57c45d9411ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -205417,7 +205417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27a27d19-6d70-4ba2-868f-a544b6c25a53", + "id": "be20c18f-6e62-469c-b490-fbc886345606", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205475,7 +205475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "063e3e8d-4b38-4331-95e1-a626e190ffad", + "id": "97c9c673-d3f3-4f0e-bcbf-2f66c0d0a8b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205539,7 +205539,7 @@ } }, { - "id": "55816ccd-c111-4e5f-b790-60be716ac24d", + "id": "2ff48f36-2789-4a39-bba2-3ff9ce7a2a95", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -205582,7 +205582,7 @@ }, "response": [ { - "id": "08f12f75-0dcb-4946-b5fb-b400daf85cdc", + "id": "3aab6f29-fb47-4953-8510-4a9487af266a", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -205628,7 +205628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8c739e3-27b9-400e-9529-a76dc10d1f32", + "id": "67a65193-a1b6-42d4-b55c-93def6a4e492", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -205674,7 +205674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e2f825e-1af1-4ce9-90d8-390cb3e552ed", + "id": "057bdc9a-a928-4293-a2c5-ad170989fb78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -205720,7 +205720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990a9e61-3ae6-41ee-80c5-f7962bb4fb53", + "id": "8a199b07-927e-4609-8ef6-024e288b07c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -205766,7 +205766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55a28411-1328-46f4-85e0-76ceaf8f4e64", + "id": "061e974b-c33a-4c8f-8d0e-0179257702a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -205812,7 +205812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62bde61a-14c7-4f10-ba5f-3ce641738b5e", + "id": "4fa0d73b-413d-4d49-a8b0-c8e76a82e7d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -205858,7 +205858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac52332-c60d-4074-bae2-34d685840290", + "id": "ed947ff5-71d5-4385-9ea0-a715d3a975c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -205910,7 +205910,7 @@ } }, { - "id": "80b744f4-81e0-46ef-8fac-b0585a65b595", + "id": "dc58984a-c8cc-47a6-9cff-a5bc8eadbe02", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -205966,7 +205966,7 @@ }, "response": [ { - "id": "4d3326ba-1577-412c-af21-269f31a12b5f", + "id": "3f354821-e719-4872-bd69-52dd7a276af6", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -206020,12 +206020,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"veniam tempor est cupidatat ut\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"ex mollit anim dolor aliqua\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n },\n {\n \"instance\": \"nostrud velit\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"aliquip\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n }\n ]\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"mollit minim nostrud velit\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"officia nisi cupidatat\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n },\n {\n \"instance\": \"ut ex mollit\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"et velit \",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8e396b3-ff82-4570-b736-797b8c1b4ca1", + "id": "8831f1ac-7ee6-49ed-940c-53035af01d61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206084,7 +206084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "607d3d62-fd93-4d15-a5c7-8e03609fa52c", + "id": "37c07113-b23a-4555-b47c-29a7a1616e0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206143,7 +206143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f30dda10-f69b-4353-9d36-3b27aefdcb70", + "id": "6fdea618-5e1d-49d0-b1ea-29dc9bc9dafd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206202,7 +206202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a4860ca-b595-4b31-9caa-0ff42d38ba46", + "id": "8fc12472-ebdd-4798-9f6d-106f9bca0600", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -206261,7 +206261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "176496f5-b70d-4921-836d-3f695c866fee", + "id": "8994781c-7aa8-48f6-be68-5ac0375cff1d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206320,7 +206320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e80b03d6-8d83-41c2-89a8-1dfee2afd501", + "id": "d2eb2161-65c0-46b0-9a36-d2ae72a8c9a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206385,7 +206385,7 @@ } }, { - "id": "3eab89ca-6426-4594-b97c-8459c8ae20f2", + "id": "5837d713-edb8-4fb8-8169-e7f3857ec60d", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -206428,7 +206428,7 @@ }, "response": [ { - "id": "0f1c0742-fc1a-4ae2-bbef-f791e78bf04a", + "id": "80e725e3-979f-4183-9667-01688579b337", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -206474,7 +206474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f4c5a44-6f7b-458e-94f5-185d07297c96", + "id": "be11f244-d0d5-45c8-a372-cc5c5f9762b3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206520,7 +206520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a53ae0e5-cf7a-4e3d-ba9a-c74debaf1d75", + "id": "d02106c1-e5c0-4c6b-b83b-7a3fe3356477", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206566,7 +206566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6156ff51-ce76-4eb8-9c0b-9a48daa03c56", + "id": "032dbd00-155a-4687-908b-f64ba2bf0a4c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206612,7 +206612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fa454ec-e1be-4c74-b9a6-bd479c8b4178", + "id": "3b858969-7e49-4cf4-a04a-8b313f5eb48b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -206658,7 +206658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82b0bb9c-8b2c-4384-9ec8-9f607ef38075", + "id": "00262424-32af-412c-b130-cd300d79b1ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -206704,7 +206704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c8201e-0a27-4cf5-86bb-1c0cefa20ac0", + "id": "578c3777-0e38-43bf-9da3-02f0746dd52b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -206756,7 +206756,7 @@ } }, { - "id": "46b186c9-71da-4d32-9590-2c573fdb899f", + "id": "2548eb71-a0b6-41a9-bdf5-0f7ee131e671", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -206799,7 +206799,7 @@ }, "response": [ { - "id": "d3a83704-fd6f-47c0-98a0-6d25e2e1e928", + "id": "a5ecdaf1-089b-4272-9b81-a2fddadac81c", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -206845,7 +206845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b312b647-38f7-4c83-88fc-e56216e3983d", + "id": "73e041f8-43bf-4f86-9129-e9e51eeacb30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -206891,7 +206891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6c1a13d-68a6-407c-be84-2b1df8a16199", + "id": "c4b566c6-fd25-4cd6-9bbb-4fdfcf593061", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -206937,7 +206937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb14dda1-2957-46c3-a9e5-4ab7ba990dab", + "id": "f0115187-7bef-400e-9a86-412c1b2e873b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -206983,7 +206983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95303510-d443-4dc8-b329-7038ac5929a5", + "id": "29955243-4cd5-4b85-a354-774745f57bca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -207029,7 +207029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2c9802d-35eb-4836-99fb-df9c95a72ba1", + "id": "6e7a0d99-b216-4412-bdc8-75e1cc9df3cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207075,7 +207075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f9f6a3-e713-4ed2-be96-1d208e51b535", + "id": "4b50ebcf-561a-48bc-b273-7e5c8228d78c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207127,7 +207127,7 @@ } }, { - "id": "448400d0-bf45-4490-82b4-835a1aed5b73", + "id": "87187241-600a-4627-8a08-80a276aab9b4", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -207153,13 +207153,13 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -207180,7 +207180,7 @@ }, "response": [ { - "id": "6a75f8da-891b-4101-896c-e14f16b7a08d", + "id": "b741d7f9-c8b4-4f46-9371-5c2476222ba9", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -207201,7 +207201,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [] @@ -207231,12 +207231,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"dolor ut culpa nisi\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"est pr\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"dolor\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"eu amet enim exercitation\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dc27fbcd-3eb6-4115-ae86-0c47208e83bb", + "id": "a6e98e11-4699-46f7-a656-c5b8d2b6eb60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207257,7 +207257,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [] @@ -207292,7 +207292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "809e78f9-57f7-4c34-82b2-f94da9cca807", + "id": "3ab6ceef-0362-4c19-aaf7-6db4ef0b7733", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207313,7 +207313,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [] @@ -207348,7 +207348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46373ab9-0554-4cd0-9b88-e1f4feee4fc9", + "id": "e10f2416-4318-4f66-b19f-b247d117f43d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -207369,7 +207369,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [] @@ -207404,7 +207404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71eb4ad9-dbf7-4f32-b9f5-cfc6ec5bf331", + "id": "ace43a0a-984c-4159-8670-1dd9337cf7e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207425,7 +207425,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [] @@ -207460,7 +207460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58c1b104-d1a8-4a49-a0f6-22690c3a1d21", + "id": "c69f4c45-6951-4dca-b407-98dc7a8aae0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207481,7 +207481,7 @@ "type": "text/plain" }, "key": "locale", - "value": "zh-CN" + "value": "cs" } ], "variable": [] @@ -207522,7 +207522,7 @@ } }, { - "id": "193b7d8d-8dec-4d04-bea9-54e769988e4e", + "id": "a4f4b3e9-48a8-4cfb-b699-2bb74d962736", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -207568,7 +207568,7 @@ }, "response": [ { - "id": "c2155c47-9889-42f0-8c79-1dac483731d2", + "id": "a19e3748-9378-4998-bb35-c9b85c1a1771", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -207613,7 +207613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a0c5f94-137b-44ac-a1c8-4170755f148b", + "id": "999cff33-4fad-4e8c-98d8-05b4364b7f3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207658,7 +207658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32ea7157-e078-4ea0-bee9-3ba856196431", + "id": "212fd452-b6a1-4642-95a4-fd3c7e6eb041", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207703,7 +207703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6238446c-c4f2-427b-b523-29c31db4efcc", + "id": "58509e42-3fa0-44ee-907a-100ee3f3d3f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207748,7 +207748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af2cac9-8491-4f9f-b91a-b14d82b40821", + "id": "a6c96e7e-1df7-480d-9832-b910be5c6cce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -207793,7 +207793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1af5fd13-0859-45ad-b4e7-7d76599d5706", + "id": "34995550-50e3-45ec-9394-4975e13bd0be", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207838,7 +207838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bb87c41-fb72-49a4-9252-9cd341cef2b8", + "id": "56837d2a-f512-49d2-8dcc-7c9affc940f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207889,7 +207889,7 @@ } }, { - "id": "e2c3db05-f99b-4a47-9537-0a256afaba24", + "id": "e3bdf10c-d84a-4170-9c26-16487c4a49ab", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -207948,7 +207948,7 @@ }, "response": [ { - "id": "25abe666-dae9-44c5-8811-0273f474a593", + "id": "2b8f30d8-2035-4c3a-a473-0749886cfd95", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -208006,7 +208006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe0539d-6362-47f4-82d1-6b98d883262e", + "id": "8987f19c-a58c-4de8-8f9d-1f46be3b46cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208064,7 +208064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3586dbf0-589c-4561-ad65-36fbf4ec43f2", + "id": "bac915bd-5af4-4cee-a6a0-b864a93aa12a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208122,7 +208122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d20e3c8f-06b0-4e6b-ba18-a9a4b20d6987", + "id": "d25f38bd-9248-4b50-b61a-65bc7f52dcea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208180,7 +208180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26ec3bd3-2603-473f-bd46-0774699db092", + "id": "32b967ea-2b38-4cc7-9d69-2f60a5ca40a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -208238,7 +208238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97998bf2-3276-4883-b1c0-a608d76ffefc", + "id": "20138b32-908f-4006-bf7d-686f70372b40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208296,7 +208296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d630c908-1f8d-4773-8804-323ab310a2e0", + "id": "f0c95224-19ac-40dd-a645-81a926c754f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208360,7 +208360,7 @@ } }, { - "id": "604d065e-473d-4767-814d-e84d08933c2a", + "id": "b5774ea1-0b0c-4318-a179-88025460ebb0", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -208406,7 +208406,7 @@ }, "response": [ { - "id": "d9c452dd-8409-4a57-b1a6-9e8f9a0c8404", + "id": "3a392675-868c-4186-bf69-e4eba2af165f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -208441,7 +208441,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9ec185ea-be5d-4372-ad37-7413b119a1c1", + "id": "ce6d0abf-7187-4acb-80c7-df55e96ed98e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208486,7 +208486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0690fc5-2fa2-4919-be68-9a36aaecea3d", + "id": "427f1b9d-2a83-451e-98cb-f947538dbc76", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208531,7 +208531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aceed26c-f639-4cbb-97c1-ca39f9bbc23a", + "id": "475d4e86-fbfe-4cf3-afab-1e2edfa0ee8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208576,7 +208576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e092feb5-f127-42bb-a5a4-69e36090d9b0", + "id": "bc56364a-8a03-4f2d-948c-dfe8e2bf03e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -208621,7 +208621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f68b2fdd-7b32-47db-8191-c1434b336980", + "id": "1b5d86dc-aa3d-42bb-ad3e-49c43446b3b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208666,7 +208666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3f70691-f07c-4ba6-8c5f-bc1c48dfe978", + "id": "b0e5482d-e631-4542-8ab0-37674d1b070e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208717,7 +208717,7 @@ } }, { - "id": "a762cee4-f871-4fb5-adfb-65ca3b1ae339", + "id": "b6529c13-965b-45a3-8812-87d2e369137e", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -208759,7 +208759,7 @@ }, "response": [ { - "id": "e37b71f1-db81-4f0b-9399-0b0754cec037", + "id": "f5cbf3d1-564c-4640-b05b-e7c1e41d8fc2", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -208804,7 +208804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a778d03-d57f-4fc9-ad79-4f7812b4a4f7", + "id": "3d378963-2a2d-43d1-827f-1b31cfa45aaa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208849,7 +208849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cb61c0a-ac4c-4174-b47a-b3a7b0f2d18a", + "id": "0d10ef93-4409-4255-a647-f7da8e14f866", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208894,7 +208894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44c432ef-1d4c-4cce-8b93-8854445c2dfe", + "id": "3641d062-ce9a-41d8-9d3f-037b6db01918", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208939,7 +208939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90dd2a0-b5d2-4eff-8443-8181adc00f7a", + "id": "712758cd-af63-47c7-9311-216bde023c12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -208984,7 +208984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80c380ca-1dcb-4318-b373-db1be9bd7792", + "id": "c512d487-95d1-44c8-85d3-d663272c2b3f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209029,7 +209029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ea9f0c8-e1e2-4eed-a664-6fbd15bcc2ab", + "id": "53da3dcf-0c6a-41a6-8278-8b31c6c10493", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209080,7 +209080,7 @@ } }, { - "id": "ce493d31-f1d7-4ea9-afe2-f452a68af7e2", + "id": "c4b0169d-4e49-43a0-834b-b4c7bb3fcb34", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -209135,7 +209135,7 @@ }, "response": [ { - "id": "11571d63-7ed5-4d01-9e81-72bc16ece2ad", + "id": "8c204d61-893f-4afc-a32c-a98858d3a0af", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -209193,7 +209193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aafafa0b-973a-4d04-afd2-f8c75e9809c5", + "id": "56f2528f-7cf8-4254-baac-f5771cd626ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209251,7 +209251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a192bd84-f4b3-4332-93d0-2705a8efd087", + "id": "b6c8457f-e4d2-4f02-a6a6-d72d04ef4c3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209309,7 +209309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef5fb053-acb4-4ed0-85b0-019411754239", + "id": "3603a7aa-bba5-43a8-8783-1b774b251b9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209367,7 +209367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4a2a2e2-71b7-46ac-89f8-d1163621f57e", + "id": "a36f4be6-8b8c-442f-8fd4-1884e6faec06", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -209425,7 +209425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bf81e21-faad-40d8-aaaf-1fe62722ca2d", + "id": "a3ff1aa5-da66-4788-9833-1a83ab15597a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209483,7 +209483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01c6ef51-ee1b-4715-851d-10e81af8ac0d", + "id": "6a13758a-6d18-413d-8e21-df90603fdcb6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209547,7 +209547,7 @@ } }, { - "id": "5272f99a-014e-4642-906a-e33e8a078856", + "id": "e9c3d559-ca82-438c-a694-13538d79487d", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -209600,7 +209600,7 @@ }, "response": [ { - "id": "80467fa2-b6d1-4c42-9cac-8844bfd61d40", + "id": "d8285d32-93c4-4924-8611-3097108041a4", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -209646,7 +209646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8394a943-d6cb-47b5-81e7-0b3980c59535", + "id": "96b14e72-72ae-4d2a-b4c1-15fa4acde87e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209692,7 +209692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d579ca4-cb83-4f43-b96e-9ea59794e0e5", + "id": "2cadc1e5-7312-4e4e-8caf-1ec1c557113f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209738,7 +209738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0801416a-b0e4-4d41-9137-2d0e253fa311", + "id": "d1df238c-3583-43c1-9ff5-bc63a97dbe7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209784,7 +209784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bec6187e-dcc4-4e58-a918-716fd29df86e", + "id": "33a670b2-698b-4f29-8833-5231c8754da8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -209830,7 +209830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652c9fec-2843-4aad-9f61-f6c0af24b221", + "id": "798addbf-a125-436b-9dec-c8fb2443caae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209876,7 +209876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9981bebf-346b-4e01-8caf-010eb875b834", + "id": "87a71e5c-d8f7-4684-9f79-4f1c8b5151d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209928,7 +209928,7 @@ } }, { - "id": "7c077d8e-cda2-445c-becb-9211bda7f1bb", + "id": "bebad167-9ba7-44ff-97e6-ed05cdef23fb", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -209994,7 +209994,7 @@ }, "response": [ { - "id": "fba33b27-bcab-4e89-9564-88ac875a094a", + "id": "b4ab751e-57b5-4f5c-9d83-133bf86a9a5c", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -210053,7 +210053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5496e265-4cf1-47e3-8c0a-e70c067be0e4", + "id": "71826d88-3730-4779-87e0-80c5f5f1c37a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -210112,7 +210112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5693b759-9a81-4ccc-98f0-3a522a98021f", + "id": "f3be1436-05db-4f2c-a870-7ad394f1060d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210171,7 +210171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "486238ff-5829-4251-808e-b7adb123bdb5", + "id": "905ef701-af6b-4cb3-a133-dc1ce97dad4d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -210230,7 +210230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94746302-24b4-4672-97e1-b2464e3d4685", + "id": "ddc1a0e3-d081-467f-b005-f04ac6d18054", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -210289,7 +210289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b7666e-f90b-4823-8f96-5113a407d164", + "id": "21af12d6-7a55-4aff-8731-027b512a8f2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -210348,7 +210348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05a72fc1-0fc3-43b6-9061-b519db03d5bc", + "id": "419c370f-6b06-415b-80fe-29904bcbcdbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210413,7 +210413,7 @@ } }, { - "id": "d3692db4-2811-4b79-825e-1a7728eae66b", + "id": "17f45366-3411-4626-a544-ab90f35ae2a0", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -210479,7 +210479,7 @@ }, "response": [ { - "id": "e9ad1adb-6055-4467-bf8b-54a1fb90774a", + "id": "7fef07a5-1ce5-4f95-8850-07fe3f4e89af", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -210538,7 +210538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "334f2f1a-9a27-4034-a15c-fe63294d4d6e", + "id": "2e4a0c27-e727-42d0-b21c-0137dbfffb58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -210597,7 +210597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2673c3-3163-4478-8b2c-a310c67cefdc", + "id": "38a2d62a-8487-44ee-83d1-5409078ab6ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210656,7 +210656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d081188b-388a-459e-b627-74ea4bbb9b1c", + "id": "e1ca6154-32db-4bc5-a76f-aa89c2d107dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -210715,7 +210715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36c027ba-89bf-4d87-b7a2-c6c5a55bd9dc", + "id": "6a513cef-d144-44e6-a1b9-2ac4545abd73", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -210774,7 +210774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bdea7dc-46bf-40f4-a5d7-6f2918916af6", + "id": "b6f2b9d3-b66c-47fd-a549-393766ecf4ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -210833,7 +210833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "068ac0b3-b880-4138-8de7-405bd7f1edd6", + "id": "f2c4696c-48c5-4274-b926-fb956f7401af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210898,7 +210898,7 @@ } }, { - "id": "97dbc6be-df3f-4fe4-ab8d-187fe7c8dbb5", + "id": "046adfb2-ed34-4989-9ef1-a170b084efdf", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -210951,7 +210951,7 @@ }, "response": [ { - "id": "283bd9b4-0838-4d73-bb3b-e405e34cb84a", + "id": "5b679195-4acf-4f31-8af6-50f4845e1ba9", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -210987,7 +210987,7 @@ "_postman_previewlanguage": "text" }, { - "id": "35b8b3a8-a891-4cec-911f-9f8b55db64d8", + "id": "ba0ccbe5-a23f-4bf1-94d0-191c8e235e8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211033,7 +211033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a349bed9-433e-450c-b1e2-37cda935fa27", + "id": "952ca9ac-ab9d-402a-9e7c-ee9613d7a273", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -211079,7 +211079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757f16f5-e8f1-4c6b-beb9-434cfdc2ddb8", + "id": "24807ae8-949c-4d7d-a88f-b93c56fb5d63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211125,7 +211125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5258cc52-050e-458b-90f1-555233aef4d9", + "id": "34e16103-956c-4e74-8e8d-94899b2a7aa3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -211171,7 +211171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5821def-6509-48b6-b5a6-a9623d132253", + "id": "de292d07-507b-4c50-9f35-a8bd692f4d8f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -211217,7 +211217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de6ffe5-e7ec-448f-921a-c9f5d82063ef", + "id": "a891070b-da1c-4e10-bad5-be7078175a7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -211269,7 +211269,7 @@ } }, { - "id": "688470bb-c517-4e0b-beb9-55849fb14ecb", + "id": "9f732c65-d7f2-462c-b4bc-afd130e89649", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -211325,7 +211325,7 @@ }, "response": [ { - "id": "fdd9d5c3-7c8e-4147-afe8-ebc486b0d97a", + "id": "66fb1d58-1c0b-4a46-a2a1-664a721072bc", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -211384,7 +211384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f426253-08f4-44ad-8fec-6790a68364b7", + "id": "45251aff-e70c-4da7-89d8-37c71a811bb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211443,7 +211443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e4261a5-fd94-499c-9f45-1f6c117ff191", + "id": "73aed751-68e5-4b16-b067-2ae60c25e925", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -211502,7 +211502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec501fda-585b-46a8-b09d-a313276c5e38", + "id": "ac6adb6c-9bed-4779-b041-ca26757af1f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211561,7 +211561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20a998a3-9b56-40f1-8418-39555ad79bc6", + "id": "b19d265d-f633-4313-b128-9dac9563d7b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -211620,7 +211620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4712f6de-95d5-4d05-8f88-6faf10dcc4e8", + "id": "e44f88f6-65e7-4435-866f-38ecfc95f3fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -211679,7 +211679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d510b9c-0875-4818-a185-b1a720a3e2d6", + "id": "c2c2096c-3f89-4925-ba08-34c8b41ccb1f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -211744,7 +211744,7 @@ } }, { - "id": "25d9959f-7c65-4298-8ffd-a986a8d9c875", + "id": "c05bdf6f-3ba9-443c-946b-bbc81771c926", "name": "Remove All Accounts in a Source", "request": { "name": "Remove All Accounts in a Source", @@ -211786,7 +211786,7 @@ }, "response": [ { - "id": "bc92ebf9-d5e6-4fa0-9de4-74c008acee0e", + "id": "0a10b938-02bc-4fab-8384-c4a9d3d8bf95", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -211831,7 +211831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be2ccf7f-80d9-4f85-9a5a-fc0c9f2662e5", + "id": "fae9a66d-afae-4def-8c9d-7186b24200a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211876,7 +211876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d5c1002-f605-425f-a765-0bb1b939dbbf", + "id": "7ea29b7f-5744-4eee-ad64-6b037329c9c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -211921,7 +211921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2f178a-7b58-406f-a97d-65dc7f243eed", + "id": "07852e21-ec97-47d0-89bf-966894b7d221", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211966,7 +211966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce2b9847-442f-443d-93c3-28a7c0a765ea", + "id": "38b6984a-6ea9-4f94-93fb-31d89c0b955f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -212011,7 +212011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f62c09a3-8c8b-43c4-bb75-6ce19440add3", + "id": "6bf805f9-e615-4b84-afc8-8338701a7d30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -212062,7 +212062,7 @@ } }, { - "id": "2919a28a-5714-4fd8-93dc-3cede147890c", + "id": "860cf8f2-efb4-4691-b67a-d692c1e5f3cd", "name": "List Schemas on Source", "request": { "name": "List Schemas on Source", @@ -212123,7 +212123,7 @@ }, "response": [ { - "id": "8c4cb179-837f-4ee6-8c1b-4f5cca64eb38", + "id": "2908e73b-14d7-4223-af9f-d0f789e60c52", "name": "The schemas were successfully retrieved.", "originalRequest": { "url": { @@ -212187,7 +212187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f31a455e-1906-43fe-90da-2233507d6c6f", + "id": "f576f4e5-f847-40d5-a2a3-f9f4b3acc997", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212251,7 +212251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1661af5d-d9aa-486c-bccc-3c503e33a40a", + "id": "e9f22bfa-796a-4885-ad56-3dff837d12ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -212315,7 +212315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdeae245-fd6e-4abb-bcea-b717502600a2", + "id": "5b89268e-8e60-4c7e-aa1d-3f8c675f54af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -212379,7 +212379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8049d2b-286f-4df3-a392-34fd8000454b", + "id": "d89780f3-e2c3-4a20-bfdb-f751e33c6c5f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -212443,7 +212443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63613c81-3cf7-43c5-b699-c972e970fd58", + "id": "57a602d5-b136-4507-99df-b31603a4f0d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -212507,7 +212507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99ad7dfb-01cd-4775-ab7e-c28a5d33b013", + "id": "6507c203-60f3-4f0d-a087-7129cc00fb91", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -212577,7 +212577,7 @@ } }, { - "id": "b527a399-2e01-4eb9-8711-ab51935d1f98", + "id": "e22bf297-5f9c-4f11-b58b-fe97e311780f", "name": "Create Schema on Source", "request": { "name": "Create Schema on Source", @@ -212632,7 +212632,7 @@ }, "response": [ { - "id": "3af9b2f6-4e52-4bf0-b835-5920d63d3e76", + "id": "2b88b0f5-7417-4a43-aeb2-4db2e117e82c", "name": "The schema was successfully created on the specified source.", "originalRequest": { "url": { @@ -212690,7 +212690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3ba7c1a-a9c6-4045-8f2e-06e4e38652b1", + "id": "65c36af6-3192-4e48-954f-712427eefe43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212748,7 +212748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c7295c8-5bfd-4acc-b765-4d12d5d1b625", + "id": "35181104-c58c-4647-9ff2-bdba3a8ff4a8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -212806,7 +212806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a09f5cb4-f3bc-446c-ad37-745cb23ace85", + "id": "fe24418b-9c29-40af-ab20-ae2506ad689c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -212864,7 +212864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ceb14f9-2486-47b8-af94-cefb7e35fbd3", + "id": "ab9270f0-8c74-4ba2-b304-a0c313ce319c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -212922,7 +212922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a9007ff-6c94-4c38-b210-70f9a41d18c4", + "id": "355f8ef6-7b13-4c53-abae-5e011f3488bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -212986,7 +212986,7 @@ } }, { - "id": "1ced4b3a-37fe-44dd-a03b-83be1922a0aa", + "id": "ec0bef27-f794-4246-a89d-50df2e576dba", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -213039,7 +213039,7 @@ }, "response": [ { - "id": "b5ffce85-44ca-4a7f-978f-4cf1163c8e68", + "id": "a27fbfa1-b947-4f3f-a296-73ab0e42c2da", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -213085,7 +213085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd713e91-f1f6-4881-a39b-39f78870eb29", + "id": "8848f46e-8d83-44ce-8e9b-ab89f6dede8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -213131,7 +213131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08a7557f-1495-4581-b698-3c927c232479", + "id": "22825d93-80df-4a3d-b498-0c9267e51d47", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -213177,7 +213177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a13857a-c32f-472c-adca-7bcf3af8a2b6", + "id": "3d758135-571a-485c-9457-4cf6d4aaff1d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -213223,7 +213223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c021aae8-a609-4095-9617-5b13291f2ba9", + "id": "51d6f0a2-ebea-4661-8056-6de26786e199", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -213269,7 +213269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32ee1115-e56f-45d9-87bc-b3f3345d24ee", + "id": "1c76a83a-d285-4aab-8791-83536c45d930", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -213315,7 +213315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06e781d7-44c1-400e-af49-e8cd69931dac", + "id": "da569bea-1067-48de-b315-58e69b65aeef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -213367,7 +213367,7 @@ } }, { - "id": "58e56225-7978-4d5c-b8a1-dcc52dc95b31", + "id": "bb200f55-591e-455f-880d-094e9d9adafe", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -213433,7 +213433,7 @@ }, "response": [ { - "id": "8ea5ec79-f218-4ecf-9464-15bbed2bd054", + "id": "609720f4-8423-4579-933a-cba6eef840c3", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -213492,7 +213492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49d28a7b-ccd7-4d24-867d-b73eea5329d3", + "id": "6b4d001e-3063-40c2-85a5-ba974bb977d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -213551,7 +213551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f6dc84e-2a62-4f6f-9f83-43abaa443b2a", + "id": "4d341626-684d-4288-80a3-4462ae0145f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -213610,7 +213610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7337079f-9798-40df-9a23-351490ef844e", + "id": "bfd1ca0f-3889-4aba-afc4-0e6a8ed8e592", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -213669,7 +213669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4b7c1b7-0556-4830-a826-47b157914835", + "id": "4ac25311-3a90-4d0b-8304-bdcd6208cb24", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -213728,7 +213728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61b85f76-91e2-47d2-b277-233e981270f3", + "id": "5b4cda07-f702-4901-8e93-f1f4094987a3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -213787,7 +213787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef2a339-15a4-4dad-8aa1-989b257a24d8", + "id": "edacd4f2-26dd-47a2-921b-b4a4a56f9926", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -213852,7 +213852,7 @@ } }, { - "id": "4616954a-fb07-471b-bb81-92acff22d071", + "id": "295fc98d-8893-4951-8a82-bdaccde9a79a", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -213918,7 +213918,7 @@ }, "response": [ { - "id": "48a2fb4e-9933-4ee6-8c28-6d186a74f57b", + "id": "3bfc4c93-59c2-48da-ba2b-2439420e06b4", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -213977,7 +213977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "822db128-1759-430d-8ae0-1f7cd83f5deb", + "id": "0b4f6396-1812-4d2c-a46d-aaafe862e1e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -214036,7 +214036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7a3881a-16b2-42d7-b8fd-1fd80ee0e712", + "id": "94c4ad58-e6b8-4be5-89b2-b3a5373530b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214095,7 +214095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2956ce8d-902f-4e75-8723-b914e8a4c2bd", + "id": "7864f068-e714-4813-8952-32fed165d6cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214154,7 +214154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2715f6d5-f1f5-4b99-a9a8-a0b28be10911", + "id": "8a4a2f3b-a44d-476d-a281-0b7c4eead51a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -214213,7 +214213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c0c9971-560b-47c8-9054-a06c6a8247e4", + "id": "8f32714d-9f84-467a-93a4-41f11efc4fdc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214272,7 +214272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a57ebf78-4140-4656-9c69-18be752acffc", + "id": "a99f5ed7-dbc7-4d8f-9b47-133d686941b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214337,7 +214337,7 @@ } }, { - "id": "7ae69895-b17c-4cac-a4b1-9e485de1027c", + "id": "14310a8e-09d2-4066-b666-893a9872cf8b", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -214387,7 +214387,7 @@ }, "response": [ { - "id": "accec73c-b7a3-43ac-bf66-25505eaa62b3", + "id": "bf40ecbb-be20-4ae1-8aa2-5d479fc21c01", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -214423,7 +214423,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1ad7bae7-be2b-4a09-98f3-427d22c341d1", + "id": "c6efa0c1-618a-47f7-a485-695b53f30dd3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -214469,7 +214469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bee8d39-6fcc-49b5-a217-d4ee19bf7f68", + "id": "a9ba00ac-970b-431f-835b-5f8474fc1a9c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214515,7 +214515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff3e1379-a501-471a-afc3-78b3e5a3895e", + "id": "56c9d973-5f0d-4704-b937-c6dbe943d0c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214561,7 +214561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f811d608-a626-43f6-9004-75b84e12cc56", + "id": "0a41e9f1-0e55-420a-8bc1-d0f82efca4c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -214607,7 +214607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a976d77e-7f8c-4e77-9da0-ae398a31b7c9", + "id": "08211d9b-67c5-465e-8100-4bc50512bbf3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214653,7 +214653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19bd7f82-ba36-410a-ab26-2fb146f874dc", + "id": "4711509f-7a51-4abc-903d-6645eeb8051c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214705,7 +214705,7 @@ } }, { - "id": "3b44faff-8587-4623-96b3-878d89e54575", + "id": "7e9d39d5-8390-4532-a716-b38a0a927a24", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -214745,7 +214745,7 @@ }, "response": [ { - "id": "e02a811f-16fd-46fa-b550-c1f7ee71fd6c", + "id": "6e2d7905-de64-47e9-99e4-0791124c0474", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -214791,7 +214791,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fdf9d88a-87a6-4339-97dc-280ad71df13f", + "id": "f5eac820-7d91-4aae-af33-d327e8aed207", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -214837,7 +214837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aecf483e-a3bb-402d-92ef-ae5255a26725", + "id": "d1c03573-2bb5-47a3-b1b1-07cb79e02459", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214883,7 +214883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a06ecd0c-0981-4472-a5ad-1998b399a6e3", + "id": "b74e6b68-41e5-470e-b10b-18ed27b149f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214929,7 +214929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89dbd224-ee06-442f-b60f-d6dbea4579b2", + "id": "3be753ac-b1ec-4528-a693-009afd9579ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -214975,7 +214975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37031e9c-6308-4fc1-9ae2-aa677e39800e", + "id": "f634cb36-7bda-4ecf-aa27-9b4b0a6b038a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -215021,7 +215021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a3af457-756d-4dbe-9c84-acc9ca2769ec", + "id": "90a2165e-b83d-4c84-aa9c-137e2b8e216f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -215073,7 +215073,7 @@ } }, { - "id": "e63eff29-2593-4f76-86b8-78194e7d5f23", + "id": "8b84a0de-4082-447c-8d46-1b10637d4deb", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -215132,7 +215132,7 @@ }, "response": [ { - "id": "8aeeeef8-6aa3-432b-80b1-152d765e22b5", + "id": "ba02e212-86f6-42dc-aa1e-7067a2870cbc", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -215194,7 +215194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bdaf39a-1445-4598-870c-1897a57d9bc3", + "id": "62d8cc00-0c1e-48d9-9fd7-76327ac41b36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -215256,7 +215256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30609eaf-61c4-4832-9e42-3e447a754cf2", + "id": "266951cd-8cc3-437b-b27f-542e2738c5ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -215318,7 +215318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13ad23ce-04fe-441e-b202-e0115b2a6229", + "id": "b9f68f31-f322-481a-88c5-2f8299586f71", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -215380,7 +215380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67f18228-5653-4f83-a4d0-1a7a3d7fb8f7", + "id": "514ca965-d05d-469f-9e7d-ad88e3523c32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -215442,7 +215442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "433fccc9-0650-46c1-8b00-6583a3c923fe", + "id": "5f74ff6a-3352-45ec-9bf2-f6a45975a0cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -215510,7 +215510,7 @@ } }, { - "id": "bf41025c-e417-4e5d-9d09-8ea382bbffc2", + "id": "94441df4-a1ac-4d9e-8e05-bd009945de18", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -215560,7 +215560,7 @@ }, "response": [ { - "id": "3d313ab2-7ee9-4892-80c6-ad49693b3666", + "id": "d0940d96-cd96-48ad-a7f6-5707b911ee96", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -215616,7 +215616,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8cd4e96c-9e69-4306-b97c-803bc1ecdcde", + "id": "2e4c107d-17ee-44f7-9eb8-bc96ca112566", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -215672,7 +215672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70644f3a-2a65-4f76-90fc-5820d4624317", + "id": "08b88b1b-e9a0-4c1b-8bf4-816fbc5de3a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -215728,7 +215728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "466e6b1e-9820-452c-bde4-f9b24affafe4", + "id": "49d2c379-0a5d-4535-abbc-8d1324f807de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -215784,7 +215784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acf9aa61-1f82-4e9c-9a7c-2047242b7815", + "id": "6abd3159-8e57-4318-a13e-f66660e9f95f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -215840,7 +215840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e434ed8-311e-4587-9aa3-a193e078efda", + "id": "57886318-e642-443a-99e0-c2d70a4865e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -215896,7 +215896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39922d69-ac41-43b5-988e-7a149438340e", + "id": "38bd9d10-9696-4add-9214-f9b402787bf1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -215958,7 +215958,7 @@ } }, { - "id": "46cbbc1e-875e-40b3-9ab9-adb5b7c94ec0", + "id": "bc72fb41-6f40-4f13-a77c-7f507e1e4f10", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -216027,7 +216027,7 @@ }, "response": [ { - "id": "7882c2ab-0687-4bc6-8a39-52cd3c95d7a1", + "id": "a9197e88-748f-429f-ba80-56df79bdbe58", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -216099,7 +216099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dfb6a8a-fca6-4793-aa26-be5661b16919", + "id": "560c4e2d-81f7-4a8b-a539-988fddb6ef6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -216171,7 +216171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecccf033-706a-4386-9925-04beb73c0fd0", + "id": "722a4d6c-ce9c-4569-8959-85467a526581", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -216243,7 +216243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eefc5cbe-2284-4549-8c40-2a0640c1a485", + "id": "7f97d25b-f57b-431a-b5b0-dcf502c9f38b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -216315,7 +216315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba9c1d15-e3e8-43d9-af57-2b9e10d0dfc9", + "id": "1c565ebe-3170-40d7-bc27-bd54f87c1dc1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -216387,7 +216387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed6625a7-8d0e-4ca6-abf2-a3a046f5436f", + "id": "5a5b957c-3001-4c6e-b48b-560d93cb664a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -216465,7 +216465,7 @@ } }, { - "id": "6fadbb39-6e53-4062-9159-7af8b1bc495f", + "id": "e1131e54-44a8-472b-8e6d-b3f9d7ee3795", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -216523,7 +216523,7 @@ }, "response": [ { - "id": "16e1d38a-8cda-48d1-9621-523ca1031785", + "id": "8e5e885f-ce72-4e11-b318-0fc9e9a558d0", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -216584,7 +216584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4036b35c-092d-42d2-b46d-9c0728453ecf", + "id": "2606d43d-b8c0-49ad-b9ae-d91c7025b384", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -216645,7 +216645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "242523c6-09bb-4c9b-9775-cc3fd652342d", + "id": "e0c2e902-d254-4cc1-b9e3-cdda88d51da8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -216706,7 +216706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acd89ecf-ebe7-445e-8101-fc25382a61aa", + "id": "de2fac6f-2e9a-4dad-ac5f-12953d0a89ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -216767,7 +216767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8df41150-15f2-4101-949f-3f04feaec20c", + "id": "9c93f9a1-a123-4a07-8a5c-cd7e9ffe50c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -216828,7 +216828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08ef4595-bea1-465d-bba3-57e520b18e5a", + "id": "6aaec783-d38a-4c18-88a2-a17540ca44ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -216895,7 +216895,7 @@ } }, { - "id": "7307c2f1-1a16-4dfa-85ee-504c17d1ee02", + "id": "2cc25cbb-878c-4c01-9572-3fdc5784302b", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -216916,7 +216916,7 @@ "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -216937,7 +216937,7 @@ }, "response": [ { - "id": "4995ad77-f703-42c3-bfd0-afb3c8a45f19", + "id": "24ca7de1-945b-4bb8-987a-d4738156d3d6", "name": "A Source Sync job", "originalRequest": { "url": { @@ -216982,7 +216982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "058d338f-d58a-46d7-a667-7d951b45b303", + "id": "434f5c1b-5460-4638-9cf7-aee2a3c79df8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -217027,7 +217027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0532e65-7bb5-4f6f-b719-79044c849445", + "id": "9a3f9493-34f4-40fe-9433-a9c57811458b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -217072,7 +217072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d000127-b9b9-407e-aee7-b2d436b78d78", + "id": "d6baf734-4415-410f-bcb4-c0cd01748ec8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -217117,7 +217117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b0cf5e6-187e-424d-a581-a112fcd47951", + "id": "eda5730b-fde0-4d91-9114-bae9454444bf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -217162,7 +217162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9005cc6-0a49-4e47-ba8e-040c05e5d795", + "id": "7f9332a5-5c24-4ccd-93d2-f3eed123e072", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -217207,7 +217207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c93accea-253b-4f8d-808f-13851e35d323", + "id": "7642855d-7d86-4c31-969e-5f9241877cd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -217258,7 +217258,7 @@ } }, { - "id": "e2f1e2c2-fdff-4760-9769-016ea740de90", + "id": "c10d8b74-2bb7-4d50-a550-7040c544f350", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -217294,7 +217294,7 @@ }, "response": [ { - "id": "e53203b5-75c9-46d4-8d46-250f365e881f", + "id": "85b44269-15d1-48a1-a831-8f68b4ab2afc", "name": "Get default config", "originalRequest": { "url": { @@ -217339,7 +217339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "051d9f65-9eb8-4636-9763-03062a75e926", + "id": "8395aeb7-543a-4588-bcea-ad95115be686", "name": "Get config with one approval", "originalRequest": { "url": { @@ -217384,7 +217384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d3f4921-0587-4601-8c6a-bd8ba7bff283", + "id": "36f5b8f0-e7d5-493a-90a4-002c6b3c1c6d", "name": "Get config with multiple approvals", "originalRequest": { "url": { @@ -217429,7 +217429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "257d069b-84b5-4cbb-a2fb-d68a221a1777", + "id": "a32141c4-6fe5-44e9-8b04-86bc9fecd199", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -217474,7 +217474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec96f119-cb3d-4e22-8d44-97cb66cf3985", + "id": "93c8c569-8f7a-4d4e-bbf1-904620aed547", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -217519,7 +217519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f76128fb-4e20-4d1c-bf28-f77c4520d336", + "id": "4940b4d4-ccd5-43d3-9d88-5cdebbbeae7f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -217564,7 +217564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc131ae5-4e43-456b-8429-e77259c616a2", + "id": "3a3dbd02-1393-4790-b261-9b28fb79c280", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -217609,7 +217609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df6ebbf4-9fb4-4278-b2fd-3b124857c17b", + "id": "d28ae80f-76ff-4eb5-99d2-98399ca7021b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -217660,7 +217660,7 @@ } }, { - "id": "c30111bf-5cfc-4274-a37e-e9c0dab3826e", + "id": "838ac922-fce1-4f05-af74-b9b16ea3fa94", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -217709,7 +217709,7 @@ }, "response": [ { - "id": "4871ebd6-5979-4ebb-a6ff-864d1f760b9a", + "id": "27c11d22-a8f3-47c4-bdfa-8f7906614dd8", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -217767,7 +217767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeaef6a1-6dd6-484f-a483-560891f81183", + "id": "be45686f-3960-47ba-8a91-48390e3f6a6b", "name": "Set config with one approval", "originalRequest": { "url": { @@ -217825,7 +217825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1078096d-1dd5-44ff-9487-e5cdb02d5eac", + "id": "4480dc5d-2a4a-4611-b3dd-c615f8baa630", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -217883,7 +217883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f008ca98-744f-48c0-b83a-0fd5d01a9587", + "id": "217ca75f-a2d1-4482-a36d-4f3695c7c043", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -217941,7 +217941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f317c0ae-bb4f-4bd7-90d0-0bb9ff8e4a36", + "id": "75d3fe86-d896-4ad3-af94-69ae11744592", "name": "Set config with one approval", "originalRequest": { "url": { @@ -217999,7 +217999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea24cd88-bd2d-4f2d-ae32-000c7141db2b", + "id": "0c25b064-f038-450f-8070-aab396a777d8", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -218057,7 +218057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6b4c4ab-fafd-4b6c-beed-c3052c8273c1", + "id": "57634ff5-a42c-4edb-ad22-d448e3846013", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -218115,7 +218115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2470875-ad10-4c87-ae48-090f2100d27a", + "id": "011c9e6b-80ea-4c28-b3cd-92f5619dc475", "name": "Set config with one approval", "originalRequest": { "url": { @@ -218173,7 +218173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe40144-bc11-421c-ab3b-713c4ea4053e", + "id": "03ab5b52-b338-45cc-9952-bf7bb14a57ab", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -218231,7 +218231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81af9981-42f9-4be7-aba0-7323122af9c3", + "id": "bf505561-a50e-4ca7-8520-835b955c8b67", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -218289,7 +218289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51d8f275-94f8-43e1-a230-78fced0a4d49", + "id": "cb1f8d90-8d16-43f2-8de7-9495cf11c605", "name": "Set config with one approval", "originalRequest": { "url": { @@ -218347,7 +218347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a7f2f2f-1827-4dc0-808c-253ce75ed9b7", + "id": "db73b97c-3c5f-4533-a6fc-eb28a5fa1a0d", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -218405,7 +218405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d34b764f-e7dc-49b3-bcaf-6a24950653b0", + "id": "ea2799f7-70d4-4bc9-bf1e-bcfe21f77e43", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -218463,7 +218463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87688124-eab2-4ba0-ae2b-608539e9aa13", + "id": "e8504d19-19c5-465f-b996-f50f3d650fb4", "name": "Set config with one approval", "originalRequest": { "url": { @@ -218521,7 +218521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d24f375a-3c81-4bf5-90fb-4ea6fbc962ff", + "id": "4e4e221f-d7e9-4dc3-a24f-f6bccf293f27", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -218579,7 +218579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eda1ee9-76d1-4b86-8a0e-06255b790aba", + "id": "ca2b27bf-855b-4b86-8ebd-d455ba9c4255", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -218637,7 +218637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cfee718-f3cd-4c74-9ab4-f89dd94dee65", + "id": "61f15377-7970-4cab-a881-c5f0145282a2", "name": "Set config with one approval", "originalRequest": { "url": { @@ -218695,7 +218695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e540b71-2fc0-497c-8ad8-74e4eab2979d", + "id": "e6c14ec7-e022-4e88-9c27-86f7a4121bb8", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -218759,7 +218759,7 @@ } }, { - "id": "1f55bbbd-e3e7-49ad-92fb-82fb701ea630", + "id": "537c45ee-5b12-444d-b59a-5c827cd8ab96", "name": "Account Aggregation", "request": { "name": "Account Aggregation", @@ -218826,7 +218826,7 @@ }, "response": [ { - "id": "7c93b2a1-51e6-49ba-9f0a-44a4002eead4", + "id": "50c1ecbf-71e6-4f04-a705-0ad976d33391", "name": "Aggregate Accounts Task", "originalRequest": { "url": { @@ -218891,12 +218891,12 @@ "value": "application/json" } ], - "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Account Aggregation\",\n \"description\": \"Aggregate from the specified application\",\n \"launcher\": \"John Doe\",\n \"created\": \"1958-09-26T23:21:50.272Z\",\n \"launched\": \"1973-11-05T05:05:11.061Z\",\n \"completed\": \"1946-05-30T18:28:38.954Z\",\n \"completionStatus\": \"TERMINATED\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"appId\": \"c31386cb18bb403cbb6df4c86294ff82\",\n \"optimizedAggregation\": \"enabled\"\n },\n \"returns\": [\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n },\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n }\n ]\n }\n}", + "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Account Aggregation\",\n \"description\": \"Aggregate from the specified application\",\n \"launcher\": \"John Doe\",\n \"created\": \"1952-11-26T05:25:36.392Z\",\n \"launched\": \"2016-06-18T20:08:56.441Z\",\n \"completed\": \"1979-12-02T15:48:10.488Z\",\n \"completionStatus\": \"SUCCESS\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"appId\": \"c31386cb18bb403cbb6df4c86294ff82\",\n \"optimizedAggregation\": \"enabled\",\n \"laborum_\": {},\n \"Duis_c8\": {}\n },\n \"returns\": [\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n },\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a2a66e6-f953-4608-9a11-b876c8912f02", + "id": "700d1a98-8bee-45cc-9fcc-9183f92be60d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -218966,7 +218966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8ba253f-ba89-4784-a29b-314fbdb5f5bb", + "id": "73b9a4d6-6e2d-447b-bdd1-dee35f81ed80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219036,7 +219036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "140c1978-37fb-4d2a-85c0-38d743ce7c14", + "id": "5b2baa05-5464-40a5-a58b-ee04b32cc98c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219106,7 +219106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39a785ec-fbd4-46d5-a383-b21e8c782da8", + "id": "dd19112a-f4b3-4361-b120-6e456bb5d049", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219176,7 +219176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea31e843-b0ac-45bb-87ac-6ab4f8b8c16a", + "id": "b42c294a-c569-4695-b311-b0e97816b8d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219252,7 +219252,7 @@ } }, { - "id": "e6ff9978-0a2c-4b39-8273-20e02cecc0b9", + "id": "d283793d-b9e9-477b-8b1e-cb0c431a1630", "name": "Entitlement Aggregation", "request": { "name": "Entitlement Aggregation", @@ -219310,7 +219310,7 @@ }, "response": [ { - "id": "cf98fa77-dd9d-4712-8806-20541f26738d", + "id": "2b2c6707-64c7-4252-82f9-2cca76b22d0a", "name": "Aggregate Entitlements Task", "originalRequest": { "url": { @@ -219371,7 +219371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "611e8106-3a52-4122-be2c-84d895260c41", + "id": "4a196732-333f-4a43-a28e-89f607c40b4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -219432,7 +219432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d23d95b-013d-4618-912c-41244e16c5b6", + "id": "474d7180-e4ed-4ff0-8996-90fe55f1a92c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219493,7 +219493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a05171-38c3-4439-ab74-6ea8377d4c4f", + "id": "6160552e-8fc0-47ea-bc9d-8fe3377911de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219554,7 +219554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31012ad1-816d-4adf-87e4-9e2ff3cfd6dc", + "id": "e95fd7d9-eb73-4c26-9eac-38f96cab9cd2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219615,7 +219615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1440f8e6-3887-404f-afc0-1b166413e9a9", + "id": "6255ff07-81b3-434e-a2f6-1bd8b9eceb7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219682,7 +219682,7 @@ } }, { - "id": "db1fb84c-db7c-43d0-bf54-04fc050492ff", + "id": "f0b1795e-e72c-4ff3-a643-0c5d64ca1107", "name": "Process Uncorrelated Accounts", "request": { "name": "Process Uncorrelated Accounts", @@ -219740,7 +219740,7 @@ }, "response": [ { - "id": "63e9c275-f110-4f8b-a33e-1b949219e5f7", + "id": "fbc2bcba-9e38-462e-a8b3-9d81c4b0d190", "name": "Uncorrelated Accounts Task", "originalRequest": { "url": { @@ -219796,12 +219796,12 @@ "value": "application/json" } ], - "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"90b83a6bb737489494794f84cd3a51e6\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Process Uncorrelated Accounts\",\n \"description\": \"Processes uncorrelated accounts for the specified application.\",\n \"launcher\": \"John Doe\",\n \"created\": \"2002-05-31T12:40:27.246Z\",\n \"launched\": \"2023-10-05T23:06:42.853Z\",\n \"completed\": \"1951-05-21T23:07:07.943Z\",\n \"completionStatus\": \"WARNING\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"qpocJobId\": \"5d303d46-fc51-48cd-9c6d-4e211e3ab63c\",\n \"taskStartDelay\": \"\"\n },\n \"returns\": {}\n }\n}", + "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"90b83a6bb737489494794f84cd3a51e6\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Process Uncorrelated Accounts\",\n \"description\": \"Processes uncorrelated accounts for the specified application.\",\n \"launcher\": \"John Doe\",\n \"created\": \"2020-02-02T09:22:14.238Z\",\n \"launched\": \"2020-09-02T17:22:17.375Z\",\n \"completed\": \"1952-08-18T12:58:59.772Z\",\n \"completionStatus\": \"ERROR\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"qpocJobId\": \"5d303d46-fc51-48cd-9c6d-4e211e3ab63c\",\n \"taskStartDelay\": \"\"\n },\n \"returns\": {}\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b007db0-03aa-43a8-b1df-c97cf2526182", + "id": "84662e20-b220-4caf-948b-bc5f436981ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -219862,7 +219862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "663211ed-b475-4cdb-8655-5b4373fcff0b", + "id": "f6244139-29f7-49f4-bd41-a7f596502f75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219923,7 +219923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d70c99-c743-4d66-8ba1-bb54c48ddce8", + "id": "108a689a-9263-46e9-8f5b-b6ad530e13db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219984,7 +219984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c0b651d-5106-4c4c-a933-8e17cc2d35d1", + "id": "f4e978b1-5ef9-4f3d-96b9-c7b262c31ad0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220045,7 +220045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b21d6bef-393a-4da5-9486-38f63921d079", + "id": "8384c512-75a8-496e-a342-80f51fa47566", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220112,7 +220112,7 @@ } }, { - "id": "b9825b1c-b1d8-4dee-8bd8-0c649880af88", + "id": "db3f546f-d57f-4243-99a7-193aa729c5f6", "name": "Get Source Correlation Configuration", "request": { "name": "Get Source Correlation Configuration", @@ -220154,7 +220154,7 @@ }, "response": [ { - "id": "d00e4557-561b-443e-b13c-1151d363be82", + "id": "54db18fa-29ec-408a-9342-2280e2dbdb51", "name": "Correlation configuration for a source", "originalRequest": { "url": { @@ -220199,7 +220199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed177380-5eb0-4d61-b9df-1b8ad2038906", + "id": "7cb5e095-11bc-4aca-8cb1-ef60f049aff7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220244,7 +220244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6a315ba-58d2-44e7-92eb-5f71c000e016", + "id": "aed10698-da6f-48cd-b66f-19534b2eca83", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220289,7 +220289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3cb0b34-811b-4b54-a2bc-5f7fe7c42eb4", + "id": "3643ba50-abbc-4ba0-b916-1bc03712372b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220334,7 +220334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "824b392c-eb8a-4a5e-9d67-c358f451e53e", + "id": "964c69c2-0ae5-43c7-a369-f891f2184208", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -220379,7 +220379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94b65c34-ae9f-45ef-a544-beddaf66226a", + "id": "9d8e8810-cec5-4619-91fd-2fa468780fe7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220424,7 +220424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3af0685-3b7a-4631-a840-d8543523d4d5", + "id": "98ff789c-2df9-4ffa-86b0-0551e58b25bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220475,7 +220475,7 @@ } }, { - "id": "3afa59b6-ad6e-4ce0-941b-c2356b594e0a", + "id": "91bdc40b-45f9-4ce3-9681-3983f92139b1", "name": "Update Source Correlation Configuration", "request": { "name": "Update Source Correlation Configuration", @@ -220530,7 +220530,7 @@ }, "response": [ { - "id": "f2ae6bf3-8e7a-443c-8c36-8e0a8ec58164", + "id": "43c1431e-901e-4d51-84ee-0592df145a8c", "name": "Updated correlation configuration for a source", "originalRequest": { "url": { @@ -220588,7 +220588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bbe0e6f-66eb-48a0-aefb-802090694d20", + "id": "b04f0772-d98c-4d3f-b61b-0bdcf0256a00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220646,7 +220646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "042f7f4e-28e0-41cb-87f0-aa758848b77a", + "id": "db9fcae7-5cbe-4a99-a558-a638562dba0e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220704,7 +220704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6102d664-0b8b-48a1-bbaa-5aa69656dd5e", + "id": "4236baca-4f67-4139-9d0e-48f3600b5b19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220762,7 +220762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7660ff29-04cb-4ebb-ba43-899fd5424102", + "id": "0a227563-af4f-4aa3-8be1-0067c128ad76", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -220820,7 +220820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b093acc7-4e86-4f34-9c32-6eedccbd81e2", + "id": "58f6ada0-5d80-47c1-bac2-099fae71280e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220878,7 +220878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed294b9-6fab-44e0-af4e-f1df7a6d9ee1", + "id": "241b86f4-f425-4102-9ccc-1ea2abdc3394", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220948,7 +220948,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "2dc52bca-4795-4576-b1cf-6f57034ae099", + "id": "b39eacbe-f928-46e9-90d2-868350258f3d", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -220991,7 +220991,7 @@ }, "response": [ { - "id": "f6fe21dd-258d-4b8e-b4fe-ff2b425085fa", + "id": "c98c6a14-ee54-4bb6-aac9-32bc601484d6", "name": "Export all objects available", "originalRequest": { "url": { @@ -221048,7 +221048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91c0a817-8946-4874-8102-1a84b8ca2a7f", + "id": "8718f22a-a08e-486f-93a0-99addc89bf3f", "name": "Export sources by ID", "originalRequest": { "url": { @@ -221105,7 +221105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2353c5b6-77fe-4446-9960-1a3f910e759c", + "id": "e1f11e42-ddd5-42b6-9e20-2bbccc763323", "name": "Export transforms by name", "originalRequest": { "url": { @@ -221162,7 +221162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad1b5a8-3cd1-4156-8cb8-1b76a6caf40d", + "id": "86e31b28-5052-425c-b4dc-7293981801d8", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -221219,7 +221219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98d1baa7-3171-4e74-8a67-8f4b6958c78c", + "id": "087e44e6-df5c-4a3d-8b08-9872df2264be", "name": "Export all objects available", "originalRequest": { "url": { @@ -221276,7 +221276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "362b5c40-75d9-4fce-ba0d-bb8f16110e01", + "id": "d89b9036-fe28-4afd-ba9d-1435a5659678", "name": "Export sources by ID", "originalRequest": { "url": { @@ -221333,7 +221333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb02572-8c80-4516-92d1-a9c25ee48bfe", + "id": "38dc35ca-ce32-46fc-b4aa-323a171751ec", "name": "Export transforms by name", "originalRequest": { "url": { @@ -221390,7 +221390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fb6ff0a-43a4-4313-ae1f-03f3f2e86e03", + "id": "60d3f608-ef56-4852-b1fb-62876eb5dc2d", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -221447,7 +221447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d36d8ee3-b7f3-4a5a-bb9d-d771357cd837", + "id": "6379af41-ec62-4a7e-a88c-e6fc0d6aa37f", "name": "Export all objects available", "originalRequest": { "url": { @@ -221504,7 +221504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33eb9852-5a21-4679-b250-241aa7b9e9b6", + "id": "685f4b4b-f051-4b6d-96f0-aea63d4675ff", "name": "Export sources by ID", "originalRequest": { "url": { @@ -221561,7 +221561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64dc42ee-b522-4aec-94cd-02d5f2d287b8", + "id": "fff2dead-1849-4fa3-bff2-be21368b427e", "name": "Export transforms by name", "originalRequest": { "url": { @@ -221618,7 +221618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b48cb85d-1a50-44c7-b9ce-50eacdc5ad13", + "id": "2fbe91c2-c78a-46a3-ba91-5d74652e04c9", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -221675,7 +221675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "268b4db0-3f2f-4bfc-8c90-09d2e33a7c82", + "id": "0d6c1eeb-103c-4a04-87c1-9e2394783f96", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -221732,7 +221732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47eb7da1-1afb-441d-b89b-45ed82a3691d", + "id": "2e8a3cbc-6292-4e98-96dd-2212a62c9ea6", "name": "Export sources by ID", "originalRequest": { "url": { @@ -221789,7 +221789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9e3db32-621c-4323-9ee5-b9de8c686c6c", + "id": "04423ff2-9245-4aa1-9187-8c071b8f9712", "name": "Export transforms by name", "originalRequest": { "url": { @@ -221846,7 +221846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef0db6c1-6faf-493d-b5af-41f1cb07d3bc", + "id": "853892bc-68d3-4fea-bbe4-7c0e51a395b6", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -221903,7 +221903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc3ce2e-1bb7-4ef7-8ae9-3f3b9200b361", + "id": "e5a0c491-8a63-4085-8754-583f9e37f5ca", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -221960,7 +221960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01cfcca5-1c08-4385-a896-d6c6fd223c09", + "id": "79a51db9-dfaf-48ba-8128-a7f6de4b79b3", "name": "Export sources by ID", "originalRequest": { "url": { @@ -222017,7 +222017,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79352f0d-85f3-4553-b4b0-10897749ad7d", + "id": "ed3d0375-c649-470d-ad0f-98948befa138", "name": "Export transforms by name", "originalRequest": { "url": { @@ -222074,7 +222074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34ae9f2f-432e-4515-8d6c-a6c64728c0e8", + "id": "2930a09a-9761-4a5a-8d1a-04a9b591bcdc", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -222131,7 +222131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d826f92b-6ee4-447b-8d30-a50b7635890d", + "id": "bbb19110-a4b0-40c9-9734-6238e07dc4a5", "name": "Export all objects available", "originalRequest": { "url": { @@ -222188,7 +222188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a30804f-68c5-43c2-b2d2-415876928bba", + "id": "7b27a369-5b80-4b4b-87d6-92164e2a26c5", "name": "Export sources by ID", "originalRequest": { "url": { @@ -222245,7 +222245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2f5acff-e290-4059-8e40-7691132324c8", + "id": "2592476d-bb0e-402b-8015-7e88a6ff4013", "name": "Export transforms by name", "originalRequest": { "url": { @@ -222302,7 +222302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a6d20df-fe73-4f4f-94c8-59aa35e4b53e", + "id": "67b187da-3bad-47e5-b3ad-5778eeafff6d", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -222359,7 +222359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc13310-ae50-485e-987f-74a2afeb2be3", + "id": "a8a386cd-4572-4d47-9e79-6e6a436d0c79", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -222416,7 +222416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c403db95-b957-49cf-b909-0c6c84bde95d", + "id": "4cb373ca-70b4-4d72-a94d-ebd45a689036", "name": "Export sources by ID", "originalRequest": { "url": { @@ -222473,7 +222473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1a62b1e-e0fc-41f6-bcb7-7cc373f97605", + "id": "43b605a5-0db5-4905-9d35-cb728d230050", "name": "Export transforms by name", "originalRequest": { "url": { @@ -222530,7 +222530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce8c442b-a4d7-4de7-b466-823e3527c226", + "id": "83bbe4fc-8353-4fb2-a11c-54ed9ca03ee7", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -222593,7 +222593,7 @@ } }, { - "id": "862163b2-4702-4426-947e-22874edb44f9", + "id": "cf5d6927-3680-471a-989e-44fac3816782", "name": "Get export job status", "request": { "name": "Get export job status", @@ -222635,7 +222635,7 @@ }, "response": [ { - "id": "5597933e-244f-4000-83ec-7372e9b44034", + "id": "4a96df6f-8efa-4d55-b689-81066e096a33", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -222680,7 +222680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3443d220-70b7-403d-a95b-9bb6cc6ace93", + "id": "cd7c1a94-08d0-4fa5-a0dc-f2b7f800ad02", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -222725,7 +222725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b7b9423-de4f-4510-8316-3695697b07a7", + "id": "2ac4d3c6-9638-494e-ac50-da7846b9b111", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -222770,7 +222770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fef7c9e-c90e-4615-9362-63aaf3f9ae92", + "id": "cb7b88a9-26d4-4049-8b5f-e15963c38cb1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -222815,7 +222815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0d06c81-0d0b-4cca-aa97-841efe1679a4", + "id": "8cca780f-1431-424d-8060-99e929f3199d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -222860,7 +222860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336c2454-a8e6-4df6-9cab-f76d2e3b94d0", + "id": "409c744c-893b-42df-b3a5-35d6a5833bb3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -222905,7 +222905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a31ecb1-0df0-436f-b497-44af41604c48", + "id": "82a9a687-21cb-4941-9a93-91493e5b716e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -222956,7 +222956,7 @@ } }, { - "id": "f35db251-657e-4998-bfac-2f97223dd7d0", + "id": "be9cd3fa-232c-493c-ba5e-167ed4cd2695", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -222999,7 +222999,7 @@ }, "response": [ { - "id": "62347141-a110-4361-9d88-624cd332bc3a", + "id": "9b0694c3-7392-491a-8860-36a8418e20a5", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -223040,12 +223040,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"dolor_ee\": -50679296\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"cupidatat_dd\": -1717595,\n \"ex__23\": false\n }\n }\n ]\n}", + "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"ullamco_e\": \"voluptate irure quis amet deserunt\",\n \"consequat_a9\": 31608058.64082499,\n \"eiusmod_1\": \"deserunt tempor quis est\"\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"exc3\": 6047901.379883453,\n \"aliquip_0ca\": true,\n \"tempor_a3\": 58718377.25369713\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b9ecdd3a-4e77-4ff4-95ee-1abfd848c21a", + "id": "818c8160-f5db-4502-a1ff-c5de0f352b91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223091,7 +223091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "168417a6-e1a2-4857-b886-9085af08903e", + "id": "be4bc6d2-46b9-4d98-ba9b-1648e089372a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -223137,7 +223137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87e5ff23-4d28-4a42-803c-90d569706017", + "id": "ed4e15e1-8aae-4c79-bdcf-ba0ff9104bf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223183,7 +223183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52ea3909-80d9-4daa-adf8-c36d9102d58a", + "id": "f40646ab-7ce2-4c75-bc91-9cabf7c1b800", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -223229,7 +223229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63bc163f-c157-4beb-9505-bb0246948156", + "id": "9ace0331-0aea-43f8-8ad4-3351b74a00a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -223275,7 +223275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b68cb6bf-7536-4f5a-81b1-6bccefd7c34c", + "id": "217faca0-5fc7-487a-b811-358ced69a54f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -223327,7 +223327,7 @@ } }, { - "id": "2bd6b053-d428-4b6d-9214-96c40e1c316e", + "id": "c9860b83-71eb-498a-b802-105b90baeb4e", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -223392,7 +223392,7 @@ }, "response": [ { - "id": "7787cb82-b98b-4097-af8c-4b0d2df31ca8", + "id": "a260ea98-3211-42fd-a2b2-6c5004b5cc2d", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -223471,7 +223471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee31a18a-916e-423b-bf92-cc84d61f8c70", + "id": "069fec39-0da5-4337-a73d-3ca4b457cb12", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -223550,7 +223550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2b6d62e-ee4c-4d18-83c9-def2512ef584", + "id": "1ee720ce-7261-4a2a-9d2d-f14bb1418480", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -223629,7 +223629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ed57ca-e620-4b9f-b4a6-64e31f497614", + "id": "e497d8da-a80c-4970-8af2-43c9fd2faef5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223708,7 +223708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f2ce7cf-859b-40b6-9647-39490b9c123c", + "id": "73825d76-9eb5-49e4-8b6e-ea688b0d0196", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -223787,7 +223787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c948ff02-9c25-41dc-b1b2-3438158b9b42", + "id": "b9c011e0-ed65-4305-aca4-774aa4838a93", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -223866,7 +223866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55226591-4c24-43fe-b4d6-2284fe70e0c4", + "id": "3322f2a4-8325-46f1-b7ad-aa0a392b9f77", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -223951,7 +223951,7 @@ } }, { - "id": "3821e677-faf6-4e31-b528-dc656884d02d", + "id": "a5dd505e-04a5-414a-92f9-55ef82e06c42", "name": "Get import job status", "request": { "name": "Get import job status", @@ -223993,7 +223993,7 @@ }, "response": [ { - "id": "331e8528-f842-457f-80af-a9de0af90ed6", + "id": "417b085e-5070-4c47-9329-802c94e18cad", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -224038,7 +224038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "050f9ebd-27e9-4d67-a761-6679f940a717", + "id": "3a538704-281b-4386-954a-70f359dde98c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -224083,7 +224083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8117072-a7ee-4dfe-8ffd-55501de60f8e", + "id": "07c52b3c-3b75-4b56-b88b-275a4ba1b19a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -224128,7 +224128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e83db8b5-7cba-4356-9c0a-a2cd307ebdca", + "id": "18039c13-d768-40a7-bd57-697583b176f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224173,7 +224173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52eda7e1-4cdc-409b-860a-3e04bcab191f", + "id": "fc0d143f-38c5-4c26-a881-e0f826494396", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224218,7 +224218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6804228c-0b42-4766-9357-f6b4e0e487b1", + "id": "272bdbe0-192e-4e74-a4a6-10f53c006c8d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -224263,7 +224263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "227903e4-ced8-4627-9947-4fb0fd0a4232", + "id": "46a25ffc-74f7-46c3-b01a-d48260fceb64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -224314,7 +224314,7 @@ } }, { - "id": "f0045377-e48f-47b3-be8c-382e4dbd7128", + "id": "5687cc79-5b91-4d8e-adb6-c4f1ac2bbad6", "name": "Download import job result", "request": { "name": "Download import job result", @@ -224357,7 +224357,7 @@ }, "response": [ { - "id": "b1a76751-ff17-4575-8889-39029bd443dc", + "id": "40903d6f-f3cd-426f-98e5-4c65ccfc9ab2", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -224398,12 +224398,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"Excepteur40d\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Duisa9\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"commodo_45e\": {},\n \"ad_b\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"eu1e\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"esse_703\": {},\n \"sed_2a\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Lorem7\": {},\n \"est4\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in_7\": {},\n \"laboris_84\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n },\n \"in_a97\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"reprehenderit_3\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"nisi_8c\": {},\n \"dolore_394\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"officia_b0\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"minim_0d_\": {},\n \"consequat_af8\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"irure_c4\": {},\n \"magna_4\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"est_b0a\": {},\n \"mollit1a\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n }\n },\n \"exportJobId\": \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n}", + "body": "{\n \"results\": {\n \"dolore26\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"eiusmod_a2\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"eiusmod_9f\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"voluptate_\": {},\n \"ametfe\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in3\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Lorem_22a\": {},\n \"Loremc8\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"proident_a\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n },\n \"mollit12\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"reprehenderit969\": {},\n \"sunt_c6f\": {},\n \"sit_fb\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"laborisc\": {},\n \"aliquaf\": {},\n \"anim_8ec\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"nisi3d\": {},\n \"pariatur42\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"nulla_7\": {},\n \"sint_38\": {},\n \"irure__6\": {},\n \"consectetur2f9\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"occaecat_07_\": {},\n \"sunt79\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"cillum_7\": {},\n \"qui_19_\": {},\n \"eiusmod_11f\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n }\n },\n \"exportJobId\": \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f431837a-ee39-4682-bb9f-5d344a24821f", + "id": "fcf3732a-9b00-4a3b-a2ee-9f8e41c0df17", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -224449,7 +224449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00dbd04-fa2e-4fd6-845c-c0932a8c23b8", + "id": "a7af9a0b-7dee-4deb-9ac4-55d5b4dc1315", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -224495,7 +224495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0041b6bf-9ab4-44b8-bb57-4f886e722384", + "id": "d5d87cb8-e3a8-47db-a9c6-5cbc70f9818d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224541,7 +224541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cef5fd0c-c146-4411-ab01-ff4d32cb1e44", + "id": "6e06a931-aea7-46b5-8851-8cc6c12f47a6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224587,7 +224587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f18c765-851e-4e50-9bfa-4ccce30100af", + "id": "b8727ee4-529b-4e84-b358-9c57c9dd3cad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -224633,7 +224633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4576ea81-2d18-496f-94b5-d35f05840e9e", + "id": "6aa5a4a9-82d2-4f16-9386-9b6db44fdd21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -224685,7 +224685,7 @@ } }, { - "id": "7c10bf74-3217-4dda-94e5-4bd4b76ab38d", + "id": "d6894a55-7afa-4ab5-b155-fa430eec2e1e", "name": "Get config object details", "request": { "name": "Get config object details", @@ -224715,7 +224715,7 @@ }, "response": [ { - "id": "6a66df47-9f43-44af-8e1d-d3d9aeb1ea78", + "id": "85a04078-8cea-4b5b-8312-33d5adbca911", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -224759,7 +224759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d98e79-3f40-4771-9f15-7a6befc76221", + "id": "1c613774-7ecd-4912-a2e0-2f4d6ae1335d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -224803,7 +224803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53ef21e1-a7fe-48ec-9711-40c5d4f83dd9", + "id": "abbd5292-e1c0-463c-af28-231e7862d82e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -224847,7 +224847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a4532e-b610-4149-80da-8f58e2a7f9c4", + "id": "9a21967b-bc80-43b9-b205-47a3ce08cb47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224891,7 +224891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caae9f49-8e63-4691-8439-d10d0134a77e", + "id": "22fa8bdf-d6f1-434e-bd83-837b78d380a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224935,7 +224935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ad1b3b2-3f2e-4776-bb5e-074194db75aa", + "id": "3a3ebb6d-de6c-4de8-a552-1f184363b43b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -224979,7 +224979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f053558-34df-483c-8d08-e8d1e74dfd49", + "id": "f62e8b2a-7c2c-46d0-b0d7-7ace73d656e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -225035,7 +225035,7 @@ "description": "Use this API to leverage power of LLM to generate suggested entitlement description.\n", "item": [ { - "id": "c20ae6d8-e255-4a51-b9f4-594ffae0b804", + "id": "605a8391-8923-406f-a63c-a65b47c61b3d", "name": "Submit Sed Batch Stats Request", "request": { "name": "Submit Sed Batch Stats Request", @@ -225077,7 +225077,7 @@ }, "response": [ { - "id": "c122ba76-3893-4d37-adde-b0db6613994b", + "id": "2864e3f0-9d18-4ae4-ac37-4d652a13dd48", "name": "Stats of Sed batch.", "originalRequest": { "url": { @@ -225117,12 +225117,12 @@ "value": "application/json" } ], - "body": "{\n \"batchComplete\": true,\n \"batchId\": \"urn:uuid:fe00396a-55af-90a9-456c-7975e7a256c4\",\n \"discoveredCount\": 100,\n \"discoveryComplete\": true,\n \"processedCount\": 100\n}", + "body": "{\n \"batchComplete\": true,\n \"batchId\": \"c87db061-e5ee-8e42-d566-0729499f20ec\",\n \"discoveredCount\": 100,\n \"discoveryComplete\": true,\n \"processedCount\": 100\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cd382e60-2b0d-4c08-87f5-786397dab85f", + "id": "4884e0bb-a56f-406e-ab55-895d9b4e9f3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225167,7 +225167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bf26e3e-abf8-4667-a82c-7d21ddf1cbbc", + "id": "21a3d610-ffcb-4f00-9343-aeccb4653ff4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -225212,7 +225212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26f30d4a-f356-464b-903a-25a09d47b74d", + "id": "8ce8320f-c73d-4ff6-b934-d8a96583005e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -225257,7 +225257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e15c59a-6a02-42f0-92a4-2850c2b62f58", + "id": "dda8eabf-6f61-4f8d-aaaf-dd97fe271d31", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -225302,7 +225302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec9d7759-c9fc-4d77-be45-03f46d24aab7", + "id": "f2fb10bd-3ffc-44b1-aa12-2452116e520e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -225347,7 +225347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5c0b10b-bd19-4c3b-b951-7c1f408dd87d", + "id": "e78db323-287c-41cf-8cb1-983ed4fd8b01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -225398,7 +225398,7 @@ } }, { - "id": "b337f4df-5ad0-44be-b754-57124fb1c80c", + "id": "d8a3e89b-a739-4bfb-a36b-7e269fb2a727", "name": "List Sed Batch Request", "request": { "name": "List Sed Batch Request", @@ -225427,7 +225427,7 @@ }, "response": [ { - "id": "d6d60d7d-e785-423a-8d94-589e4129d3dc", + "id": "23ae262c-c8f6-4d2f-9188-16cecf3b4ba8", "name": "Status of batch", "originalRequest": { "url": { @@ -225470,7 +225470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1885ff06-9e01-4e57-a549-c663c9cfcf4e", + "id": "80e8c25e-b0e7-4208-a543-6db8e63bb4bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225513,7 +225513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3f6390d-921c-4511-9ffa-1ab1ffe95cad", + "id": "169a228d-6b70-466f-b864-dba33c99ddd6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -225556,7 +225556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3fe537c-e052-40d2-a1a3-2683202e6fbf", + "id": "3f35927e-035a-4a0f-862b-03f13b3dec44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -225599,7 +225599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9527cda-caf2-410b-b32d-877ad19c5f20", + "id": "e2bd0de4-8267-4c62-8211-a44038e9ab1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -225642,7 +225642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2155b398-c1e6-4e47-b206-99a7c392d664", + "id": "96085568-4758-4f34-8b3a-653f2eb54725", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -225685,7 +225685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cafa4b3c-ea5c-4612-bf78-8cfdd0302251", + "id": "67ebb417-7400-4074-a9e6-eecc82cbca1a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -225734,7 +225734,7 @@ } }, { - "id": "a86d1c5a-f611-475b-bcc9-9baa4a03c770", + "id": "942230f4-2c8b-436b-b0f9-bf657ca93e6b", "name": "Submit Sed Batch Request", "request": { "name": "Submit Sed Batch Request", @@ -225776,7 +225776,7 @@ }, "response": [ { - "id": "fb32674a-4587-45b8-b6e7-0c398abca280", + "id": "788fb6bc-dee9-4c97-b0c3-11664e7f9963", "name": "Sed Batch Response", "originalRequest": { "url": { @@ -225827,12 +225827,12 @@ "value": "application/json" } ], - "body": "{\n \"batchId\": \"urn:uuid:3b4733ab-7b80-b760-faa2-99235a30fa3a\"\n}", + "body": "{\n \"batchId\": \"accf6601-4edb-3db5-1bd2-2b85d0e63354\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "37778327-6119-4a2a-b9c7-06c94d8d4b2a", + "id": "284aa2c4-76cf-487b-a942-bbce4dc7e836", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -225888,7 +225888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53347a3b-415b-40e5-93f0-b56a6a8c4ff2", + "id": "deec0284-f8a3-4339-8c4c-dad02c839c17", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -225944,7 +225944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2551daf6-d468-4146-846b-1f2bc78d81fa", + "id": "61ee1f9e-0eab-4b98-8275-aef3aeb621e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -226000,7 +226000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7de61491-0f64-4a6b-adf6-4cc09e5ebbd9", + "id": "c7de170a-b522-4c46-ad22-8cfc5d4cbb63", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -226056,7 +226056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1df91ee-07d1-45da-bb6b-8e3de218fa42", + "id": "239e2ca0-a351-49b6-80fd-a5e2585b4fcb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -226112,7 +226112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25ec5724-f07c-4d96-9544-0eafadbfee6a", + "id": "4a188a21-0dbf-44b5-b78c-6d4817179683", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -226174,7 +226174,7 @@ } }, { - "id": "19b6483f-de1f-46c7-b628-94fc7ed19279", + "id": "ebdc8c1c-1169-4c9d-98cd-dbc16f2e20a1", "name": "Submit Bulk Approval Request", "request": { "name": "Submit Bulk Approval Request", @@ -226205,7 +226205,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226216,7 +226216,7 @@ }, "response": [ { - "id": "70d96520-e181-49f7-91c3-926d794a7a3c", + "id": "927aa5b7-b0a0-402c-a897-4facd55223c4", "name": "List of SED Approval Status", "originalRequest": { "url": { @@ -226250,7 +226250,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226267,12 +226267,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:aaf0e91f-183c-db53-7ac4-e41c86e0382b\",\n \"status\": \"SUCCESS\"\n },\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:b300da36-a76d-1999-d204-2c5d7acc0651\",\n \"status\": \"SUCCESS\"\n }\n]", + "body": "[\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"86b045ab-ebed-cd65-c5d7-ee93dd5e5090\",\n \"status\": \"SUCCESS\"\n },\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:a736ff62-9df3-050f-01fe-c7cf378ca079\",\n \"status\": \"SUCCESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6cbfd28d-65e8-49cf-ac29-4da32deb8e17", + "id": "446ca303-b0d2-48f3-b54c-92d2f89723ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -226306,7 +226306,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226328,7 +226328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81de11b4-6271-46f1-b443-cd22a91b952c", + "id": "2c2d3bbb-bd60-4c87-9dcf-e938fbce0a34", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -226362,7 +226362,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226384,7 +226384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d12a2c4b-4f37-4f59-ab87-1056fe53ca37", + "id": "3a0d0df5-85c3-4226-8286-a524cdfe7988", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -226418,7 +226418,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226440,7 +226440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ead30d-674c-4672-8cd5-b00e5112839e", + "id": "b80a8f29-f657-4228-bba8-e3656bbcd146", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -226474,7 +226474,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226496,7 +226496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e48edd-1355-4251-80d9-34c0fb0d398b", + "id": "e1824f4d-8f99-49f1-83f4-573134fd1fd0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -226530,7 +226530,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226552,7 +226552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a056665-1bf9-49df-899b-04c08f386a83", + "id": "4fe83b76-b660-4575-9fff-3ed506df03f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -226586,7 +226586,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"urn:uuid:b2644985-9ddd-1cfd-8b44-1d2ad6e3a400\",\n \"99d5fbb1-9994-21e4-7816-05867391de1a\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:d83f222e-7023-040c-9a50-f715c455c6c4\",\n \"urn:uuid:21a1ba79-62e5-00fe-dda3-5bf4948be708\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"d1e0664a-4f96-7a99-1685-964579872b05\",\n \"a307e2a8-ab41-7f95-197c-30c6b9f678e2\"\n ]\n },\n {\n \"items\": [\n \"5902b1bf-6cd7-833d-cc9d-93f8e1b7e848\",\n \"7abb0809-60ee-2fd6-e0e2-b82059c4e103\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -226614,7 +226614,7 @@ } }, { - "id": "e8b10026-e5f5-488c-b375-47e37ccd31d2", + "id": "c782a6dd-343f-4cae-a766-3ab1341e8afc", "name": "Submit Sed Assignment Request", "request": { "name": "Submit Sed Assignment Request", @@ -226645,7 +226645,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226656,7 +226656,7 @@ }, "response": [ { - "id": "90a896d8-81ed-46dd-bdc5-f9b9047dd09e", + "id": "ac422151-aec9-44e6-8ce4-2571e7a0f49d", "name": "Sed Assignment Response", "originalRequest": { "url": { @@ -226690,7 +226690,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226707,12 +226707,12 @@ "value": "application/json" } ], - "body": "{\n \"batchId\": \"b36da2b9-0aff-3bfa-4ee9-1354918c0252\"\n}", + "body": "{\n \"batchId\": \"urn:uuid:b4004bd1-e79b-9bb2-4dc7-acb60169e1ad\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2aced5e-ea76-406f-9da6-4642f3c24984", + "id": "1a62e255-d368-4bd1-ae9f-373e3b6f936e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -226746,7 +226746,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226768,7 +226768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef47fafb-2418-4c8d-b8d7-5c022fc2fe2e", + "id": "1be29481-15fc-4a4d-b01b-7f5d515d0814", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -226802,7 +226802,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226824,7 +226824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a94025-40b6-4712-b030-284d06019ed0", + "id": "d04f9fdd-9796-44d7-a7ad-495eb06fad68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -226858,7 +226858,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226880,7 +226880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f6bc5ef-bc5c-41eb-8874-90f0d0cc3918", + "id": "c5648572-1690-4cea-8f7f-fb1a9fb46a60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -226914,7 +226914,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226936,7 +226936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e20437b-ad01-4199-a478-43a194562d26", + "id": "7f54b37b-2f2d-4bac-b2ca-0c0ffc2aa310", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -226970,7 +226970,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -226992,7 +226992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db7aa223-0bc9-4e62-8653-7ee24df7ed0c", + "id": "e47d4d13-d007-435f-82a6-860b28fefb6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -227026,7 +227026,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"6ca89fea-05cc-d387-af5c-5eeec9aed836\",\n \"urn:uuid:af343e4a-ed76-74e8-b3db-d5c8bcd24c02\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:02d2b1dc-d17c-f0f0-ca80-d533e0c34d48\",\n \"urn:uuid:c80a0d01-f0c0-e46e-660c-74643514f508\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -227054,7 +227054,7 @@ } }, { - "id": "dc43f471-5b8c-431d-953a-abe0828b2781", + "id": "ea15e59f-edcc-40b8-affb-be7dcfae99ff", "name": "List Suggested Entitlement Descriptions", "request": { "name": "List Suggested Entitlement Descriptions", @@ -227147,7 +227147,7 @@ }, "response": [ { - "id": "2df3c78b-34ac-48f9-ae42-df4b547780c1", + "id": "ce47e46b-52b0-409d-b8c2-f0ffe62467d7", "name": "List of Suggested Entitlement Details", "originalRequest": { "url": { @@ -227254,7 +227254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbb01ab9-aab7-4e79-b260-8288a6d11a25", + "id": "78838f53-ddd9-4e9e-ae98-35523740442c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -227361,7 +227361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24b833a9-c26c-4c41-8f1b-7a806bbb1d65", + "id": "79719fb0-8e20-40c7-a6df-551ebc6acf28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -227468,7 +227468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1169a7ac-5a32-41a3-8c02-c37210756853", + "id": "b43d2e5b-b012-4258-a967-a9789c7cd4bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -227575,7 +227575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75895746-5f33-4907-9763-9f531a7b9914", + "id": "a2e132b7-4c69-4fcb-a134-aba9df1b00ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -227682,7 +227682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a2dd37a-0b8d-481e-bbf3-af95d4abc1a1", + "id": "d072baff-f36d-4358-bfab-debce750fbae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -227789,7 +227789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bce6437-451f-4792-bf72-8531ba413981", + "id": "be9e55a4-680f-42f1-9782-7fd3bd581fb8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -227902,7 +227902,7 @@ } }, { - "id": "31142a57-33f5-47ac-87c0-ac3e9d1f9af6", + "id": "25cc08ab-06e2-4e8e-8637-fb7b40eb5258", "name": "Patch Suggested Entitlement Description", "request": { "name": "Patch Suggested Entitlement Description", @@ -227955,7 +227955,7 @@ }, "response": [ { - "id": "8a248bcf-2d30-4e5a-91cc-05ec25e790ba", + "id": "5db36017-63d0-4f27-a7c3-65d487ced281", "name": "detail of patched sed", "originalRequest": { "url": { @@ -228011,7 +228011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b4b8baf-2d03-466f-9c78-65fe81439683", + "id": "36ae92ca-16dd-4d89-a162-e59b656eebcb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228067,7 +228067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c746f1-7739-48ef-bf59-8b5440a9f059", + "id": "af497298-836c-4736-b3cc-3a4dc67330cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228123,7 +228123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ada210f7-22e6-4614-8f5a-de70340ce577", + "id": "2b595487-b9d8-4651-b230-b0c527fc9a52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228179,7 +228179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "895640eb-45b3-4e21-b839-27c35c3ea5d6", + "id": "c32466fb-cee2-4cb1-95d7-e4171af267b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -228235,7 +228235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009b111f-5ee5-48c2-a5eb-ea9e70cc7e34", + "id": "39505f20-879f-4d51-b4c3-297638960f1e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228291,7 +228291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e1aa04-af57-462e-a09b-1ff0439370cf", + "id": "27f4b18f-6653-4f3f-b0f6-3ad71a0c012d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228359,7 +228359,7 @@ "description": "Use this API to implement object tagging functionality. \nWith object tagging functionality in place, any user in an organization can use tags as a way to group objects together and find them more quickly when the user searches Identity Security Cloud. \n\nIn Identity Security Cloud, users can search their tenants for information and add tags objects they find.\nTagging an object provides users with a way of grouping objects together and makes it easier to find these objects in the future. \n\nFor example, if a user is searching for an entitlement that grants a risky level of access to Active Directory, it's possible that the user may have to search through hundreds of entitlements to find the correct one. \nOnce the user finds that entitlement, the user can add a tag to the entitlement, \"AD_RISKY\" to make it easier to find the entitlement again.\nThe user can add the same tag to multiple objects the user wants to group together for an easy future search, and the user can also do so in bulk.\nWhen the user wants to find that tagged entitlement again, the user can search for \"tags:AD_RISKY\" to find all objects with that tag. \n\nWith the API, you can tag even more different object types than you can in Identity Security Cloud (access profiles, entitlements, identities, and roles). \nYou can use the API to tag all these objects:\n\n- Access profiles \n\n- Applications \n\n- Certification campaigns\n\n- Entitlements\n\n- Identities \n\n- Roles \n\n- SOD (separation of duties) policies\n\n- Sources \n\nYou can also use the API to directly find, create, and manage tagged objects without using search queries. \n\nThere are limits to tags: \n\n- You can have up to 500 different tags in your tenant.\n\n- You can apply up to 30 tags to one object. \n\n- You can have up to 10,000 tag associations, pairings of 1 tag to 1 object, in your tenant. \n\nBecause of these limits, it is recommended that you work with your governance experts and security teams to establish a list of tags that are most expressive of governance objects and access managed by Identity Security Cloud. \n\nThese are the types of information often expressed in tags: \n\n- Affected departments\n\n- Compliance and regulatory categories \n\n- Remediation urgency levels \n\n- Risk levels \n\nRefer to [Tagging Items in Search](https://documentation.sailpoint.com/saas/help/search/index.html?h=tags#tagging-items-in-search) for more information about tagging objects in Identity Security Cloud.\n", "item": [ { - "id": "bf498b48-4ee3-4f39-98f7-720064964bc9", + "id": "c72f2d07-b5b8-4fda-b85f-e9eddfcbc96d", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -228425,7 +228425,7 @@ }, "response": [ { - "id": "05070563-8b07-4298-81fa-c3d5b7630351", + "id": "2b660d74-c44e-46ef-b1b2-27bd4b725b08", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -228505,7 +228505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2906e5c-15e7-4876-987c-1900a720fb0a", + "id": "2bfc2947-d0dd-4529-af73-24640cbeb030", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228585,7 +228585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4caf157d-c39e-4e4e-9851-94875ad67a04", + "id": "e625b4d1-99bc-4777-97c1-ed5737f54095", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228665,7 +228665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b141cb66-8c59-4b4d-b550-4e596a691391", + "id": "3a91c13b-c8d0-4d7a-a4a3-0bf31bb8c033", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228745,7 +228745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20720fd2-da2a-4201-9c30-a358760adbc9", + "id": "2001b5a2-7acc-43e7-9c1a-67cb5ec0e3b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228825,7 +228825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a373108-fa9e-4da9-8bf5-d8ff082f4017", + "id": "ada7715c-2e94-48b8-befb-6e769b4f9c30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228911,7 +228911,7 @@ } }, { - "id": "0b2631b0-acdd-47ab-97e5-7b19489d4473", + "id": "0b0f158e-8ae2-46bf-9677-288451f796aa", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -228953,7 +228953,7 @@ }, "response": [ { - "id": "f754a322-9178-4d28-af53-4093ec360d87", + "id": "09525551-1e11-4ceb-b4ea-94bede770cf3", "name": "Created.", "originalRequest": { "url": { @@ -228999,7 +228999,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b5cd3b12-8503-4b59-8560-2709cd302991", + "id": "d7fb6f04-592d-4300-9a26-2746494d5a51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -229055,7 +229055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8781973-4a3b-4b60-a04b-92d433a19640", + "id": "b58a4362-28a5-4703-9e8e-b7643f6d8801", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -229111,7 +229111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25b763cf-7f3e-4633-8390-d94cdd5e6763", + "id": "2ba769b4-900b-4a68-826f-9255bd9fb8a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -229167,7 +229167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "900413e0-2c79-484e-8de8-debbeecd77c1", + "id": "83b8d8bd-be08-4ae5-86d2-eb27e3ba55e1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -229223,7 +229223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5a6084f-daf7-4b8b-be79-215fa84fe9e0", + "id": "3ad8b853-8cbe-4828-8d09-689d83611fc9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -229285,7 +229285,7 @@ } }, { - "id": "56427b3c-5d3a-4ad4-ad0e-5d5315b6dfce", + "id": "0bb82dbb-5fd8-463f-9c3e-59648450b332", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -229363,7 +229363,7 @@ }, "response": [ { - "id": "895c95a1-88e2-4021-80e6-d36bb6b74de9", + "id": "0374627d-0208-4c58-abac-a346137667fc", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -229444,7 +229444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "074adec2-8df6-4a27-8cb0-207e940e99f4", + "id": "19560606-8971-4046-b4ea-10265f4db792", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -229525,7 +229525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8df5761e-338c-4a80-8cb0-764d21352f72", + "id": "8a216353-c11b-4aad-b87b-b1a402998b29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -229606,7 +229606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d883f0a7-acd8-4089-8546-41da30f22947", + "id": "a3fd3987-cf72-4a8d-9c49-845c27c794bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -229687,7 +229687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f974a60f-f5d7-4d0a-a1e4-2fef4fe7e2e7", + "id": "0b1275c3-c3f2-4e63-813a-c677435124dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -229768,7 +229768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39dfce0-09b5-4c47-8f82-7a45cf154528", + "id": "40c68ccd-8307-4a41-90db-d4f7899d0fbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -229855,7 +229855,7 @@ } }, { - "id": "3d1678d0-b5fc-42de-940a-252fc982b89c", + "id": "43363927-8bd5-477f-a975-7507f27b897a", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -229907,7 +229907,7 @@ }, "response": [ { - "id": "a40f9fa4-b2b5-49b8-8432-eefe98421f52", + "id": "455c0b3d-5a50-41ef-a72c-208b992f373b", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -229952,7 +229952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d054c0-d756-47dc-b9d5-b341a96ed5de", + "id": "205060e0-68af-409e-befb-bf670954508a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -229997,7 +229997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9d8e5c0-694d-475b-9d27-532b3b49d073", + "id": "753e86cb-b70a-4785-a2f7-35fbbe4bdc11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -230042,7 +230042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26615aa1-469b-4df8-8d94-da21427645dd", + "id": "c0137a04-efb1-4ef5-931c-c964ca7afe8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -230087,7 +230087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afe3f875-44a1-4188-9b23-3db39573e2b4", + "id": "3fb6028d-7d19-40a8-bafa-32e1a372960a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -230132,7 +230132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a89a09cc-831b-4c1e-9605-9d4c4f536e02", + "id": "e1492013-e19a-4352-a0a5-afa1b2f0f514", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -230183,7 +230183,7 @@ } }, { - "id": "4255bb6a-f0db-418f-b6e2-1a422df46df7", + "id": "d9cf7c5d-b590-406b-bd48-dd3c130b4a96", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -230248,7 +230248,7 @@ }, "response": [ { - "id": "50882fa5-5778-4a7c-a58f-74cb0d83311b", + "id": "a9f245a5-bffb-4180-8463-cc993b975ad2", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -230306,7 +230306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0791cf2-0535-4f94-88a7-9d7af0187edb", + "id": "c7696bf2-eac9-4161-8813-86fddac38600", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -230364,7 +230364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a2cdc5c-a8be-4502-9070-772364c687fd", + "id": "ecb49fb2-48d9-4374-991a-fc106c2e8bff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -230422,7 +230422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93c79207-76d5-450b-b8a9-d83b6a3016a2", + "id": "b3f6347c-af5d-4145-8598-b94d8ad9028f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -230480,7 +230480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a183d470-2de0-479e-85c1-9e2665c194c9", + "id": "5702d973-f8c3-4f55-ae09-3b7575edfffe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -230538,7 +230538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b23f3ed-f94b-4a83-a6a6-2736beb1024d", + "id": "9906ba6b-22e1-41a8-b665-a9c50811fcda", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -230602,7 +230602,7 @@ } }, { - "id": "72ca4ba0-14a3-44cf-ab57-fd085d9b74a2", + "id": "3e5c1cdb-0f07-48b8-ac99-0e01a9fcdd3d", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -230654,7 +230654,7 @@ }, "response": [ { - "id": "48f210cc-c1f1-4220-8508-85ddc7c8d0ed", + "id": "1d7e323a-a62d-480f-bf9a-49e11c06978e", "name": "No content.", "originalRequest": { "url": { @@ -230689,7 +230689,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ce11ef58-06ef-4777-8001-d1ae5bfb6cd1", + "id": "66f7d579-1e33-46a0-8d4e-69f59f90e87b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -230734,7 +230734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e89100f7-8b50-4b05-ab1a-614a435f59a3", + "id": "a841ecc5-7a4c-46cc-923f-84e5292127dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -230779,7 +230779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53cc2019-9ffc-42e2-9a4a-2cd21c6dc60e", + "id": "791ccef5-f358-4e76-8f1b-083fcbcddace", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -230824,7 +230824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "863a43a8-9f05-4b98-9100-4aac499100c0", + "id": "6bdf9e22-5361-43d0-aecb-c5e9c70e420b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -230869,7 +230869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0827e1fb-c4a3-473d-b106-945aa48d592a", + "id": "e5f20d8a-8fe3-41dd-8c94-7582cf6f3170", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -230920,7 +230920,7 @@ } }, { - "id": "49c805cf-f0c1-4b7c-b46a-03532a3266f8", + "id": "ab886319-7b6f-4292-84a3-c24be433956f", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -230963,7 +230963,7 @@ }, "response": [ { - "id": "dcc19771-c6c8-4297-a682-e0ec287e75f1", + "id": "7828f07a-c15d-45c3-bfa9-084048e7245e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -231020,7 +231020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac498e6b-507d-4be8-ac9b-99417f91f0f3", + "id": "d4aa596e-83d9-492b-bb7b-77adc02aaa47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -231077,7 +231077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672fb459-86d3-42ad-9237-f451218f6f11", + "id": "dc58e066-b3c9-4640-82ba-18032802f7b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -231134,7 +231134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30b2bfbe-dc79-425e-af9c-b636f5f7cc78", + "id": "d18ee321-eeaa-4abf-b7b6-df2bbbe1750e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -231191,7 +231191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32720df3-e017-4dcb-ae06-29f71454889e", + "id": "e56d642f-3af1-46a1-92be-fd137b264380", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -231248,7 +231248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "972ff02d-76e4-440f-85d7-a6c040cf94cf", + "id": "2bcf9c9a-0b90-4e09-9ba7-8e04e40f8b35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -231311,7 +231311,7 @@ } }, { - "id": "4d627fa2-6c5a-4f04-ba90-0e3587bd9326", + "id": "b65b0112-d7ef-42fb-9679-b2a314558bf4", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -231354,7 +231354,7 @@ }, "response": [ { - "id": "71a89a73-16a9-469b-9288-0117e2fadcf6", + "id": "9c564c64-bc1f-4b33-baca-b3cb717da5e4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -231401,7 +231401,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bb9312ac-ee16-4e16-9786-dae52a4032be", + "id": "884c012c-5084-46e4-bd7b-b5a172679194", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -231458,7 +231458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32ce7a6f-194c-437e-a5eb-68fe21023d61", + "id": "408edd53-9a5f-4f97-9ad2-7fef2205aa59", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -231515,7 +231515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76cde2dd-7a88-4e4f-a48d-6db39da99ecf", + "id": "85bd59e4-e580-4df0-80f2-d3e074cb9df7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -231572,7 +231572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7c6053-9c00-4821-b284-ef5c8f98cf33", + "id": "0b4cd5ce-06ed-4c66-b930-150f5a5b1818", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -231629,7 +231629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37ae5c7e-ab18-417f-9d3f-6390ed44c82c", + "id": "b12850ab-bf67-4ca8-af36-115928bf2076", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -231698,7 +231698,7 @@ "description": "", "item": [ { - "id": "e222b613-e821-4b83-8778-905505854930", + "id": "afd08272-1d07-4e22-a506-43bb000ef61c", "name": "List Tags", "request": { "name": "List Tags", @@ -231773,7 +231773,7 @@ }, "response": [ { - "id": "f3401cb6-0c92-46c7-b63c-fee3748bd709", + "id": "d4bdfa29-613c-4236-84f8-594867020007", "name": "List of all tags.", "originalRequest": { "url": { @@ -231862,7 +231862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f85806a0-9a16-4222-8e68-039abc1c14e0", + "id": "287a6676-371d-4fe6-8f37-b657ec665501", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -231951,7 +231951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf0ec7ae-b06a-433c-861b-900333b067bb", + "id": "f591978a-3340-40d0-88bd-cd3b267e9520", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -232040,7 +232040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "383508c9-6057-46b8-a9c5-3b57e91ce485", + "id": "cc6a86f5-12f5-4c61-bbd1-70aafdad8bc7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -232129,7 +232129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "989d815a-a1be-4503-afb7-1cd2f65bce54", + "id": "fef6c1b7-9746-4346-94cc-241c87f58e20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -232218,7 +232218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "239d26f3-522c-418c-98db-fe6b33bdf183", + "id": "8cc144df-46bd-4f33-8371-4baec9262ca2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -232313,7 +232313,7 @@ } }, { - "id": "526c10f1-66db-4e40-9220-51ff8c9182c3", + "id": "72283ae2-af6b-4c26-bfbf-70b0ea8d8fbc", "name": "Create Tag", "request": { "name": "Create Tag", @@ -232344,7 +232344,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232355,7 +232355,7 @@ }, "response": [ { - "id": "387b568f-27d0-41ce-85a0-206764cf6e56", + "id": "9a2e07ad-4f58-4aa2-8d4a-b07d83aed383", "name": "Created tag.", "originalRequest": { "url": { @@ -232389,7 +232389,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232411,7 +232411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "818037c2-2f06-4fb1-b792-cc7df88c33b5", + "id": "d98ff384-6e5c-4e33-9b9b-69d7285058e9", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -232445,7 +232445,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232467,7 +232467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d517cf4-eb31-42f4-9029-31ad469874c2", + "id": "14d3fe5c-ad2e-4f2b-9260-9df5b01320c1", "name": "400.1.2 Value length out of range", "originalRequest": { "url": { @@ -232501,7 +232501,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232523,7 +232523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "103a206d-58bf-4369-9088-3765e5e22635", + "id": "1d924bfd-bda0-49ae-a7e8-dd057b7f9e40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -232557,7 +232557,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232579,7 +232579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d7fa38-0e43-4d23-8117-970c17cf39e4", + "id": "bc2ad58d-cb52-47b0-a528-9ada15013ed5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -232613,7 +232613,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232635,7 +232635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55fd91d8-1826-4ab9-a2e0-f2e07a32ce07", + "id": "e5defa52-90cf-46ca-ac1f-04940b3c162b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -232669,7 +232669,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232691,7 +232691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9508648f-2da9-47ce-ace5-eaac4c4b75ca", + "id": "2727366b-d0cc-4852-8c84-ffa0d2972eb8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -232725,7 +232725,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"name\": \"PCI\",\n \"id\": true,\n \"created\": -34339001,\n \"modified\": 65271379,\n \"tagCategoryRefs\": true\n}", + "raw": "{\n \"name\": \"PCI\",\n \"id\": -30440141.950449422,\n \"created\": 8712886,\n \"modified\": 39055606,\n \"tagCategoryRefs\": 42624816.93754867\n}", "options": { "raw": { "headerFamily": "json", @@ -232753,7 +232753,7 @@ } }, { - "id": "f01b26f0-d2a1-4b82-86ba-4890a75e27a3", + "id": "392e9d8b-db07-4769-a126-3e4bb715fa02", "name": "Get Tag By Id", "request": { "name": "Get Tag By Id", @@ -232794,7 +232794,7 @@ }, "response": [ { - "id": "27abffb4-ecdd-4e9e-943c-cd6c6edbf214", + "id": "e3259a83-a2e1-4e0c-a731-5e0fb0b99e71", "name": "Tag", "originalRequest": { "url": { @@ -232838,7 +232838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a3b19cd-a55b-44c6-b505-9be23b8b4135", + "id": "bbc7e578-b0ca-4c12-9a49-6fff02e5757a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -232882,7 +232882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e98b066b-2b47-4ae4-8dc9-d79b90f1dc08", + "id": "effc656e-bebf-4b9a-85f0-5137c22ab2f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -232926,7 +232926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c83544e1-628e-4c07-8361-43c5f5a932a8", + "id": "e9263b45-4490-40e5-8896-871e924427a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -232970,7 +232970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f95e7150-177c-49b4-8737-7a289b3ba715", + "id": "85e0aaaa-a8e3-49d4-87f9-b3d1c0c80aa8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -233014,7 +233014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d670e62-82cc-4baf-927b-f576f2dc8d4b", + "id": "5a76df5a-7706-4a5e-8232-b8fb985a9166", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -233058,7 +233058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "348f7f70-aa42-402c-9435-b71a1f7712c7", + "id": "7e44602a-6996-4991-ad57-3427626c21ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233108,7 +233108,7 @@ } }, { - "id": "ff641418-eedc-45b5-a620-23872f24597f", + "id": "6690f258-0d88-4dd3-bc46-34e356383cfc", "name": "Delete Tag", "request": { "name": "Delete Tag", @@ -233149,7 +233149,7 @@ }, "response": [ { - "id": "77bf6240-cf3e-4dd3-bdcb-3180e1d11dd1", + "id": "f6b6f627-39b6-42ef-a1b6-b54dcbd77e40", "name": "No content.", "originalRequest": { "url": { @@ -233183,7 +233183,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5ca7dbde-8151-4760-b8a3-fd10cf58f933", + "id": "cf1459e4-6a90-47de-ac99-fb834f95a38a", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -233227,7 +233227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09322b11-7636-4160-b3dc-2ca40099a52d", + "id": "feb59342-c8d7-4d58-91a7-e81139813c56", "name": "400.2.1 Referential integrity violation", "originalRequest": { "url": { @@ -233271,7 +233271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd97aa38-f6ca-480e-a4e1-3108bfe667a4", + "id": "ef70a144-c887-40ac-a231-2dbd69b61f8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -233315,7 +233315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81096d86-e6aa-4d04-bd39-f072f3646d57", + "id": "ca85f29d-ea97-4e68-a717-9407862ee05f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -233359,7 +233359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5e4b803-b234-4fe9-9b97-df68758fac92", + "id": "859f4e44-21c6-4e56-b3c5-f20ae66f3be0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -233403,7 +233403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "568b0172-6125-4f3f-b85c-d64002d62035", + "id": "583b3131-5365-423a-97b3-cd4c2523f1aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -233447,7 +233447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5426a05d-c3c8-43b3-9e5d-d724c852ed64", + "id": "6c5cff85-04ac-4808-8b8c-57585fd68a12", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233503,7 +233503,7 @@ "description": "", "item": [ { - "id": "0eaf82ef-1191-45fd-8260-efb90b9e6f0e", + "id": "bc0236db-91b4-4f52-bea2-a166a70f8763", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -233544,7 +233544,7 @@ }, "response": [ { - "id": "2d9639ae-e4a9-44b2-a027-0709fdd8a043", + "id": "1de633e0-f1f2-4c7c-adc5-575f6e115dc8", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -233583,12 +233583,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"tempor_30d\": -30375944.08349693,\n \"quifc\": -12428373.75241366,\n \"in_a\": true,\n \"Duis_b04\": 43123207.69429344\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"in_5\": -69096202.74537049,\n \"esse0\": -48477855,\n \"nulla5\": -24670544.026133046\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4bf0d0bf-95a9-42c6-8aea-ef286ae58af1", + "id": "9fe28bcd-51ac-4eae-bcd3-4ce8bb65f656", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -233632,7 +233632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05c545fd-3c9d-4112-a0e7-87eb0ad5fee3", + "id": "6a5985e4-faee-4c1a-a3e3-a41e760d0802", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -233676,7 +233676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4e97b86-7810-4e22-9e77-311b74f0a809", + "id": "0a13d034-7182-46f6-8a5c-00dd044d40b2", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -233710,7 +233710,7 @@ "_postman_previewlanguage": "text" }, { - "id": "46594269-d53d-412d-8f6f-fdf80a853a9f", + "id": "3eeef081-a6d6-48b0-8deb-30e737796f01", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -233744,7 +233744,7 @@ "_postman_previewlanguage": "text" }, { - "id": "02c7ebc0-4890-4cfd-9397-e9e17ec32175", + "id": "59d5e7f1-5631-4683-bec2-60bf9e1a6c44", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -233788,7 +233788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3941842f-2b81-4a02-baec-f32a31f5879c", + "id": "5f848016-f972-404c-bdb2-3b0c78b9ded9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233838,7 +233838,7 @@ } }, { - "id": "f05efc04-f7b0-4d02-860d-a3ed38d43024", + "id": "612cbb1d-a9e2-4faa-9501-8f8cc8180878", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -233892,7 +233892,7 @@ }, "response": [ { - "id": "802b3be9-d01e-4bdb-9a9b-78665760bdaf", + "id": "1bce727e-7975-41d3-9c4c-cc5b0d2a5a4c", "name": "This response indicates the PATCH operation succeeded, and the API returns the updated task object.", "originalRequest": { "url": { @@ -233944,12 +233944,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"tempor_30d\": -30375944.08349693,\n \"quifc\": -12428373.75241366,\n \"in_a\": true,\n \"Duis_b04\": 43123207.69429344\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"in_5\": -69096202.74537049,\n \"esse0\": -48477855,\n \"nulla5\": -24670544.026133046\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48d0d174-decf-42b7-add1-a4f92a6548ea", + "id": "9d0ea21e-a529-47e5-8128-9f1e5ff64b35", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -234006,7 +234006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3843cd5d-ac3f-4a9f-a1e1-59919614248f", + "id": "96e11de8-b247-4956-8c72-2b7f4ff19df8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -234063,7 +234063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "797dd2d8-3b53-4e48-9388-3fa7ef26886c", + "id": "9f971911-d553-4aa6-b952-7bd5a9e1e87f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -234120,7 +234120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05fa5e1b-3450-4be4-aa9a-760cedea5b46", + "id": "34c635c1-1405-422c-a51c-4f9a2695e015", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -234177,7 +234177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fd0f547-5497-4d9d-8956-bc890370cfd3", + "id": "987d2cc9-400c-4183-bab7-df7d1bdb740e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -234234,7 +234234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1691b672-89f1-4aff-9fa5-cf4007d9e176", + "id": "5eb2db88-e729-4e48-86ba-93e6cf99620b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -234297,7 +234297,7 @@ } }, { - "id": "c9f64196-4b57-40cc-9a6f-2879e6f7166c", + "id": "039ef902-ce59-46d4-87e0-8e59b94566e9", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -234372,7 +234372,7 @@ }, "response": [ { - "id": "7e5acecd-9724-48d7-82f0-b01996d9a461", + "id": "d8440e21-24e5-4990-b520-dc7b34a538ca", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -234456,12 +234456,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"quis_6\": -4448190\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"voluptate1e\": \"occaecat officia\",\n \"eiusmod129\": false,\n \"deserunt_ec\": true\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"ina6\": \"ad Lorem\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"qui68\": false,\n \"laborum__53\": -44918139.9616533\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "48209295-a3bd-4b24-93cc-134cb5a29144", + "id": "287ccd87-0958-4ed9-93ea-569886220e4e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -234550,7 +234550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41a37bf8-e41b-4c2f-af3d-fdb8e57edfa8", + "id": "da69d712-e823-466d-95c4-b641517201ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -234639,7 +234639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5369704e-6079-4aae-bef2-aaa624106f84", + "id": "030390f5-3e08-476d-a465-8283878f79d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -234728,7 +234728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdd11a84-57ed-4697-9684-cbba3592704f", + "id": "12c363b1-7d55-4250-b313-161d1bc34285", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -234817,7 +234817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c29ddfb-e30d-473c-ba89-cc906604b19f", + "id": "3e3e2f8b-5166-43da-ae35-601f2e00b9c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -234906,7 +234906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d542fc32-c07a-4681-9a41-7fefb70c1e40", + "id": "8dcfd0ac-cba4-46b8-8ae9-1c6d88d94713", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -235001,7 +235001,7 @@ } }, { - "id": "b3078396-21cd-46f2-92da-48bedf303bda", + "id": "d347f10d-14c7-4354-91cc-d550d6d89ec9", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -235059,7 +235059,7 @@ }, "response": [ { - "id": "f5c23e3f-61c1-4add-b628-70e9b7bb64ca", + "id": "23d0a496-594a-46cb-b6fe-38c65b476be7", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -235126,12 +235126,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"quis_6\": -4448190\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"voluptate1e\": \"occaecat officia\",\n \"eiusmod129\": false,\n \"deserunt_ec\": true\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"ina6\": \"ad Lorem\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"qui68\": false,\n \"laborum__53\": -44918139.9616533\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "67b091a8-9fe3-473e-b8fd-1cd3cd0cea98", + "id": "e5805410-294a-4615-bb14-5dfac66f6242", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -235193,7 +235193,7 @@ "_postman_previewlanguage": "text" }, { - "id": "15ef1eab-7e05-4ea0-bfa2-6851adc1a39a", + "id": "f60fee43-db00-4966-a6c6-a88e047bb4e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -235265,7 +235265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f371555-a7d3-475c-9acb-dc46bbd626b7", + "id": "3149712c-9a01-4c62-be7a-a3cc51e088ed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -235343,7 +235343,7 @@ } }, { - "id": "7b6e0a33-9a4d-47a7-b906-25a1936ea8fe", + "id": "c1a4bcb2-c34f-48ce-b360-1780f5d40c47", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -235401,7 +235401,7 @@ }, "response": [ { - "id": "71467a84-dfd4-4d2d-84b6-92329cdfcfbd", + "id": "694dccd8-c779-4db6-a8b3-7e277570f8e9", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -235463,7 +235463,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7a5c9559-0308-4c9a-999f-0e7322ac4d2d", + "id": "fc3422c3-6108-4a8e-90c0-a4b4d8dd6205", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -235525,7 +235525,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f78ae284-bc9c-47ee-9ec9-3bf85e3f2a56", + "id": "d3b95310-e1c6-4ba7-91d6-aaa870ffa35d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -235597,7 +235597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a33add74-08e9-4fd7-8a54-47d49b55683d", + "id": "f8f0c354-2f42-4d4c-9913-a6372d26cbfc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -235681,7 +235681,7 @@ "description": "API for reading tenant details.", "item": [ { - "id": "e6025950-a6a5-4edb-b0a0-188e7706583a", + "id": "13c308d6-4995-4e2a-bafc-51fa6ee657e5", "name": "Get Tenant Information.", "request": { "name": "Get Tenant Information.", @@ -235710,7 +235710,7 @@ }, "response": [ { - "id": "051f298d-34ea-4842-9985-f83da06b62f0", + "id": "d50894ce-5709-4c31-a522-9ed0dd370138", "name": "Tenant Info", "originalRequest": { "url": { @@ -235753,7 +235753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d82c5229-57e0-4521-a8a2-c5cc167d61ac", + "id": "57f093b8-7e9a-4253-8a60-cad6e07876ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -235796,7 +235796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f805be8b-9780-457d-8a7e-fbba94ae5bb8", + "id": "28393dfe-9245-45a2-b8a9-597545e88926", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -235839,7 +235839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "236ab9ec-d220-4860-8e54-cb354dc3516f", + "id": "79f52b5f-44c5-4fd9-87fc-65eb899b3f7b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -235882,7 +235882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb77cb4-ddbd-4a8c-8488-b4eeb16d9e63", + "id": "71879fa5-b896-4636-bc6c-ab309e862573", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -235925,7 +235925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81f2eed6-d317-4b47-931c-807a36ecc20a", + "id": "3d6fce7e-8587-4f72-b36f-5649a4fedd88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -235968,7 +235968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6f3c4e1-7a6f-44be-840d-be22f4395250", + "id": "186a27fc-9c36-4a90-a645-aa96d98021a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -236023,7 +236023,7 @@ "description": "Operations for creating, managing, and deleting transforms.", "item": [ { - "id": "19e2e835-15d7-46bc-8fa6-689a5fb41d05", + "id": "3c693d75-c31c-40b9-a19f-2a50ff7d5af1", "name": "List transforms", "request": { "name": "List transforms", @@ -236098,7 +236098,7 @@ }, "response": [ { - "id": "98bb286f-5101-4674-bbeb-444c8f04e053", + "id": "c3852773-8ef6-4354-9925-2cf903d105b0", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -236187,7 +236187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d798cb-3ecd-428c-9cad-182bc6bff578", + "id": "35d6aefd-5d81-48c8-917a-449cbd10645c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -236276,7 +236276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc8f80cd-23f3-4588-927f-62c8d5694703", + "id": "86185b6c-bec4-4c7e-9c35-4e640b9c748e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -236365,7 +236365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75dd0282-a77e-4427-9075-ccb2b1442fb8", + "id": "e8aa11cb-954b-41f9-9cba-a81a00c08f41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -236454,7 +236454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee732604-e356-4884-8689-8d46bd4e846a", + "id": "6759b52e-3379-490d-88e0-3c3b77653404", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -236543,7 +236543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "171b26dc-ebe1-4583-9795-d6416c256e14", + "id": "5d941eb9-81ca-42a7-8c46-cae136a48825", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -236632,7 +236632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd1b1caf-2bb1-4a17-816c-2de8d3cebab9", + "id": "907b63e5-2931-4dd4-a942-84fad266208e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -236727,7 +236727,7 @@ } }, { - "id": "cf11e0df-df1f-49ad-91db-3fb77834a669", + "id": "d6d061aa-899d-48f6-af40-ade2cfdf2543", "name": "Create transform", "request": { "name": "Create transform", @@ -236769,7 +236769,7 @@ }, "response": [ { - "id": "c1e1d7ee-178b-49ed-8d23-757788c0c651", + "id": "f45eb81a-c958-429a-9bdb-f4965db05334", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -236825,7 +236825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08ca3347-3c1e-4d3f-8291-9d2b8795e0b4", + "id": "9b3ae55e-ae84-476c-a87c-bfb779c61964", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -236881,7 +236881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3524c405-1794-41e4-8f75-7424b3a93118", + "id": "fed85cbd-3c4e-4ecb-8ecd-5f4bf22848ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -236937,7 +236937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9827e46-6872-4219-8be1-cd896e8ebdfd", + "id": "c4112d89-48d9-41ac-82e2-9a3c5c664cf5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -236993,7 +236993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5019d187-1afd-4a3d-819b-7369ac6ebac3", + "id": "6558b19b-5c4a-4969-a1c9-8f72fa873cfc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -237049,7 +237049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cd0e041-fbb1-4ba5-8deb-d6119cb7d320", + "id": "5b4daa41-5c09-48ab-b4ea-09b4c6d9959c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -237105,7 +237105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b705a0-0e9e-4d65-967d-c0d51b99d520", + "id": "a3a0a45e-a98d-4bb1-b34b-9563404d9297", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -237167,7 +237167,7 @@ } }, { - "id": "0e70e338-fcca-492b-888c-43d3d2d278a2", + "id": "dd2b2ea8-9556-4ddf-867b-58363364740c", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -237208,7 +237208,7 @@ }, "response": [ { - "id": "c948c0fd-d0c0-42f0-8073-66d6e93e2cd3", + "id": "694d99b8-e00c-42be-85de-0504e3aac394", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -237252,7 +237252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74626e5c-270f-4726-a61a-5cf28e9e8c2c", + "id": "c51d2aff-4025-416d-80ba-1e4d173d26c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -237296,7 +237296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9588429f-8e0e-4eff-9f04-59bbef293931", + "id": "3f10aee1-eeab-46e2-a0c7-287de25d55d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -237340,7 +237340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d2c6e71-9ae6-46c2-9e75-d448d5ec8d19", + "id": "16335eea-ff29-42d4-b2cd-661fa4a57adf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -237384,7 +237384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d72ede3-2384-4d3b-b465-c432bc114403", + "id": "80e60507-8682-49fe-9b22-916f03d9b6d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -237428,7 +237428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e34223-3824-47c3-9f2c-0c45a5135db4", + "id": "f1d14358-2412-419a-80d2-1959888d6ca1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -237472,7 +237472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eba787e-8f04-4a2c-904b-3378ff399ea6", + "id": "dc251d81-8ef1-42f7-bbe7-193fa67e1523", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -237522,7 +237522,7 @@ } }, { - "id": "331f0ade-ffb7-4f52-bd1a-c2574e7e1c69", + "id": "30fd339a-aa89-44d7-bdae-f3b8f35fb9cc", "name": "Update a transform", "request": { "name": "Update a transform", @@ -237576,7 +237576,7 @@ }, "response": [ { - "id": "4cff4b25-328f-4fea-a90e-ded48ec3fa34", + "id": "b55b7c49-7e08-431e-94dd-6bd7ee9c318d", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -237633,7 +237633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bd3e3f8-b4ae-4b99-9aa3-a2547dbfac0b", + "id": "2bb7dd03-485c-47dd-856b-d229d2f05149", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -237690,7 +237690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "823c0f06-7da6-4b13-9284-62eaa74fe76d", + "id": "d971878d-7df2-4523-986a-9bdf215094a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -237747,7 +237747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1514d3d1-6e04-4d78-92f2-d021a8d95a93", + "id": "14a26927-63f2-4568-877b-7fc712d2487e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -237804,7 +237804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9d20fa5-0593-463c-b66a-91e57fced7a6", + "id": "9d5e5c27-962e-44be-877c-382062dfa4c6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -237861,7 +237861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dee7c642-0adc-4ab4-ab9d-4375bc0cd9e8", + "id": "09e48c32-9c75-43e9-96de-4c7a8cf02761", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -237918,7 +237918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbe98f5f-3084-4fd5-ac8f-2a3d973dea8c", + "id": "774ff0af-d78e-44ca-b9a8-c6281c618848", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -237981,7 +237981,7 @@ } }, { - "id": "3e861520-fe9f-4c8a-8108-bf37f8bb5ea0", + "id": "42103f93-48a5-4c52-b414-a4102689c068", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -238022,7 +238022,7 @@ }, "response": [ { - "id": "ab9cd4e8-ad2b-412b-8705-f898e2ec144b", + "id": "78104521-ea1d-4c37-b413-d81a1eb69058", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -238056,7 +238056,7 @@ "_postman_previewlanguage": "text" }, { - "id": "117033ff-c4ce-4fc2-80e0-71b1a5838e4b", + "id": "cd99bebb-374d-42d6-bf74-c76d910c7ceb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -238100,7 +238100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f534e3d8-b52e-4f3b-aeac-33d737fa6072", + "id": "353d508d-0424-4149-9269-0b88beb36200", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -238144,7 +238144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a261925e-9397-4707-b4ea-3bdd1e326220", + "id": "c0db2916-98e0-473a-97e6-0a66d0f05a7f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -238188,7 +238188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "741fcf40-7de8-45a1-886d-1cb46afd3d2b", + "id": "52209545-9590-4c67-8299-c1f2fc503bad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -238232,7 +238232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc17423c-9755-4008-bdbe-9504d283f119", + "id": "6b223409-5405-457c-b81b-47924190401e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -238276,7 +238276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5f715bd-32f0-44bf-85dc-8cc45fd4520f", + "id": "b3590e91-8602-441f-8539-8a55ff17acf6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -238332,7 +238332,7 @@ "description": "Event Triggers provide real-time updates to changes in Identity Security Cloud so you can take action as soon as an event occurs, rather than poll an API endpoint for updates. Identity Security Cloud provides a user interface within the admin console to create and manage trigger subscriptions. These endpoints allow for programatically creating and managing trigger subscriptions.\n\nThere are two types of event triggers:\n * `FIRE_AND_FORGET`: This trigger type will send a payload to each subscriber without needing a response. Each trigger of this type has a limit of **50 subscriptions**.\n * `REQUEST_RESPONSE`: This trigger type will send a payload to a subscriber and expect a response back. Each trigger of this type may only have **one subscription**.\n\n## Available Event Triggers\nProduction ready event triggers that are available in all tenants.\n\n| Name | ID | Type | Trigger condition |\n|-|-|-|-|\n| [Access Request Dynamic Approval](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-dynamic-approval/) | idn:access-request-dynamic-approver | REQUEST_RESPONSE |After an access request is submitted. Expects the subscriber to respond with the ID of an identity or workgroup to add to the approval workflow. |\n| [Access Request Decision](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-decision/) | idn:access-request-post-approval | FIRE_AND_FORGET | After an access request is approved. |\n| [Access Request Submitted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-submitted/) | idn:access-request-pre-approval | REQUEST_RESPONSE | After an access request is submitted. Expects the subscriber to respond with an approval decision. |\n| [Account Aggregation Completed](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/account-aggregation-completed/) | idn:account-aggregation-completed | FIRE_AND_FORGET | After an account aggregation completed, terminated, failed. |\n| Account Attributes Changed | idn:account-attributes-changed | FIRE_AND_FORGET | After an account aggregation, and one or more account attributes have changed. |\n| Account Correlated | idn:account-correlated | FIRE_AND_FORGET | After an account is added to an identity. |\n| Accounts Collected for Aggregation | idn:aggregation-accounts-collected | FIRE_AND_FORGET | New, changed, and deleted accounts have been gathered during an aggregation and are being processed. |\n| Account Uncorrelated | idn:account-uncorrelated | FIRE_AND_FORGET | After an account is removed from an identity. |\n| Campaign Activated | idn:campaign-activated | FIRE_AND_FORGET | After a campaign is activated. |\n| Campaign Ended | idn:campaign-ended | FIRE_AND_FORGET | After a campaign ends. |\n| Campaign Generated | idn:campaign-generated | FIRE_AND_FORGET | After a campaign finishes generating. |\n| Certification Signed Off | idn:certification-signed-off | FIRE_AND_FORGET | After a certification is signed off by its reviewer. |\n| [Identity Attributes Changed](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/account-aggregation-completed/) | idn:identity-attributes-changed | FIRE_AND_FORGET | After One or more identity attributes changed. |\n| [Identity Created](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/identity-created/) | idn:identity-created | FIRE_AND_FORGET | After an identity is created. |\n| [Provisioning Action Completed](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) | idn:post-provisioning | FIRE_AND_FORGET | After a provisioning action completed on a source. |\n| [Scheduled Search](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/scheduled-search/) | idn:saved-search-complete | FIRE_AND_FORGET | After a scheduled search completed. |\n| [Source Created](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-created/) | idn:source-created | FIRE_AND_FORGET | After a source is created. |\n| [Source Deleted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-deleted/) | idn:source-deleted | FIRE_AND_FORGET | After a source is deleted. |\n| [Source Updated](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-updated/) | idn:source-updated | FIRE_AND_FORGET | After configuration changes have been made to a source. |\n| [VA Cluster Status Change](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/va-cluster-status-change/) | idn:va-cluster-status-change | FIRE_AND_FORGET | After the status of a VA cluster has changed. |\n\n## Early Access Event Triggers\nTriggers that are in-development and not ready for production use. Please contact support to enable these triggers in your tenant.\n\n| Name | ID | Type | Trigger condition |\n|-|-|-|-|\n| [Identity Deleted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/identity-deleted/) | idn:identity-deleted | FIRE_AND_FORGET | After an identity is deleted. |\n| [Source Account Created](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-account-created/) | idn:source-account-created | FIRE_AND_FORGET | After a source account is created. |\n| [Source Account Deleted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-account-deleted/) | idn:source-account-deleted | FIRE_AND_FORGET | After a source account is deleted. |\n| [Source Account Updated](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-account-updated/) | idn:source-account-updated | FIRE_AND_FORGET | After a source account is changed. |\n", "item": [ { - "id": "b832171d-9cb6-4344-95cb-21b81b58eff3", + "id": "9ee890d7-619b-44fa-969e-56332f5863f0", "name": "List Triggers", "request": { "name": "List Triggers", @@ -238407,7 +238407,7 @@ }, "response": [ { - "id": "83a06664-2871-410c-8e50-270482e2b851", + "id": "511f9059-087c-4703-9a1f-1889293da770", "name": "List of triggers.", "originalRequest": { "url": { @@ -238496,7 +238496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c22cce6-3507-4927-b1ea-1c660d27839c", + "id": "9d28ff85-88f2-4e74-9997-fad605860661", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -238585,7 +238585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "210cbf7a-bebe-4ace-90c0-48c5d2a2d1a5", + "id": "b0100bfa-320b-4987-8dca-0cb5e13068d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -238674,7 +238674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb31ae8f-052f-4c44-9e85-b1955f5c117b", + "id": "f87b3f61-4645-4986-aab7-ee52319e1546", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -238763,7 +238763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2651ec2-a435-458b-8def-1dde7c6020df", + "id": "a81ec2cd-3dba-4d05-9acb-c25e2e3ccd45", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -238852,7 +238852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b845fe-7980-447a-ab16-959a1c75588f", + "id": "556942f6-0dde-4e40-aff3-60791ac0df2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -238947,7 +238947,7 @@ } }, { - "id": "a80def98-f01f-42b9-b5d6-578985243bfb", + "id": "ce29e81a-086f-4066-86ab-6427ed81f3db", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -238989,7 +238989,7 @@ }, "response": [ { - "id": "6b4cb329-1de2-4fc4-a4ba-5a2c6c574fca", + "id": "6b842747-363d-4002-bcf8-c9549a8e2a0a", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -239045,7 +239045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dbcb40d-52e7-4b36-9ddf-110d0c7a1f92", + "id": "615d15cf-7f29-45d2-aaeb-2625d5571938", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -239101,7 +239101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19df0ae1-f11e-46bf-bb97-2b65915267f2", + "id": "4c621aa4-cc9b-456c-8a32-6f3606363ccd", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -239157,7 +239157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95fce0db-3832-48c4-95de-96e1ebbb5f6c", + "id": "114b2e61-d7ed-4817-865c-2c17a18d6a31", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -239213,7 +239213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5a1b2c6-1454-462d-9dee-56849a92762a", + "id": "dd486b08-e43e-4e95-ba91-c36a53873126", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -239269,7 +239269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6df7c468-30c0-4a5d-82ed-1ea32b1018c3", + "id": "b3182438-bbfd-4074-9160-65074fdb46ea", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -239325,7 +239325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd732e0-a302-4ba7-b345-7b0c92adb0ce", + "id": "df4c1bd6-6dbc-428b-9eaa-c77c72f851d8", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -239381,7 +239381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5db5ed6c-cc69-4826-9516-004062c27cb4", + "id": "350f25ea-e5f4-4ae9-9c5b-f9cc4f2a7db8", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -239437,7 +239437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc8272e-919f-4711-a2b0-d996c0e8c48e", + "id": "b60f11ee-5909-4cf4-8db7-a771d8ff4be7", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -239493,7 +239493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98def3bd-8e6b-4d9e-bc29-c50120210d5d", + "id": "5dafc8bf-20d1-4b27-b0ed-9a9b21a96b21", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -239549,7 +239549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a67b87-bcb4-45f8-876e-ef13f7d9711e", + "id": "267654ee-ded8-4e85-897e-6f078d396439", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -239605,7 +239605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8caf183d-2ce2-43d6-b4b6-9efc45078314", + "id": "900c8b29-f4b6-4a4a-9247-094f649d69b6", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -239661,7 +239661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4716461-000c-42c6-a201-50cb6cde39a5", + "id": "a1fc8dc4-10bc-4bf2-b643-84dbb8deb499", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -239717,7 +239717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "469952a2-1937-43c8-a16c-ef38142cc30a", + "id": "367d7c7d-ec79-4091-a376-39268ee2b4b1", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -239773,7 +239773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fff5a66-6e08-41c8-a2ff-0da119486911", + "id": "a6f607fb-30bf-4c21-9587-3d0f0a23b966", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -239829,7 +239829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0baf247-a3d8-4754-9c55-5a639dedc7c4", + "id": "739faca8-cea8-49f5-8cad-930625073e8c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -239885,7 +239885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ee08222-ac85-46ea-8da8-84d38f98b9cd", + "id": "88536eed-7c0a-42ca-b337-17f655b3770a", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -239941,7 +239941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d6bcfb0-0b6e-4190-b5e0-a572c90c2a4a", + "id": "c34c3bfd-5976-442e-9d5f-cec2403d6366", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -240003,7 +240003,7 @@ } }, { - "id": "3cbb23a9-e4a0-4765-af39-1d35c79b6595", + "id": "8cb2e9b0-6e22-4ea3-94a8-2a39ca961dca", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -240078,7 +240078,7 @@ }, "response": [ { - "id": "16c3c08d-da26-42e7-a933-a8d0378a6de8", + "id": "2db52b19-ff3c-4c9c-991b-7091c185ccde", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -240167,7 +240167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b49a3588-1b56-44c3-9965-e3d076cb2c96", + "id": "9e16b76e-3aef-42d6-bafa-8340e7005c36", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -240256,7 +240256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2222e8f-8ffc-4298-8dec-591e1aed1c5e", + "id": "3a6fcc2d-e7e4-42a3-9d5e-96d95d5a9565", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -240345,7 +240345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14b7762a-e5a4-4a15-80e9-645168157621", + "id": "722ae440-4ba4-494a-b1ad-6506bc40d7af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -240434,7 +240434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f646d37a-0c67-4abf-b02b-ec55ac58deec", + "id": "5bd39001-4436-40c3-bba5-4863da126cc4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -240523,7 +240523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ad212b-6191-4aba-a6af-eb428f3cf870", + "id": "aa746d8d-c0fa-451c-9f6c-b6a9f0b871bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -240612,7 +240612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6722e03a-79f2-436b-895c-f75b64c65696", + "id": "02289012-8154-4682-b337-005212b882af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -240701,7 +240701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c41b8bb-1bc0-44b0-a086-a7edea1463d5", + "id": "4954f40a-cc76-444b-90a4-db885e031bc7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -240796,7 +240796,7 @@ } }, { - "id": "ec34d6ef-79ef-468b-98a5-0b6f11ecb637", + "id": "3cd673ce-37dd-4c60-ae21-557dc3387f54", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -240850,7 +240850,7 @@ }, "response": [ { - "id": "bc0af70b-91ac-4b56-8800-4da0f135a66b", + "id": "f16e7799-016e-4be0-86b6-d294bd499763", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -240907,7 +240907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e8ffa34-4137-40a2-be7c-cf92db86994c", + "id": "3fe93865-500f-4ce8-bc94-6b94c0355920", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -240964,7 +240964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cd7d1fb-355b-4116-aa2c-c8357e64ab1f", + "id": "f00c7ac3-17d8-4339-9205-1110e32ede6d", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -241021,7 +241021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41ceb23e-735f-40ed-afda-0253dea1584f", + "id": "edfc9260-2b8d-4164-8787-0d48e28cf4de", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -241078,7 +241078,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0c3049-3eb3-4bf2-bd6d-652a54cfffb7", + "id": "b189bcfd-a45f-4363-93c4-d4699c29f95d", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -241135,7 +241135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ef81bc0-9399-4a39-ae7d-199399972a23", + "id": "b8970048-7fcd-4942-b217-13b7aae85215", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -241192,7 +241192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "768b41f7-3bf6-4be5-b839-2e8bca71ac5a", + "id": "c3ada32f-91e7-4323-92e0-66985451d227", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -241249,7 +241249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd2caa8f-de6d-43d7-95d8-72c59a7e7824", + "id": "7067b8e5-e610-4297-be3a-9c5b3128b29b", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -241306,7 +241306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff4da5d4-b62c-4702-8142-be032bf35fc3", + "id": "4ee0bf89-0b55-4672-9c51-4ed2633b9afe", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -241363,7 +241363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e08666b-5d27-46cd-8ace-3e3eab0602b2", + "id": "db0f2804-f705-4c66-b6cd-7d9e4c47f233", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -241420,7 +241420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "474c1e34-fd3c-4965-904e-2709bc64e148", + "id": "03dff02f-4ac1-4a20-93ea-8e8234c66436", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -241477,7 +241477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dec7155-da8a-4c05-aa1c-81048464dc90", + "id": "07b6e25d-6ab1-4d91-be61-120d0956ded8", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -241534,7 +241534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f6ab04-cfcf-499d-8107-380bb3f9dcd7", + "id": "746c7e8a-d836-4df3-994a-45edc8ff0198", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -241591,7 +241591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91b6bfb6-5357-4901-8dd4-3a99eb526e36", + "id": "ae1969ce-bcbf-4686-a7d6-3ab6802419b4", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -241648,7 +241648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a50cfa6-87df-4154-82bb-2f78d622edc6", + "id": "2c06906a-9f5a-49c1-a290-4d54ee282bd5", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -241705,7 +241705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "232761d3-e73a-468a-991a-4880c06c5235", + "id": "5abea642-a079-4e38-abae-589ac58a7771", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -241762,7 +241762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80100516-650b-4e59-9eae-69e9e5ca4cd9", + "id": "5743f9db-620e-48a8-a928-e3f139f79271", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -241819,7 +241819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c7e3537-6e05-4515-9dc1-28506acddb25", + "id": "9faa1f97-6479-44c9-8d8f-9f3632f417fa", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -241876,7 +241876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9579d452-9683-477d-bbb0-cef443201f71", + "id": "505800e6-11f7-4502-9b37-7a1339e05c2f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -241933,7 +241933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4450a512-acb3-491d-abce-9499a2a7e3c2", + "id": "d05e00a0-0ee2-4d96-9af8-7285f73860e7", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -241990,7 +241990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cf669e5-7cb1-4c6b-a322-455115dfd482", + "id": "b3c9ae01-321d-4fcd-81d1-6b8a6d59a1e2", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -242053,7 +242053,7 @@ } }, { - "id": "14aebb8b-cc01-46e4-bd62-a1f9d40d1cef", + "id": "ebb67e69-3ae5-4347-abb3-ec8d853fddcc", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -242107,7 +242107,7 @@ }, "response": [ { - "id": "26c36e1a-9187-4275-bad2-8662a3725bbd", + "id": "82dd892e-d354-4c8f-835f-68b22ebb2be6", "name": "Updated subscription.", "originalRequest": { "url": { @@ -242164,7 +242164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89bfac66-99b9-479d-a2e1-07f05494fe8d", + "id": "ad103dff-e09b-4ed3-bd47-0886345e2ead", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -242221,7 +242221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0827700d-7b9f-40ba-b30e-11cdab7e7a54", + "id": "469c3005-364d-476d-b94c-48f086106c97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -242278,7 +242278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b079d9ef-45a2-402d-b109-7fd00cf57cc4", + "id": "b48ce38d-ffb9-403e-818a-b710048d0420", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -242335,7 +242335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6663a80b-a16e-4da2-a48d-65b1f9133ae9", + "id": "07b6cb63-ed46-4498-83e2-4f99ca28d3b0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -242392,7 +242392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "824c7ac0-6ba4-4005-8054-7720cb89bb03", + "id": "d56fcaea-7010-4105-8905-b28558c011e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -242449,7 +242449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98ee44e9-98d2-4901-ba36-3d1542efa901", + "id": "4aeb239b-9cf4-4792-a4d1-2bb1c6cad30d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -242512,7 +242512,7 @@ } }, { - "id": "0993360e-2af5-4fff-a7c0-59b233288e34", + "id": "9bf04983-3774-4d19-943a-c7ff0f083fa3", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -242553,7 +242553,7 @@ }, "response": [ { - "id": "4f0b95aa-08b4-42f0-a83e-a93333a5cb3c", + "id": "a75da71c-5645-4e3c-911b-b999fbd0411d", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -242587,7 +242587,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5b1e67c8-e612-4cd9-9bd2-796741fbc3c9", + "id": "75799aab-dcc4-49df-820e-7d8eae91d973", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -242631,7 +242631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab476a3b-2b81-4f3e-a479-c8b51c3e77e9", + "id": "2dd4ae72-1ba0-484c-9840-9af2473d8f37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -242675,7 +242675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07affee8-6da3-499b-9d54-cd9e00077876", + "id": "7967a728-7829-44cf-8907-cd5990ec4fed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -242719,7 +242719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4a839ba-226f-4d0d-bac6-5e708ce698f0", + "id": "db403cd1-7af3-48a5-8064-61445a8996f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -242763,7 +242763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "513b990f-fd93-4bf6-a3a9-a4fb02cdb27c", + "id": "671e8123-cfbf-4fbb-81f2-576d010457da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -242807,7 +242807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0440fe9-37e6-436e-88e6-2f197a90595f", + "id": "ad66d8e9-03da-4412-8858-e3404da24bfb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -242857,7 +242857,7 @@ } }, { - "id": "2891aafe-57f5-4f66-9ac0-1e199f491b62", + "id": "965a03d9-bee7-4634-a66e-31f4bdb6a8b1", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -242900,7 +242900,7 @@ }, "response": [ { - "id": "97a193b6-3377-4339-bae1-603968203cc3", + "id": "ac01da84-406a-4c9d-99b8-fe3680a4f997", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -242957,7 +242957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f970150-976d-4962-b2cb-602ff01b24a1", + "id": "b28a0d9a-8e2f-49e3-9bd7-cb860b6409a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -243014,7 +243014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "405c6013-e33c-4ebf-9f6b-e6d28b5b8bfc", + "id": "e579fc4a-93f8-4779-a00e-4923c7def174", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -243071,7 +243071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbab0420-2785-40aa-ae4d-e515dfa61b59", + "id": "75898fad-54a1-46fe-bde6-6b030f838178", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -243128,7 +243128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bda71b0-50c2-496f-b077-a710bd5680fc", + "id": "b7a81cdc-31ef-4e9a-b222-f2995258f504", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -243185,7 +243185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e95bb6d-a5d1-4185-88cb-aa2985e31fd6", + "id": "69f1cc27-401f-4917-9ab0-631b7df87fae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -243248,7 +243248,7 @@ } }, { - "id": "5a96a34d-0339-474d-ab7f-ca2d0dc8bbcf", + "id": "9be49bb1-a421-4761-9643-cf2389ea1f88", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -243324,7 +243324,7 @@ }, "response": [ { - "id": "c3810ee0-9439-420e-ad64-63cc31e46f99", + "id": "aad4c58e-4e70-422c-b075-89b17a6080fb", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -243414,7 +243414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e99d110-345b-4bbe-89fd-8e18960fe3c6", + "id": "8793f827-9331-42b0-8506-dc1cb8c64666", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -243504,7 +243504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a5965f7-159f-4bf0-ad85-4990a05e3901", + "id": "47c75a50-d66f-4bcb-b24a-b0d3ead78a69", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -243594,7 +243594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6632e0fd-d714-4749-8b27-ff76145aee2c", + "id": "359bdcd3-2e67-425a-afe6-805c132fb73b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -243684,7 +243684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "233757c2-88ec-4a7d-8302-69fc868cafaf", + "id": "8f30ebab-4338-475d-a937-00d0a1d4a3cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -243774,7 +243774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e969686b-47b9-458b-b07b-12503d7777c7", + "id": "07bad7b7-c29f-47ce-aaee-ce6f45b6e7c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -243870,7 +243870,7 @@ } }, { - "id": "cdb7697b-d01f-40cd-9d27-b56da78c5904", + "id": "fffca8f4-ecb1-465a-8223-25972cd3e412", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -243925,7 +243925,7 @@ }, "response": [ { - "id": "8b25e70c-2c8c-4cd2-862f-fd0bfe1cfc5f", + "id": "754c834b-0985-488f-a839-feec4c5aa298", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -243973,7 +243973,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0113a330-9b9c-4cd8-93cf-0f14af80e791", + "id": "5bb7dc3a-83d4-46c3-be3f-28c93c5d0a3f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -244031,7 +244031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9d44b13-9fec-400d-82e2-904e5110fb66", + "id": "344c0842-114d-4508-ad0f-52f4d5ca92c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -244089,7 +244089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5918e5ca-985f-46fb-8f6d-aa490ab9cc1c", + "id": "585abc16-9815-4711-b590-35c245fcc78f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -244147,7 +244147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de008f17-ff24-4cf7-9094-d5e89da20a32", + "id": "335dd7b2-aa36-4fa8-8f85-96cb339591ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -244205,7 +244205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e7b218-20c4-4a74-a397-88fc818c6c5f", + "id": "9bf7f83b-cbd4-4d83-a53e-d55abd0d97ab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -244269,7 +244269,7 @@ } }, { - "id": "1c4da1a1-a01a-43dc-b708-86a556f969d9", + "id": "0abee7c6-9dfc-42c1-9fd9-d3098294e199", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -244312,7 +244312,7 @@ }, "response": [ { - "id": "1a9f0016-244c-46fc-9642-364e014bd706", + "id": "ecad8315-f51e-4f78-9817-c6ffecade98e", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -244369,7 +244369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ead93fe-29b5-4fe9-be10-49bb5717db31", + "id": "efbd8c52-7f73-48a9-b4b9-6cee0f94f719", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -244426,7 +244426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f95e99-4c0b-4c45-8df5-48905c746777", + "id": "59a5ef83-ee0a-41ab-a50d-fde4c37da587", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -244473,7 +244473,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fb8b7374-e2eb-42b8-b8ac-e5832ee711db", + "id": "4798f64e-3449-4289-b9ff-cefe8726868f", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -244530,7 +244530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32b65a83-9aa6-4f4c-8e88-6b53e5e8e8c8", + "id": "e3a3104e-279b-4301-9aea-35e3eb576cfa", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -244587,7 +244587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbe47ce1-308d-41e6-99af-8007a5557bf6", + "id": "1c86aa42-26b5-4b63-abc8-0ec2ecb2338b", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -244644,7 +244644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ace1c89-ab6a-4aad-a5e2-1a58f558351a", + "id": "586e76bc-b355-4b20-bf0b-fed01b36cafd", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -244701,7 +244701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b42c4661-b07f-4338-8882-2b3843507764", + "id": "f8b0e188-2e60-402a-a844-855a79018fa3", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -244758,7 +244758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a750817-5926-45a8-95cf-e7f2f1590d20", + "id": "969a6617-46d2-49d4-a1f3-2f982794e916", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -244815,7 +244815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c9498dd-df4b-4abe-86aa-7ccc98aa1902", + "id": "a61d81ab-b9d6-4f67-bd50-5fb4a39738ac", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -244872,7 +244872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6305790a-0ef3-4db1-a23e-854882e9b6da", + "id": "1e7937f0-c9a9-42ec-81b6-ce075271bfdd", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -244929,7 +244929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5589708-f472-4cd8-a766-5555d152bc43", + "id": "ea7bd73d-4a95-4ffd-b51f-3e21f8fcc08d", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -244986,7 +244986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab9e3bc6-c502-4af3-ad30-6e1d60913909", + "id": "2554b13c-2c71-448b-9fdc-4693212d360e", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -245055,7 +245055,7 @@ "description": "API for managing UI Metadata. Use this API to manage metadata about your User Interface.\nFor example you can set the iFrameWhitelist parameter to permit another domain to encapsulate IDN within an iframe or set the usernameEmptyText to change the placeholder text for Username on your tenant's login screen.", "item": [ { - "id": "1b7457fb-f2ba-476c-842d-fbb8316b128d", + "id": "bdf38467-f106-4eb4-8a16-83c58b108e77", "name": "Get a tenant UI metadata", "request": { "name": "Get a tenant UI metadata", @@ -245085,7 +245085,7 @@ }, "response": [ { - "id": "e1cc0397-2464-4c9f-9fa1-7b562060c23b", + "id": "33c1470c-5bf3-4185-93cc-96d279a67ead", "name": "A tenant UI metadata object", "originalRequest": { "url": { @@ -245129,7 +245129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6325b6fa-89eb-4888-8f89-500e57e7ca5e", + "id": "a57d7a4d-577d-449b-973e-da1872c8259b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -245173,7 +245173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e07dff-d3e3-45d6-bdae-d2cea3bd5cfe", + "id": "e27d2d6d-0d01-473e-b484-889893fc2bcd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -245217,7 +245217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ce85a12-c6d4-4430-a944-d44f0843a273", + "id": "2f818e34-54de-4cea-8ea5-a66af5481c9e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -245261,7 +245261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd759da9-dd82-45af-9dd7-4b70f200ea1e", + "id": "cf587da3-3308-4b13-9959-55b03b17ab5d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -245305,7 +245305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51e4bd29-1920-4b50-8e86-e5f6b04b08bb", + "id": "63cfea2f-a184-4df7-abd9-96899e7d55b9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -245349,7 +245349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a633d0be-3bc7-49e4-9a20-4f9e1954a8b8", + "id": "a5c327d2-7215-439c-ba42-356cab383b4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -245399,7 +245399,7 @@ } }, { - "id": "d11a118c-7367-480f-9483-00a4609fc8b6", + "id": "a2ff6d5f-1b51-4112-a035-ee17dfb17b47", "name": "Update tenant UI metadata", "request": { "name": "Update tenant UI metadata", @@ -245442,7 +245442,7 @@ }, "response": [ { - "id": "599cd508-bd94-40d6-8617-3237afe7cd3c", + "id": "4c568e81-6eae-48d3-bfaa-02930c99c2f5", "name": "A tenant UI metadata object", "originalRequest": { "url": { @@ -245499,7 +245499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41e8124b-7dc1-4335-8669-06cd44418167", + "id": "d668a9d2-56f0-47d1-8440-c96969133269", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -245556,7 +245556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587b10e6-95c3-4c78-bdf7-bc45eeb8acd5", + "id": "abe30831-b2e4-40f1-a4c5-5500ae1333b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -245613,7 +245613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80764ab7-49a3-40fe-9100-ba163a57cf83", + "id": "7f5f770b-582e-4468-a390-062264daf034", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -245670,7 +245670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39da7aa9-2f01-4784-a01b-f11c691494a9", + "id": "4b46a504-3628-4867-8f19-ba7c407bf01f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -245727,7 +245727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "567dad3c-5b12-4c20-84af-d590350f3df0", + "id": "685e7929-5103-4d64-9cfe-1233872a0ddb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -245784,7 +245784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a4a5e77-ab05-4b0c-b574-b0920ac3b4fd", + "id": "d8698f67-90e8-4f0a-ae48-88234f21049c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -245853,7 +245853,7 @@ "description": "Vendors use ISC connectors to connect their source data to ISC, but the data in their source and the data in ISC may be stored in different formats. \nConnector mappings allow vendors to match their data on both sides of the connection. \nThe vendors can then track and manage access across their sources from ISC. \nThis API allows you to create and manage these vendor connector mappings.\n", "item": [ { - "id": "5bfae1a5-96b3-4003-9baa-ea21b1015fb9", + "id": "04d861c3-cdee-4da2-a451-d0df1093fe39", "name": "List Vendor Connector Mappings", "request": { "name": "List Vendor Connector Mappings", @@ -245882,7 +245882,7 @@ }, "response": [ { - "id": "69649121-c329-4447-aeab-fd4412034358", + "id": "84e6da50-cbe3-412a-a641-71f9c33e2f62", "name": "Successfully retrieved list.", "originalRequest": { "url": { @@ -245925,7 +245925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ba6967d-58fe-494b-be92-96f8d5d4a79e", + "id": "0246100b-5632-4dde-9962-2a360fefc4ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -245968,7 +245968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c7e1110-956b-41be-922b-d76956309777", + "id": "00af4858-c248-49dd-b889-50d8836be1cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -246011,7 +246011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "218756f6-4b14-4b47-a7bb-f43832c7cf6a", + "id": "759cd407-a7e8-41e4-ba93-677e09bf4b64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -246054,7 +246054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "586c14e4-dd9f-4293-bfcb-da9716ff0ca5", + "id": "1cee19e0-b62c-48fe-8873-d52ab202047a", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -246097,7 +246097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0932d8e1-fc42-43e8-abb0-d2bb8c8bf148", + "id": "192dc3c7-ae1f-48a0-bccb-f91445687973", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -246140,7 +246140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "958dae71-18dc-4241-a7a3-379c75318972", + "id": "6843c0ac-3bc6-4a60-b34c-70d960181f3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -246189,7 +246189,7 @@ } }, { - "id": "f31a9df0-ebd8-4991-bc8b-4d2e8cab8c93", + "id": "d6b8e1b2-fae8-4a1a-8fcd-20385b5edb62", "name": "Create Vendor Connector Mapping", "request": { "name": "Create Vendor Connector Mapping", @@ -246231,7 +246231,7 @@ }, "response": [ { - "id": "af3d6300-fdd6-4c27-a36f-73c8470d53b9", + "id": "ec05a0a3-e59d-4772-8554-10d1c9808d62", "name": "Successfully created a new vendor connector mapping.", "originalRequest": { "url": { @@ -246287,7 +246287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672c0609-bca7-4d23-9c13-9a235a77e250", + "id": "fd82df43-1fec-468c-9e1e-37cc67cb27c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -246343,7 +246343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba0abe31-5c18-4f89-b2d2-b2200c3af675", + "id": "10d68158-65cb-4687-bf38-027310b83cbd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -246399,7 +246399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e62706a9-fecc-4f0c-833c-9ad508c9c5bf", + "id": "3d69ae45-364c-443d-9118-8bacc3d594de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -246455,7 +246455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ea3e3f-3f6f-4d54-8b65-3afc92e9acec", + "id": "3549b9d1-0cd0-4570-b753-76b820156b65", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -246511,7 +246511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "534be711-4a53-451f-99fb-81ead18dad08", + "id": "d0a92d21-e714-447a-a6bb-8227aaaf8e25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -246567,7 +246567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1139086-cadc-4bd5-94df-60add429619f", + "id": "a86da558-5edf-4a6c-9f3b-b01091bacdcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -246629,7 +246629,7 @@ } }, { - "id": "86bee691-ec24-48e0-b005-416ec1d60b26", + "id": "fe743299-6c2d-4ed0-9e5d-512492ba16df", "name": "Delete Vendor Connector Mapping", "request": { "name": "Delete Vendor Connector Mapping", @@ -246671,7 +246671,7 @@ }, "response": [ { - "id": "84b5967a-1588-4495-81e3-8571e08105b0", + "id": "01952604-0e53-4b59-989f-2c4884688189", "name": "Successfully deleted the specified vendor connector mapping.", "originalRequest": { "url": { @@ -246727,7 +246727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4743948-973b-49e9-a140-ee915db3b784", + "id": "70ac4b46-62d1-4778-ab3e-3f78ab591e34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -246783,7 +246783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab27d2e-269f-434b-97b1-5308e3ed8598", + "id": "242b46d7-e882-4f9c-afa2-493dc921d876", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -246839,7 +246839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8ad54b0-c80f-42b9-a3e9-6208e780eb0a", + "id": "b6118af6-dcff-4c0a-933e-1a758542e168", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -246895,7 +246895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c1f024-a4a7-48c8-9c1f-1f32a9de9a85", + "id": "7b94008b-d7e8-4dd1-9db2-6453ba394d2e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -246951,7 +246951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8745bb10-d61a-4d75-a576-cba00ac38d61", + "id": "74ac9554-4381-4a67-9844-5fab19b1a8ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -247007,7 +247007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ffd824a-d81f-4ea6-bcfc-6d5629594eb3", + "id": "21fe7595-399e-4da7-a56f-1ac1c7863859", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -247075,7 +247075,7 @@ "description": "Use this API to implement work item functionality.\nWith this functionality in place, users can manage their work items (tasks).\n\nWork items refer to the tasks users see in Identity Security Cloud's Task Manager.\nThey can see the pending work items they need to complete, as well as the work items they have already completed.\nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created.\nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp.\nOnce the user completes the work item, the work item will be listed with his or her other completed work items.\n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget.\nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details.\nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items.\n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n", "item": [ { - "id": "f7a75bfa-c9c9-4a1c-b7ff-06561c4f2121", + "id": "be205177-07db-444c-b710-b02e5e5e8a27", "name": "List Work Items", "request": { "name": "List Work Items", @@ -247125,7 +247125,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247141,7 +247141,7 @@ }, "response": [ { - "id": "82aff7d1-699a-43de-8d0c-d3917cc99629", + "id": "2109aa0f-9137-4bdb-b0d6-3badca775e9f", "name": "List of work items", "originalRequest": { "url": { @@ -247186,7 +247186,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247221,7 +247221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1477e9a-5e19-460e-9968-edb4b991d4b3", + "id": "4d7bdbc3-2f9b-4ffe-91f8-9e364efc8dac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -247266,7 +247266,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247301,7 +247301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5cf7016-933b-4104-aaf3-b2f7839f4824", + "id": "26310664-4d38-499e-9364-23db1057ca4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -247346,7 +247346,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247381,7 +247381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46067ad4-c1e1-4a0a-ae74-d4825b5a4fc2", + "id": "69d7d239-129a-4527-92f0-076603da4fe5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -247426,7 +247426,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247467,7 +247467,7 @@ } }, { - "id": "c5475ef9-ba2f-453c-9984-fc0cb589fa95", + "id": "8acd6e9b-fc7b-461c-96e2-0b566f83509e", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -247491,7 +247491,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -247534,7 +247534,7 @@ }, "response": [ { - "id": "c2ee05be-9a4c-4a01-9ded-b238d25211cb", + "id": "1b18125d-bca8-4fff-b641-98d1ff0e7294", "name": "List of completed work items.", "originalRequest": { "url": { @@ -247553,7 +247553,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -247615,7 +247615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cb4343d-d5cf-4dc2-9305-2ad1938e3893", + "id": "7b32582d-4462-4946-a30b-7bd6ac9e2390", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -247634,7 +247634,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -247696,7 +247696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3203a545-bdeb-4c64-8562-59d8900c367e", + "id": "92525b9f-0689-4fbe-8e46-d94de8bc184b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -247715,7 +247715,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -247777,7 +247777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9200fc7-affb-4e22-81bf-076c80f57e9e", + "id": "af786809-96c9-422e-87aa-9708d4cd270c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -247796,7 +247796,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" }, { "disabled": true, @@ -247864,7 +247864,7 @@ } }, { - "id": "bf5396d1-9648-4138-a8b3-c23bc030c690", + "id": "dfcc6933-7b38-43c7-b457-5fe3958ef532", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -247888,7 +247888,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247904,7 +247904,7 @@ }, "response": [ { - "id": "1ef051ab-625d-4645-ba7a-b15c996d17f0", + "id": "7fd9edf9-b654-4b90-ab36-e4a8a2691105", "name": "List of work items", "originalRequest": { "url": { @@ -247923,7 +247923,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -247958,7 +247958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52971c82-664d-47a0-ba96-51a528636b73", + "id": "1c6a9bc3-745d-4667-97e9-79fe1b89eee6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -247977,7 +247977,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248012,7 +248012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bf7040c-e084-4864-9dc0-fccb5953acda", + "id": "37e7bcc1-0668-4479-85d9-5065e32b91f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -248031,7 +248031,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248066,7 +248066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fcc675c-72b3-472b-a461-9f170168dfd9", + "id": "562f92e0-fe03-44a3-8195-19c15a05081b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -248085,7 +248085,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248126,7 +248126,7 @@ } }, { - "id": "a1b8ced2-968c-4e29-b400-d03ed4c55762", + "id": "20c712e7-b327-4d96-8616-7a716ba4007f", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -248151,7 +248151,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248167,7 +248167,7 @@ }, "response": [ { - "id": "409555a0-443d-4507-a3b5-9d94473f8dfe", + "id": "a004d607-1cef-41c8-8447-e8ca128b1a69", "name": "List of work items", "originalRequest": { "url": { @@ -248187,7 +248187,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248222,7 +248222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381de2b7-96a3-49e3-b1e8-eb5edb7e8d4f", + "id": "c2b30df4-21a0-4cb7-89d6-c578f3cc23cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -248242,7 +248242,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248277,7 +248277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f4b7d70-759f-46eb-a3ff-9468767766b4", + "id": "68594f77-d026-435a-aaf8-321dc05ef64c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -248297,7 +248297,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248332,7 +248332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcc1e040-a66c-4ee2-a4ea-ab9ac847d1b1", + "id": "97a2c775-3803-4bf0-a798-40069d4451ee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -248352,7 +248352,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248393,7 +248393,7 @@ } }, { - "id": "5cd9e5c7-a35c-4b65-8961-e59bc9b98a43", + "id": "36ee6b6b-0a8f-4cfa-bda4-9c9184fd5f89", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -248417,7 +248417,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248433,7 +248433,7 @@ }, "response": [ { - "id": "e19202d3-437c-48b1-b101-2bec0b6e5bdd", + "id": "ae892ce6-0312-4ab0-a0cd-f693c2f6683c", "name": "List of work items", "originalRequest": { "url": { @@ -248452,7 +248452,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248487,7 +248487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ece7bd79-b2b7-4642-b237-11d32efa8c2e", + "id": "ad762ab7-2cfe-4c9b-9906-474008c71c06", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -248506,7 +248506,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248541,7 +248541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb360ba6-6037-4b21-8df3-d7043fa9e2db", + "id": "8ddfbc88-d737-45ff-81fe-5de9937ccf49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -248560,7 +248560,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248595,7 +248595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f30043be-2e32-4bcf-8673-17df8c6db707", + "id": "a6d51e4a-c128-439d-9df9-ace81ae7f9d8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -248614,7 +248614,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248655,7 +248655,7 @@ } }, { - "id": "8841acdf-df4a-4f43-9263-55a886cb5f87", + "id": "f6ae6afe-d524-42d9-a166-48d27c93f1ac", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -248679,13 +248679,13 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [ { "type": "any", - "value": "nisi", + "value": "aute magna Lorem sint", "key": "id", "disabled": true, "description": { @@ -248706,7 +248706,7 @@ }, "response": [ { - "id": "c1afd432-6071-4040-8dda-4ae63ed743f9", + "id": "964c3c04-4835-4904-b35c-18f06ffa7dac", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -248725,7 +248725,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248760,7 +248760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "716cc311-6b73-469a-a0d7-5e2493a0cced", + "id": "326ddf72-b211-4947-b2e5-cdf8fca4202c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -248779,7 +248779,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248814,7 +248814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09a747d-f1f3-4c03-bd35-e0186b584859", + "id": "9d5882f6-a877-4ade-ae2f-2a4736f0de91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -248833,7 +248833,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248868,7 +248868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d57c58e-78d6-4cd1-8605-c004b1cacde4", + "id": "f7c7e5bf-c1d7-4e88-b888-10984c2d42f2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -248887,7 +248887,7 @@ "type": "text/plain" }, "key": "ownerId", - "value": "nisi" + "value": "aute magna Lorem sint" } ], "variable": [] @@ -248928,7 +248928,7 @@ } }, { - "id": "03670737-faeb-466f-bb89-752e1ca999e0", + "id": "84a6faa6-9045-41c4-9bc4-6242c5e7bc57", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -248969,7 +248969,7 @@ }, "response": [ { - "id": "9a72e712-cd53-4a76-9378-9257802f0353", + "id": "e3c54075-8898-42de-9352-d01b8331f123", "name": "A WorkItems object", "originalRequest": { "url": { @@ -249013,7 +249013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7fb1baa-8b10-4542-a443-7436da008df3", + "id": "20de43aa-f84c-4222-b452-d401e83f3bb0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -249057,7 +249057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da4d7c24-6e40-43fd-bb39-65615d011740", + "id": "316368c4-e2d2-40f5-9f0d-667250db3b19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -249101,7 +249101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e3c2e46-f18f-4bcf-90ca-208c438ae733", + "id": "169b328e-9966-4dd7-9c5b-555321862be1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -249151,7 +249151,7 @@ } }, { - "id": "3033dc1f-0f7a-4967-81b4-3d0e9f38bbcf", + "id": "1bc0ea48-c7f3-4fca-9757-4debe21b9a8e", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -249206,7 +249206,7 @@ }, "response": [ { - "id": "b3e153d4-9102-4f06-99dc-088cd9714222", + "id": "2c7d911a-579f-4a58-a726-d5698e783504", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -249254,7 +249254,7 @@ "_postman_previewlanguage": "text" }, { - "id": "eb91c8b1-0e18-41c8-8962-38d7859d7efd", + "id": "880d98cb-a36a-4c0f-9065-799b98c81837", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -249312,7 +249312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ba0eb41-bbd1-4a8f-8f11-d4f6074803c2", + "id": "a355dcc3-ff22-43ba-b770-107fa829050c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -249370,7 +249370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e5e5728-6540-438d-bd29-4a2095046454", + "id": "d4a16b8a-219e-4f70-9105-0c06792bc98b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -249428,7 +249428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ba66362-6d01-4125-b8f5-14ffa9a1b056", + "id": "26c93e5b-8fee-4ec6-9789-e660185b48b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -249486,7 +249486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f8fecbc-38ab-488e-bd48-ffa431452102", + "id": "0d4785e6-aca2-4270-a183-0475161c57f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -249550,7 +249550,7 @@ } }, { - "id": "388215f6-2a84-45e4-8b18-576a33c05d5d", + "id": "0aef4509-03db-40fc-85ca-6a63b25ad4e9", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -249603,7 +249603,7 @@ }, "response": [ { - "id": "b8b6aec8-a1f6-40ff-a7c3-62486aa2ce30", + "id": "066a97b5-21c6-460d-8381-2e6633a39694", "name": "A work items details object.", "originalRequest": { "url": { @@ -249649,7 +249649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc5d0969-c919-4b2c-aeaa-06b031ee8cf7", + "id": "96ac24d3-2c55-4e70-90ae-dc5c6318df00", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -249695,7 +249695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10ce041b-7218-4572-8ce9-87ed19737426", + "id": "b8c4842c-af82-4787-b67c-198a61e2595f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -249741,7 +249741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3404a15c-6e99-4ffd-bf15-388598e3315e", + "id": "37723668-71cc-45a9-95e3-ea51404086c9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -249793,7 +249793,7 @@ } }, { - "id": "189bcc22-d125-432c-a472-9c6ba24359d4", + "id": "1ad8bec3-c08f-4116-a5a1-c04ab09e5e82", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -249846,7 +249846,7 @@ }, "response": [ { - "id": "6822e5c0-5eb4-4168-b6bf-84a73b005fbb", + "id": "15831087-e006-4220-beef-d8c1370d3374", "name": "A work items details object.", "originalRequest": { "url": { @@ -249892,7 +249892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc6c23e7-1f1b-42a0-9f69-9fca1fc75fe7", + "id": "b36bc1c6-ccc1-4d7b-884a-14a89f50e036", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -249938,7 +249938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b202b85e-ac63-4f50-ba46-e459d0ce2a59", + "id": "d4856c44-3743-4e0e-b8a6-210568218659", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -249984,7 +249984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec2aaa7d-f35a-4823-bffa-f2f5e94112e7", + "id": "a2c30df4-932d-4935-9eeb-0e9afd25d879", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -250036,7 +250036,7 @@ } }, { - "id": "e69e28f5-3b15-45b1-9c1b-0f7b8597c378", + "id": "5ede8431-a226-4bf0-b044-2288a9a60fc4", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -250078,7 +250078,7 @@ }, "response": [ { - "id": "04098bae-2b3f-4ba2-a0b8-c279ec78082c", + "id": "f661aa82-3d2e-4b68-aba3-2b5caec08215", "name": "A work items details object.", "originalRequest": { "url": { @@ -250123,7 +250123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2974706e-aa92-4641-967b-ef808d6383bb", + "id": "10f12f0b-fd7d-414b-85d1-0b4a82360da3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -250168,7 +250168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7c59f2-ec15-418c-9826-7c08aa105a25", + "id": "4fb10b3e-f205-4d3d-9f44-fd116c18c401", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250213,7 +250213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3d7e18f-d6b4-4569-af9d-aaea9535336c", + "id": "276d0201-78ea-43d5-9dd4-93bfbad94cea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -250264,7 +250264,7 @@ } }, { - "id": "a419d553-ef04-4b0e-930a-b1b43c6d8001", + "id": "21c26caf-f0f7-4e11-bfa4-9595b74ee16b", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -250306,7 +250306,7 @@ }, "response": [ { - "id": "9213ea5b-e38c-44fc-9bc6-4e99074846a3", + "id": "dd285635-3af1-4cfc-82aa-f6454d330600", "name": "A work items details object.", "originalRequest": { "url": { @@ -250351,7 +250351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f19edd-bb6b-45e8-a7f3-2ebceb77e1b7", + "id": "160b1a40-9ee8-442c-ac00-3dbc952289af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -250396,7 +250396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41665006-559d-4cd6-8f1b-d65a90c59577", + "id": "ce5f337a-0ae3-4189-a453-c74b8cf2826b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250441,7 +250441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10b069fb-04c9-4c18-bcdf-8f378d026c5d", + "id": "61ed9b28-51df-4bd3-b0f5-1aec090dcf35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -250492,7 +250492,7 @@ } }, { - "id": "39a97355-9ed6-46bd-a303-6ee2e45660ad", + "id": "647880e2-5066-427f-bbf4-155d2981c529", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -250547,7 +250547,7 @@ }, "response": [ { - "id": "554e2c21-9176-431d-93d6-b8ede3332264", + "id": "484dfe9a-a7c7-4eaa-bf7c-de1b0ec5bd0f", "name": "A work items details object.", "originalRequest": { "url": { @@ -250605,7 +250605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34140a1a-d3d0-4f6c-8a50-ef81b545a1f8", + "id": "bfe0c7be-2c32-4749-9ff5-131959a30109", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -250663,7 +250663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e8a9e39-d0f2-4da5-9690-c4caeb418fca", + "id": "a69bb39d-56a5-4872-ad04-9e69b98fc0e4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250721,7 +250721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed58fa9d-6f3d-4a9a-977c-9dde68b19ba7", + "id": "748e6d51-0ada-45dc-96e0-c56b0cc0182a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -250791,7 +250791,7 @@ "description": "Use this API to implement work reassignment functionality.\n\nWork Reassignment allows access request reviews, certifications, and manual provisioning tasks assigned to a user to be reassigned to a different user. This is primarily used for:\n\n- Temporarily redirecting work for users who are out of office, such as on vacation or sick leave\n- Permanently redirecting work for users who should not be assigned these tasks at all, such as senior executives or service identities\n\nUsers can define reassignments for themselves, managers can add them for their team members, and administrators can configure them on any user’s behalf. Work assigned during the specified reassignment timeframes will be automatically reassigned to the designated user as it is created.\n\nRefer to [Work Reassignment](https://documentation.sailpoint.com/saas/help/users/work_reassignment.html) for more information about this topic.\n", "item": [ { - "id": "a994ae13-022a-41f3-b413-1561c5935dfe", + "id": "f552e17e-b49d-49be-89f1-3a66ef020388", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -250821,7 +250821,7 @@ }, "response": [ { - "id": "76df36d4-9fba-4bc0-895b-628760a944d1", + "id": "b536422c-fac5-45a9-a5ab-b4e357e47035", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -250865,7 +250865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "214fffad-d672-498c-896c-33e659c44b68", + "id": "6c4f5e18-5b5c-47aa-8a5a-c92295552f75", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -250909,7 +250909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55f665da-1dfa-49a9-8d6f-b35df96efb61", + "id": "5e9c7f35-963b-4143-a6b4-659c31a42808", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -250953,7 +250953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a460e4f1-caf7-4811-917e-f1f459a8707c", + "id": "54b48a37-11e2-48a7-8529-f19cc2137ad7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250997,7 +250997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7465f041-c40b-4dd3-a80f-58a332b3cc13", + "id": "6ccec30e-a2ff-4a20-a879-3e92cfa06819", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -251041,7 +251041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "987f0d92-0560-4252-bdc5-8b3f56993c4c", + "id": "67f0f581-6aab-4eba-b877-db0ef365b280", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -251091,7 +251091,7 @@ } }, { - "id": "3e3c556b-e4a0-4b98-9c1c-6f49326170a4", + "id": "27c7a90c-de5d-4b9d-b7a4-48a63e697416", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -251120,7 +251120,7 @@ }, "response": [ { - "id": "489743f4-db63-48d9-9365-feb31efdefaa", + "id": "b80fbac9-8ee1-4a24-b04b-3bd56b52f6a3", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -251163,7 +251163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24c9dbe-c0f7-4c0a-ba53-11dbd607ec3f", + "id": "0b446b6d-d5b2-4e50-97c4-15d71e1680cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -251206,7 +251206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73812d99-0b40-443e-89a4-e067573effd3", + "id": "dbd814fa-5566-43eb-b238-182f51bcf7a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -251249,7 +251249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac789ad-9c9f-4a13-86b9-d28a617c9840", + "id": "57d788f8-16a6-44d3-9c5d-d0b8d55111f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -251292,7 +251292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46ba5462-8068-42b5-8cc3-65e079f924a4", + "id": "2ab2e07a-12d5-4d6c-b67c-5f8de8a6b46b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -251335,7 +251335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac1c1577-d117-42ac-bb6b-0333013e5d33", + "id": "69ddce50-176d-40fc-8a2f-4a67aadc7e8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -251378,7 +251378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6af587f-1762-44e0-bffd-ff134e506c61", + "id": "e9adaa1a-70b3-4b84-931c-dd665c2ae539", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -251427,7 +251427,7 @@ } }, { - "id": "9f17ad5e-ab30-489c-89eb-7645bd586fac", + "id": "099f8ab4-88b9-41b5-b710-5b0138a58173", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -251469,7 +251469,7 @@ }, "response": [ { - "id": "6bb52295-9041-4162-b330-c3c84526819c", + "id": "78581fb6-89b1-437f-b184-c312644be428", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -251525,7 +251525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0569888f-54a6-47b4-8eae-7afccfc2db74", + "id": "20e30fa6-28ad-46b1-97cf-7597e0a3d508", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -251581,7 +251581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd9c5e5d-6b5f-4ee6-ac65-bee540579a94", + "id": "1c9e1388-ac2c-4634-bcfd-6ab9888221ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -251637,7 +251637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57ccb70b-0729-4a95-8301-8f2d5bbb50dd", + "id": "916cc051-ea13-4284-9e3a-4060e832d80d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -251693,7 +251693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b3b792f-edd4-40c6-9e27-b7bb5ec5ad85", + "id": "fe660d28-3352-4a5b-9d98-d4456f1c0315", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -251749,7 +251749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b4f3ab4-7ac6-495f-ace5-3c458b8e8344", + "id": "87c25205-81c1-4dd1-969e-2f9f18ac55e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -251811,7 +251811,7 @@ } }, { - "id": "92cdab72-ffa7-4513-9132-de9f63fec9c1", + "id": "5873cd0a-07f5-42b2-9569-a0414fc8d1a3", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -251852,7 +251852,7 @@ }, "response": [ { - "id": "0c86f461-287e-4e89-bb51-e0de52343a5f", + "id": "3b0447c2-08ee-456e-b22e-4d50e1514e78", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -251896,7 +251896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1242ad1e-8d87-44a9-be40-158dc8474ab8", + "id": "aca36c79-d112-41f3-be4e-6fe5c0c35a2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -251940,7 +251940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb4f45ee-47f1-4b40-9c13-9b32fa462106", + "id": "297b638f-2410-42a6-93fc-10b50d5620c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -251984,7 +251984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "685952b1-f719-4a26-800c-e90163c03acd", + "id": "e086b122-eda6-4800-97c9-e5d0e0ea3e24", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -252028,7 +252028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f191863-8de0-4f97-b5a5-4dc8d79f4f6d", + "id": "a5ae5ff1-dcab-42f2-b2aa-77fb3ca34cf6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -252072,7 +252072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb74ba60-0d47-482c-b7a9-826536ee6551", + "id": "ba7ca27e-f91c-4df1-8280-3037a536f6a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -252116,7 +252116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "979c4e33-ee4a-4b2a-8d08-342120dbd8f3", + "id": "c039beaf-a8d6-4cab-8e4a-d0d09ea07340", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -252166,7 +252166,7 @@ } }, { - "id": "8879a886-3ff7-4e77-be22-24dca3a7a7ef", + "id": "21112021-eac9-4143-a1a6-4ccf88d6a232", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -252220,7 +252220,7 @@ }, "response": [ { - "id": "bfda82c0-6d9c-4d6b-af9b-9b6e93355c5a", + "id": "9a9e199b-de7a-4929-b95b-167fd4e220f0", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -252277,7 +252277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61bd04f8-bb7e-48c0-b5c0-cd7d44279640", + "id": "609b9ebc-99f3-419b-b5e1-d3f38e44c03c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -252334,7 +252334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f009d1b3-8a1f-4c05-a8be-af80a83017e0", + "id": "ed514ae0-28f5-43b9-bbae-c79e5ca55373", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -252391,7 +252391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68b55149-7791-43f5-b77d-7005d7938f15", + "id": "83a9286c-9826-4354-b137-06bf0f6f8322", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -252448,7 +252448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34f42a1a-a198-4f92-9db4-06806bf3ae13", + "id": "3126fbd0-d9a1-4a29-9686-21f29c7e6c16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -252505,7 +252505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef0bfc97-0993-47b1-9cca-702a193721c9", + "id": "1baa12a8-72cd-410c-bbf5-7e96ca11f284", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -252568,7 +252568,7 @@ } }, { - "id": "864b7938-ff87-4f36-8363-79bccba4c412", + "id": "bd85fa27-51c9-40d0-889a-12e3655b7ec9", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -252620,7 +252620,7 @@ }, "response": [ { - "id": "004f970d-88e5-4710-9b64-da8ffb40f185", + "id": "4ed7bcf8-e394-43df-bf8c-dba7ec6aed8a", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -252655,7 +252655,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d049efc0-e42e-49a0-8420-b8ec2f265aef", + "id": "6cf54a44-46e3-4c28-850f-a5232dbf5643", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -252700,7 +252700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89c1868e-2608-4815-afba-47075ee44683", + "id": "f5f186a4-6ac9-4f91-a866-06db055e4b2e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -252745,7 +252745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "656633db-062a-487e-8df1-426c7a010460", + "id": "4d15bb7e-a0af-4740-bfdc-943e5e9cfcda", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -252790,7 +252790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ac5a010-0cd9-4569-8ba8-134f81a4106f", + "id": "80e54c40-17b2-4c89-9262-8a134e3c4eec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -252835,7 +252835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e83908db-3238-40ff-95bc-907fd102caf1", + "id": "b00695f8-18eb-48c0-8920-754c2df31ddf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -252886,7 +252886,7 @@ } }, { - "id": "e8ac972a-c6e0-4838-a587-111f74370da1", + "id": "56bb3770-9895-46cd-81f1-6b7e99006e29", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -252949,7 +252949,7 @@ }, "response": [ { - "id": "a7cd9011-ae6d-4729-9039-97fca56e596c", + "id": "f3fafc84-74bc-463c-a539-79c74eef6e4b", "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { @@ -253005,7 +253005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6c76f9-b0fc-4180-a716-e7af457d5da0", + "id": "47bfd3ba-2839-45c8-a1a9-b5deb48098b2", "name": "Evaluate response when a long Reassignment trail is found", "originalRequest": { "url": { @@ -253061,7 +253061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3841241c-814d-4de3-afd9-9aa8f1581ae6", + "id": "d141db82-8836-4147-b699-113f241660e8", "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", "originalRequest": { "url": { @@ -253117,7 +253117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3452875-4a1c-4c29-a9c3-f84ba3ed1b5b", + "id": "c7c187b2-a774-499b-b56a-02e99a6da6ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -253173,7 +253173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c373ccb8-8efd-4432-8b0a-586274bdce2c", + "id": "52cc6f32-ba80-470f-97ac-3e1b6085dd8a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -253229,7 +253229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38ba8504-d983-4ba6-bffb-69acc7fd4613", + "id": "10415668-dc73-4f1f-9af9-9ef8bc4d4782", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -253285,7 +253285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "931afe80-dcec-4771-acfb-71ec10589949", + "id": "3124eeca-f137-458b-9625-ee4a2793db90", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -253341,7 +253341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aca17a7b-6e84-4f4a-9b62-536cb3e93d71", + "id": "ca6b0a83-7aea-44c6-9f27-d1b89b1e8b6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -253403,7 +253403,7 @@ } }, { - "id": "719d7b52-7e58-40ce-bece-7bd06fa91a3d", + "id": "f7c90fa8-2600-4532-82bc-4986a2c101e9", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -253433,7 +253433,7 @@ }, "response": [ { - "id": "005c5576-0dd0-4b7f-bf39-945712f7aa50", + "id": "8e947fad-61cf-4384-935a-422638888892", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -253477,7 +253477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37530e57-5b4c-40a2-ba53-d42b2098d680", + "id": "bff10a98-12df-4824-84ff-47d97e1ef63f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -253521,7 +253521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abd77914-e7ed-45a3-8389-8e5acd81c4d6", + "id": "b8673f65-1062-43db-ab3f-0e6705e5530e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -253565,7 +253565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a413b6f-7510-4bef-884d-7f6340fdd976", + "id": "7dc4ae42-d30c-4ab4-8139-104225cecba8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -253609,7 +253609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01872b75-42d9-4be1-a26d-0160a8cc089b", + "id": "fe4636ce-62b3-47e2-b873-6df5d4bc4009", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -253653,7 +253653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c08cc642-8a0c-4626-b0aa-d4f8337ac2a1", + "id": "fed46ca7-390f-405c-81ff-782fd4bc624f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -253697,7 +253697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b60b6e3-5cf3-4728-9cfb-3e246f06e924", + "id": "15139365-abaf-4bb6-b055-dccd38e847b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -253747,7 +253747,7 @@ } }, { - "id": "d67bddb6-35b0-4809-b3bb-0fab77a265f4", + "id": "b5b5051d-795c-4242-bbf5-2875546a5f25", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -253790,7 +253790,7 @@ }, "response": [ { - "id": "2bac06e4-0579-4f08-8223-78dc31f9bbec", + "id": "ecfeb3d8-26ad-4dae-8e03-5bfd51d459fd", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -253847,7 +253847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d96fe0a-65fb-4aea-b500-6a91551bc271", + "id": "b3b8579f-1077-4626-b9dd-8a1385c97adc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -253904,7 +253904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afae9644-fad4-4e54-8181-1b9548b38e9b", + "id": "0fb90a54-393a-4dc0-9241-5e1575c554df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -253961,7 +253961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "578f89e6-b195-4ac0-a1d1-740b4bf4a248", + "id": "ccdf555c-fdff-4e11-9120-10880fb547a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -254018,7 +254018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37d8c09-6d84-4899-82c5-f7c0c90dbec5", + "id": "9520beb0-b3a4-4851-af43-fd10ceb19bb5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -254075,7 +254075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79571830-5055-422c-806d-b5eda3f0a2c5", + "id": "559af466-eef1-4efd-8154-f6b437b48cd5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -254144,7 +254144,7 @@ "description": "Workflows allow administrators to create custom automation scripts directly within Identity Security Cloud. These automation scripts respond to [event triggers](https://developer.sailpoint.com/docs/extensibility/event-triggers/#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the Identity Security Cloud UI. Workflows can be configured via a graphical user interface within Identity Security Cloud, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.\n", "item": [ { - "id": "e7e3da70-e82a-4e9b-98e7-405447395bee", + "id": "f2a0d04a-9676-4ddc-9e88-29f92fc6fb27", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -254186,7 +254186,7 @@ }, "response": [ { - "id": "9677a526-4ac1-4860-abeb-79c9939d74fa", + "id": "c4530c7a-d466-40e0-806e-73278adba8fa", "name": "Event Trigger", "originalRequest": { "url": { @@ -254237,12 +254237,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"id\"\n },\n \"displayName\": \"deserunt eiusmod esse\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sunt ex\"\n },\n \"displayName\": \"est aliqua\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "76f0472b-ab9c-48af-b219-2520ac816477", + "id": "86a999cd-90fb-44a3-8997-6abfa736ed7f", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -254293,12 +254293,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"id\"\n },\n \"displayName\": \"deserunt eiusmod esse\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sunt ex\"\n },\n \"displayName\": \"est aliqua\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f048a2c-d865-4ab7-b036-b6e9a1cf9740", + "id": "2d48012a-9292-41fe-92e7-f27942ce28f8", "name": "Event Trigger", "originalRequest": { "url": { @@ -254354,7 +254354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93946afd-e2ad-405e-bb0b-a48f25d9b90f", + "id": "6ba6f6e6-6741-433d-85f6-52fa1f4a852d", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -254410,7 +254410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1660090-ba69-4d83-8614-059a397a25ae", + "id": "3c6d315e-a0ca-4bd7-ad05-4b6a06a88789", "name": "Event Trigger", "originalRequest": { "url": { @@ -254466,7 +254466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc4cb972-d7ba-43f8-a5ef-199eec4d5791", + "id": "1b632aee-4960-45e7-a511-e7765766aad6", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -254522,7 +254522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cdc3b8c-eb51-4a7d-98c4-5432c156c7e8", + "id": "e139be68-6cdd-48a2-a967-62a440d1d562", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -254578,7 +254578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e99ffe8-8aac-4ee3-a1ea-c64e757c7e76", + "id": "83b9d707-2f49-4892-9e67-453464e88c58", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -254634,7 +254634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3b024ef-664b-4cd0-8005-4fda510585d6", + "id": "ef25cafa-b51a-4718-920f-1e5d13cfdfc8", "name": "Event Trigger", "originalRequest": { "url": { @@ -254690,7 +254690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39538604-0f96-453f-9b08-e2bb213080cd", + "id": "f0793cc8-9b07-40a9-8f32-7b22924c0263", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -254746,7 +254746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3baf3425-9fc5-49cc-b752-66118d89bbe4", + "id": "df621d73-d750-436d-9dcb-5d61ab07c58f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -254802,7 +254802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5576af5a-5531-4bad-b368-966b1e33dcc7", + "id": "182f91e2-7324-4a23-a92e-0b772335d0c0", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -254864,7 +254864,7 @@ } }, { - "id": "f506f1df-e6ce-4e81-8196-1b47e291db21", + "id": "632223ee-9f27-4aca-9c29-67a06609fa56", "name": "List Workflows", "request": { "name": "List Workflows", @@ -254893,7 +254893,7 @@ }, "response": [ { - "id": "f8fee172-ec21-4a47-9b59-3b0c29ecd899", + "id": "469f5144-5a49-481c-9e07-6a0146a903ba", "name": "List of workflows", "originalRequest": { "url": { @@ -254931,12 +254931,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"deserunt dolore\"\n },\n \"displayName\": \"adipisicing anim in\"\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"quis laboris minim ut aliqua\"\n },\n \"displayName\": \"aliqua l\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sunt\"\n },\n \"displayName\": \"aute quis qui Ut\"\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"velit esse ad\"\n },\n \"displayName\": \"ut occaecat\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "972d10c2-17c5-4df4-abc9-698b29296db9", + "id": "26001b84-7546-48f8-82e2-5eb6ebd32c2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -254979,7 +254979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0ca92fb-4377-451c-9b26-bc6a13e1e43e", + "id": "61249364-8ee9-4fff-87da-6a3cfeddb5a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -255022,7 +255022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21af3877-9c80-4580-824a-4cf639159872", + "id": "41901ee9-1581-41fa-8c22-9706effca748", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -255065,7 +255065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1238a1c0-24f9-4bf5-b0d6-4a1b329204e9", + "id": "a73e4339-80b0-42ea-ba51-41a0f189bb4c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -255108,7 +255108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56bbc173-b685-43f9-97cd-8893f26e7543", + "id": "c1370987-c565-41bd-9cb5-02f2c7b4e73f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -255157,7 +255157,7 @@ } }, { - "id": "1b925502-bfd3-453b-8e60-73716617bd16", + "id": "2941d62a-973b-43d1-b2f2-684b8b6c6e40", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -255198,7 +255198,7 @@ }, "response": [ { - "id": "0eced15c-d865-4fc6-bd3e-7077f2210db6", + "id": "de718412-79d1-4c50-a107-4ab7e06ba5f4", "name": "The workflow object", "originalRequest": { "url": { @@ -255237,12 +255237,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"id\"\n },\n \"displayName\": \"deserunt eiusmod esse\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sunt ex\"\n },\n \"displayName\": \"est aliqua\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a975bbc3-1db8-4794-befe-281cf2851424", + "id": "6fbd3e8a-f0de-4099-b4b0-b5091d4a0d50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -255286,7 +255286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a82838-da4e-493f-b8e4-589f400521e3", + "id": "f5fef0b1-eddd-47a0-b06c-77d0300e39a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -255330,7 +255330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7a53691-3180-4ff0-8a00-553090402b4c", + "id": "f5af6800-c813-4452-8d8e-6536109a54c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -255374,7 +255374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9ac057d-3e05-46ef-8e83-616c6015b45e", + "id": "c14c90fd-3a01-42a2-adcc-84da2530a660", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -255418,7 +255418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37da521d-0d9d-4220-807f-703752741c6c", + "id": "bd6a65ef-afb4-49e1-8ddf-74948c72adf5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -255468,7 +255468,7 @@ } }, { - "id": "a8b097ae-7f56-4123-bb0a-ae22e8de57e8", + "id": "bc43d543-aaf6-4fa1-80e2-ca147b560c8c", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -255511,7 +255511,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255522,7 +255522,7 @@ }, "response": [ { - "id": "d183bc15-1212-4342-87f5-30c7e6e477fe", + "id": "1ff6890e-81f0-4791-9784-2b3052c07bf0", "name": "The Workflow object", "originalRequest": { "url": { @@ -255557,7 +255557,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255574,12 +255574,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"id\"\n },\n \"displayName\": \"deserunt eiusmod esse\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sunt ex\"\n },\n \"displayName\": \"est aliqua\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c9fc34c2-86dc-44c2-97bc-b8b1a96be5ca", + "id": "8141bdb4-73dd-44eb-9faf-304d75276291", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -255614,7 +255614,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255636,7 +255636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e78207dd-e60a-400c-879f-45ab8538c120", + "id": "9e1b59de-6746-4090-a1ed-a25d5062a835", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -255671,7 +255671,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255693,7 +255693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "204beba8-3067-40e6-aa20-f27c82517734", + "id": "8beefa4d-516f-45e4-9bf5-ec0300159847", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -255728,7 +255728,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255750,7 +255750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "564b0bcd-334c-44b5-9aab-61843920c6b3", + "id": "43027380-530b-4035-9bb2-1d683bb7c64b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -255785,7 +255785,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255807,7 +255807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc1d980f-0c0e-492d-b5e7-6a6f2755478f", + "id": "e5deaa64-cf0f-4390-adb5-530bcd4ebebc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -255842,7 +255842,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"labore minim\"\n },\n \"displayName\": \"Duis ipsum pariatur\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"ips\"\n },\n \"displayName\": \"eu dolore fugiat nulla\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -255870,7 +255870,7 @@ } }, { - "id": "2a4abfcd-e37c-48c9-91d9-fa458bf5dc0c", + "id": "097b7d9f-45a5-4c34-848d-bd0602414b7d", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -255924,7 +255924,7 @@ }, "response": [ { - "id": "b2c9085a-04df-4106-9869-61e8108411de", + "id": "5d0ba076-cd7e-4368-9fa9-b8ba15a1685a", "name": "The Workflow object", "originalRequest": { "url": { @@ -255976,12 +255976,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"id\"\n },\n \"displayName\": \"deserunt eiusmod esse\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sunt ex\"\n },\n \"displayName\": \"est aliqua\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af692f9d-3916-4a22-929e-3ad415fbab96", + "id": "8765ce85-9803-4d09-9f3e-00de5e9dbf21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -256038,7 +256038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4824fbfa-bf8f-488a-820c-043b7b2a06fa", + "id": "53be1057-6c24-4e74-8373-9841f8ef27be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -256095,7 +256095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd9df8b-e6d7-4a36-8e5d-87d162d62c51", + "id": "be40ac68-44e8-4a43-9fb0-773df44b15e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -256152,7 +256152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b83511cf-8532-4256-884b-dea4b7fa3c7e", + "id": "b9a0ac85-7bc5-4deb-a83c-3417b34aec12", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -256209,7 +256209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a3570c9-6461-40c0-88c3-fc2f8f1e58c2", + "id": "d026f198-fa9d-43b5-899e-becd7c317523", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -256272,7 +256272,7 @@ } }, { - "id": "b0c8deba-8927-4b02-9be6-aec757e89828", + "id": "446babe6-cbac-46ea-be05-3e05987fdb02", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -256313,7 +256313,7 @@ }, "response": [ { - "id": "7ab81d30-41e0-4ada-9bcb-91aff9612488", + "id": "bbc1b098-568b-47bf-b87b-f6705291a519", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -256347,7 +256347,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f1276f5a-55ab-4346-8074-e0051ccd504d", + "id": "c4c67690-643e-4019-ae58-68c6ad3a0a35", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -256391,7 +256391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7fa22a3-e5bb-4f73-9b99-f094a9051ac2", + "id": "93da9ee4-807b-4e30-80ab-11983cd0133b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -256435,7 +256435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e3c9f05-1388-44a2-be8f-b69bf1b8d38c", + "id": "f3859442-e47f-4b75-ba0c-6b96e4624eca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -256479,7 +256479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb09a088-1678-4ef1-a95a-3f9fbad8a0fc", + "id": "efaf7aea-d333-4036-a328-45d4336fab40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -256523,7 +256523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33a56d22-507c-4c6b-b72c-982e53590076", + "id": "66a05338-b4e8-42bc-9e2a-834d801f73bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -256573,7 +256573,7 @@ } }, { - "id": "13cab6d0-afb6-4e18-9e13-74b6c8c97fcf", + "id": "1d4225c8-7650-4e46-b36c-09beabbb76f5", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -256628,7 +256628,7 @@ }, "response": [ { - "id": "0912b4bd-2a16-44b9-b3f5-c88ee01c709b", + "id": "fc85da56-0a75-4228-a114-d633324c7c97", "name": "The Workflow object", "originalRequest": { "url": { @@ -256686,7 +256686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "914a6fec-bee2-47b4-ba93-b5a35074ed43", + "id": "6ae0c25a-191b-4846-af38-ce28e71551e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -256744,7 +256744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14aaed53-6457-41be-9e8b-397462bc4ae5", + "id": "fae2e562-b25c-4bf7-93d3-32b1031cb72a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -256802,7 +256802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d9c5e7-b600-4625-8adb-191be6ad1f75", + "id": "7d14efff-ecae-46a4-9a02-35ecf8c2eb82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -256860,7 +256860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0095852-75a2-4fe8-93f8-42caf8f28ba6", + "id": "aa8a30cc-cedd-4f00-bafb-97bcba8e551a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -256918,7 +256918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8c690a2-52b7-440d-a322-ae78a11f638a", + "id": "d9cc7cb7-3409-4711-80ad-031ba2f53641", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -256982,7 +256982,7 @@ } }, { - "id": "481a2509-d043-46fe-b344-ec99bee207e1", + "id": "74ad3839-e680-4351-8fd3-ca0c12d9b4c4", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -257061,7 +257061,7 @@ }, "response": [ { - "id": "4e5a20b0-5653-4620-86e3-acd0fbf8f9c8", + "id": "758601e8-c407-4c58-8ce1-44bfbe9d3ffb", "name": "List of workflow executions for the specified workflow. ", "originalRequest": { "url": { @@ -257143,7 +257143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff3a7ebe-30ed-4bf6-a152-0b85106e2a34", + "id": "9cf736c6-f02d-4e2d-94d5-81f00c8eab0f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -257225,7 +257225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "027edc75-0211-448c-8181-ce065568b310", + "id": "1a7ed1c3-a024-4967-8709-1153271a2ef5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -257307,7 +257307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7acda3ce-f79f-4fb1-b641-2bb61fedf6e0", + "id": "2c77eb74-334d-438a-ab99-3299e29db98f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -257389,7 +257389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a696e9f-f3a5-4737-a831-4316469b061c", + "id": "fa3b1ba9-6886-4681-88a3-8ba8e354c369", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -257471,7 +257471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71ef982d-85aa-4391-b215-c53e6ff69f82", + "id": "112f38ba-89a4-4635-b8a1-ed1da1cba2e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -257553,7 +257553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed4a7d4-36bf-4903-805b-d5c8f1f42b8c", + "id": "5909426e-1ec1-4e20-9e5a-43ac620bcf4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -257641,7 +257641,7 @@ } }, { - "id": "c6ef1711-8c9c-4798-a0e9-088d17d82288", + "id": "a46d6d73-8fa1-474d-8298-4c9bb86487c4", "name": "Get Workflow Execution", "request": { "name": "Get Workflow Execution", @@ -257682,7 +257682,7 @@ }, "response": [ { - "id": "3447ea58-f26a-4da1-8530-1ecb1adc5fa3", + "id": "3ec9f6c1-c323-491c-8c82-92947733c6bc", "name": "Workflow execution.", "originalRequest": { "url": { @@ -257726,7 +257726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c97d04b8-586e-428e-a39e-881715f3556b", + "id": "7c309541-942a-42b0-ad9b-2abbcdbd3dea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -257770,7 +257770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc741eb4-5dbe-4a6b-b834-0d9fc57e9390", + "id": "fb80d44e-0d8d-4009-b29d-aa0ef799be79", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -257814,7 +257814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77f07506-c61b-4e43-b0a4-32e61278d14b", + "id": "a57b81cb-403e-428a-bfe5-58cec602df1a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -257858,7 +257858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98878e98-79ef-4392-9f88-9cddc77a59e6", + "id": "f866c59e-76d6-48a4-be29-90d3cec8134f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -257902,7 +257902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae1ee19-4115-49b6-a19e-2a0ae38c8d48", + "id": "c4750b88-2d12-452f-9a6f-a3a7d45dd73c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -257946,7 +257946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43ccd5c2-a077-4396-851b-398e6749620e", + "id": "ea234cac-163d-4464-8775-bb677f795ae6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -257996,7 +257996,7 @@ } }, { - "id": "fe03f2ae-c5bd-4693-9d37-c795d9c1702b", + "id": "96a2700e-83ed-42c0-8364-3e01858fab69", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -258038,7 +258038,7 @@ }, "response": [ { - "id": "9d3c132c-854d-4c06-9a5e-47a2604d46cc", + "id": "de8d506d-5b80-473f-9ec9-503e0b446033", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -258083,7 +258083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ced1b1b-85f1-4e6f-ad30-87cae6480efc", + "id": "ac13476c-200b-466c-a0b3-d29556a444b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -258128,7 +258128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f5f668a-1140-47d3-ab73-c58e45db889e", + "id": "78e31557-7245-4947-8e23-3480d2263d5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -258173,7 +258173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d19a235-a227-406f-8f51-aa67ea8763cd", + "id": "1492b886-90e2-418f-aedc-4262215f5b1d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -258218,7 +258218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "236be6f2-60b4-4ed7-9106-4dcfa975998f", + "id": "5b8f5b6e-58fb-4878-95ba-04b31da1bad2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -258263,7 +258263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "743acf4d-0be0-4dd5-886e-349cde6f44f5", + "id": "da900e94-fece-41ba-8124-2ac7e7030fee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -258308,7 +258308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "667e1aba-3415-40a4-a800-1cba002fbba7", + "id": "3d211eb2-27e3-418b-8a62-e8256ec60930", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -258359,7 +258359,7 @@ } }, { - "id": "593c5cd7-cf90-4b6b-9f45-db437015d570", + "id": "b47b1eb6-3c85-440d-b347-695c7dfb55a5", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -258401,7 +258401,7 @@ }, "response": [ { - "id": "2fa09b38-aa90-407d-b384-303ef6eb3378", + "id": "7f51530e-5ec1-410d-a8c6-0d84ea20828a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -258436,7 +258436,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e7d77213-f6ff-4f3d-924b-f7f54db224ef", + "id": "a01c7894-d0f9-4bc5-b54d-f393f4507c36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -258481,7 +258481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "171691c8-8746-4377-ac5b-5e627fafb4a3", + "id": "d541276e-2bf0-425b-898b-f6ee07db8952", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -258526,7 +258526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6fba08a-de41-4f06-a621-63c8485a83f7", + "id": "9e94b585-8b98-4163-b86e-067b94ec1dd8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -258571,7 +258571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53e9d380-28ec-408a-b435-9310078de675", + "id": "a62dfd1b-6cd1-44d8-a995-c4c56c41b903", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -258616,7 +258616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ee3fb05-ef77-4e49-b4d6-a3f3b20ba09f", + "id": "1f0cc22f-14e4-4bee-b345-bb707334d972", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -258661,7 +258661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02137e5c-c3f3-43b3-a23a-0dd273d08773", + "id": "f5915f6b-90e5-4bdf-b7a7-5809652d2ca5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -258712,7 +258712,7 @@ } }, { - "id": "67f53e37-0566-4c4a-bfb3-1c2b09c3461f", + "id": "2ef16875-11d6-4fc0-991e-817e6ec9691d", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -258760,7 +258760,7 @@ }, "response": [ { - "id": "19786fde-1985-4b22-b8b3-cf59b2df483a", + "id": "4886c98b-d839-4ea5-acc8-108e8169f460", "name": "List of workflow steps", "originalRequest": { "url": { @@ -258817,12 +258817,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1945-08-22T17:27:48.638Z\",\n \"versionNumber\": -43953399,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1971-12-15T01:32:55.651Z\",\n \"versionNumber\": -10838418,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1953-08-05T13:34:43.030Z\",\n \"versionNumber\": 98215433,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"1978-12-11T07:02:40.526Z\",\n \"versionNumber\": 27520624,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c249839-4ffa-492a-beee-98f560e3f206", + "id": "96a25f12-f3e2-42bf-8bac-48bf84293ef9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -258884,7 +258884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e7e251-081a-429f-a8dc-6d5d902c4501", + "id": "6f066153-0c5b-43d6-832f-4972f727eef8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -258946,7 +258946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be308113-1a18-4166-b677-6dd71e947fe3", + "id": "ca1c5a9f-d605-4340-ba6f-e194c068c57e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -259008,7 +259008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781e257a-6fd2-4f6b-be9d-334700ec2b09", + "id": "c3e12e7e-935f-4bc1-bc39-c93dffa38df4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -259070,7 +259070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bb3298a-cc9a-43ce-b14b-fb3b2f5d418b", + "id": "9aa7a848-ec53-49cf-a88d-77679a60117a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -259138,7 +259138,7 @@ } }, { - "id": "a6257a15-08a5-4693-ae54-bf8887539f6b", + "id": "744a45ab-82fc-4a79-b8a1-25d34e40584c", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -259196,7 +259196,7 @@ }, "response": [ { - "id": "4a06a1d3-13a0-450f-91ff-ea973f85b7d6", + "id": "28e20d21-b0f7-42da-aa85-ee3b95d8dba3", "name": "List of workflow actions", "originalRequest": { "url": { @@ -259263,12 +259263,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1945-08-22T17:27:48.638Z\",\n \"versionNumber\": -43953399,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1971-12-15T01:32:55.651Z\",\n \"versionNumber\": -10838418,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1953-08-05T13:34:43.030Z\",\n \"versionNumber\": 98215433,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"1978-12-11T07:02:40.526Z\",\n \"versionNumber\": 27520624,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "374f1983-7b40-4821-ba2e-0a38cd11dbf5", + "id": "3d506e15-e8da-4c0e-b10f-4647787bec87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -259340,7 +259340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0ae702c-1cad-4390-9f34-5bdfa44f853e", + "id": "b5ad4727-3b60-4bd3-8f27-ff38e42a4858", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -259412,7 +259412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a933b4d-8487-4f97-9d72-0af22efdc2f1", + "id": "02b730ce-3361-411b-b8a8-29f499bd1301", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -259484,7 +259484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "818355fd-e4c7-4caf-8d3c-ea43c1f061c8", + "id": "e981bada-b996-44ce-8bac-c17362cb456d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -259556,7 +259556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c805ace8-750f-4ef5-a8e3-f5e168c6e474", + "id": "98531f8a-b6b9-4618-96c7-86ab544fdfe0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -259634,7 +259634,7 @@ } }, { - "id": "df2512a1-3a52-47ac-bb86-681a5a11547a", + "id": "36b98297-990f-4ac2-acef-b07da8d9c304", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -259692,7 +259692,7 @@ }, "response": [ { - "id": "15bd15b4-5902-452a-9fcd-790cbaad1efd", + "id": "f3dc473c-c79a-4612-8afd-e91c5040c1eb", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -259759,12 +259759,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": true,\n \"deprecatedBy\": \"1965-12-07T01:52:03.349Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"1950-05-24T14:12:20.829Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": true,\n \"deprecatedBy\": \"1991-06-06T13:12:18.059Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"1954-04-27T23:56:35.035Z\",\n \"isSimulationEnabled\": false,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3e5558e-f71c-4951-b7c5-c7b432eec4ac", + "id": "8f7bd53b-f054-4f78-a864-8ee39d4a8584", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -259836,7 +259836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dc61180-1ebf-4ada-bbd6-bdbbe2a5fd4a", + "id": "bbbca7dc-95cb-4b87-a029-04a1ed876941", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -259908,7 +259908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73081d32-9f10-4cfc-a16f-7ddf190c72f0", + "id": "2605bd70-715d-4558-9efd-5129b71dc25f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -259980,7 +259980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ea1f8a8-9257-4552-9da2-5f035a41945a", + "id": "a796a68e-79e7-4fe3-bef9-ab42bffc587e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -260052,7 +260052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5113b017-0436-4458-b6be-df1c64e95fa4", + "id": "71ee8862-c7d5-46b8-a42e-2d2ccc400d8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -260130,7 +260130,7 @@ } }, { - "id": "4e8b43ad-bbf2-4943-94b0-bbc61a7f4ae2", + "id": "08f8a707-dc88-45ba-87fb-6ff0c2b91aa1", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -260160,7 +260160,7 @@ }, "response": [ { - "id": "4ac6754f-8106-4e41-b3ba-9353fd328b97", + "id": "be4bd3a2-5586-4a98-8d3a-f5012101cc10", "name": "List of workflow operators", "originalRequest": { "url": { @@ -260199,12 +260199,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": true,\n \"deprecatedBy\": \"2017-09-20T18:04:19.710Z\",\n \"isSimulationEnabled\": false,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": true,\n \"deprecatedBy\": \"1975-01-30T21:18:29.754Z\",\n \"isSimulationEnabled\": false,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"2024-01-09T01:01:38.101Z\",\n \"isSimulationEnabled\": false,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"2024-08-10T15:33:52.131Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2e72c83-773a-4ac2-be4a-6ad84c957e7b", + "id": "ced5531f-4780-4167-b87f-e2a22b28e4a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -260248,7 +260248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c834484b-eae1-44fb-b57e-f7f21d2f2a46", + "id": "f4755779-70cb-4555-8758-7bf2b6224b0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -260292,7 +260292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad62ae50-f1e6-4cfc-8dd8-29e420136634", + "id": "ec6b3f30-d37e-4d34-b9eb-1db8169e4a3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -260336,7 +260336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a187d1c1-16f2-46f4-ab71-bd6a29c9c985", + "id": "d94cece3-8784-4d21-a08b-231bf2ee8224", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -260380,7 +260380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "862894fd-9bf3-404b-a559-c0eb86afafd0", + "id": "61120acd-8f63-4a2e-b27e-19dd00253160", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -260430,7 +260430,7 @@ } }, { - "id": "e7d7410a-8838-4d8c-b7ef-3e2025c57dd2", + "id": "bb3dce49-67d5-439a-a6cb-6412cf5520c1", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -260473,7 +260473,7 @@ }, "response": [ { - "id": "0a8258e6-5908-4618-a02d-def641885753", + "id": "7b77bc74-3cdd-4698-af68-59e16fdbe18c", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -260519,7 +260519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aa494ed-2038-4fce-8e92-65f5a42bdfcc", + "id": "38f393cb-47f2-40a1-8c8e-cd2b749cf737", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -260565,7 +260565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ab94536-e04b-4962-8cf2-7b5c78a3b312", + "id": "fcbfc7af-41b9-4c88-b939-b973e7f3b6c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -260611,7 +260611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa733977-1778-48c2-b03d-5360e124e079", + "id": "ac633356-fe73-45c5-a0f2-5e2096307979", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -260657,7 +260657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f37ea1c9-7a5f-417e-b0f0-c2c439eb1ce2", + "id": "905baa92-8cd1-4211-9a66-322b6bf0628d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -260703,7 +260703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "703c17a1-5af9-45bd-95cf-b345232a8791", + "id": "b60e52a3-f2f3-4333-99ac-c10b1a081baf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -260755,7 +260755,7 @@ } }, { - "id": "8cbd4b93-ec68-4188-b794-d2aac4be3805", + "id": "89bd39b7-26c5-4c84-81e7-556c56c95334", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -260811,7 +260811,7 @@ }, "response": [ { - "id": "583246c8-52dc-4e91-b1b6-d7e69b19de95", + "id": "a2777b02-72ea-4a4d-b3b3-2e79f58f72da", "name": "The Workflow object", "originalRequest": { "url": { @@ -260870,7 +260870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3451377-029f-49e5-946a-25332f8b5b87", + "id": "923ed48e-274c-4736-9919-d571d4a4194c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -260929,7 +260929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a87cb647-5a70-405d-b481-a917948a7917", + "id": "e9e8e6fc-d67d-47c9-b450-22f9e7bf59ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -260988,7 +260988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89532f5e-ae24-4eeb-8d54-d57385871997", + "id": "f4cd2d9a-f3af-478b-b972-0d7c197163dd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -261047,7 +261047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53a05522-5151-4c74-b10e-30c38d34ccc7", + "id": "918f28f1-6b31-4986-8e5f-97210980c1c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -261106,7 +261106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1bf08c3-9073-429b-ae47-95f3ed330654", + "id": "04dd6ddd-40ce-44d7-9af3-0c25ea94546b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -261171,7 +261171,7 @@ } }, { - "id": "9f6bb554-e4c6-4e5a-8159-68d77bf03629", + "id": "1064aef6-79b1-4b53-9ba4-824c8044c20f", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -261228,7 +261228,7 @@ }, "response": [ { - "id": "66afd7c3-3c9d-4c3c-b61c-e7b1196345fe", + "id": "fa6d889c-ede1-4ae2-88b7-96fe302d8b31", "name": "Responds with the test input", "originalRequest": { "url": { @@ -261288,7 +261288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e9c53c5-6374-41f4-8e18-c4b559c7164f", + "id": "ea6cd654-8df9-40a8-bc79-68108c7e6fd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -261348,7 +261348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0ed748e-3fe5-4f75-8977-d212e7fe6287", + "id": "0ec4318f-4c35-410f-b415-d2e1f530c3c1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -261408,7 +261408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336771b2-a6fc-4937-9244-4abdd963cbb1", + "id": "28276e98-5abd-40d5-ace9-7db7985412b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -261468,7 +261468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53892cb1-8d3d-4d66-83f4-952ee2eb1f6a", + "id": "917611c9-28b1-45fa-8c4a-96710362f3cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -261528,7 +261528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38e08efb-4c06-4bd1-8e2b-f6bc2b83639d", + "id": "20c30e8e-bc97-4246-8f76-3465cf0d08c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -261674,7 +261674,7 @@ } ], "info": { - "_postman_id": "fdb010bb-675d-49ea-9995-73ff4970955b", + "_postman_id": "3d1b02f0-271c-4fb1-81f5-96b00e55d65b", "name": "Identity Security Cloud Beta API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/postman/collections/sailpoint-api-nerm.json b/postman/collections/sailpoint-api-nerm.json index f6cc4e1e..25178fc3 100644 --- a/postman/collections/sailpoint-api-nerm.json +++ b/postman/collections/sailpoint-api-nerm.json @@ -5,7 +5,7 @@ "description": "", "item": [ { - "id": "93cddc3f-67d5-4ddb-a219-19f529dc7b06", + "id": "796d7252-1b15-47e4-829d-9d5d7b07e0bd", "name": "Query for Audit events", "request": { "name": "Query for Audit events", @@ -37,7 +37,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"2009-03-20\",\n \"lt\": \"1965-04-06\",\n \"eq\": \"1970-09-26\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", + "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"1987-01-06\",\n \"lt\": \"1955-04-30\",\n \"eq\": \"2016-04-27\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -49,7 +49,7 @@ }, "response": [ { - "id": "96b1f5ef-78fd-4cdc-a133-d8fffac8e4c0", + "id": "26864ef5-20a7-4c9b-b9a6-4b167287a5b5", "name": "AuditEvents", "originalRequest": { "url": { @@ -84,7 +84,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"2009-03-20\",\n \"lt\": \"1965-04-06\",\n \"eq\": \"1970-09-26\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", + "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"1987-01-06\",\n \"lt\": \"1955-04-30\",\n \"eq\": \"2016-04-27\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -101,12 +101,12 @@ "value": "application/json" } ], - "body": "{\n \"audit_events\": [\n {\n \"created_at\": {\n \"gt\": \"2006-04-02\",\n \"lt\": \"1968-07-18\",\n \"eq\": \"1966-12-17\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n },\n {\n \"created_at\": {\n \"gt\": \"1967-08-31\",\n \"lt\": \"2003-10-31\",\n \"eq\": \"1945-06-11\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n ]\n}", + "body": "{\n \"audit_events\": [\n {\n \"created_at\": {\n \"gt\": \"1994-06-06\",\n \"lt\": \"1955-12-23\",\n \"eq\": \"1991-11-08\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n },\n {\n \"created_at\": {\n \"gt\": \"2021-04-09\",\n \"lt\": \"1945-02-13\",\n \"eq\": \"1957-11-15\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de19c17c-7bb2-404c-b931-db6ca072c5d9", + "id": "ccbf2f70-7823-4daf-ae80-65baf233fbf8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -141,7 +141,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"2009-03-20\",\n \"lt\": \"1965-04-06\",\n \"eq\": \"1970-09-26\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", + "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"1987-01-06\",\n \"lt\": \"1955-04-30\",\n \"eq\": \"2016-04-27\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -163,7 +163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b7f9ddb-6693-4932-a800-43ad43a8419b", + "id": "21817e97-7bcb-453f-8ae5-961cfcc01c20", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -198,7 +198,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"2009-03-20\",\n \"lt\": \"1965-04-06\",\n \"eq\": \"1970-09-26\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", + "raw": "{\n \"audit_events\": {\n \"offset\": 100,\n \"sort_by\": \"created_at\",\n \"limit\": 10,\n \"order\": \"asc\",\n \"filters\": {\n \"created_at\": {\n \"gt\": \"1987-01-06\",\n \"lt\": \"1955-04-30\",\n \"eq\": \"2016-04-27\"\n },\n \"subject_type\": \"Profile\",\n \"type\": \"AuditableProfileCreate\",\n \"subject_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"data\": {\n \"profile_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\",\n \"workflow_name\": \"My Workflow\",\n \"workflow_uid\": \"my_workflow\",\n \"profile_type_id\": \"7d8c53ca-e99d-485c-9524-ea3849e82c79\"\n }\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -232,7 +232,7 @@ "description": "", "item": [ { - "id": "442a9dd8-da4b-448c-a015-3abaeb43d242", + "id": "e8a39434-d61b-44c8-b192-14fb68e9af7a", "name": "Create a new user", "request": { "name": "Create a new user", @@ -275,7 +275,7 @@ }, "response": [ { - "id": "24b28035-042f-4978-ab39-631f659f28d8", + "id": "f0ce6fd2-2329-4b2a-913d-2c1b2650938c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -326,12 +326,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"tempor eiusmodoccaecat fugiat la\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1993-05-13T22:19:26.028Z\",\n \"cookies_accepted_at\": \"1990-08-05T18:06:53.667Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"quis mollit aliqua deserunt doea\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2001-09-19T00:11:22.295Z\",\n \"cookies_accepted_at\": \"1983-01-24T14:00:13.952Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1d0b916-6159-4552-b710-4634ce884711", + "id": "c5f491ea-9c5a-469e-8f39-c93dbb499b89", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -387,7 +387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d419c4c-45dd-48c0-b9c5-0667c5a8442a", + "id": "1d2a36d5-64fb-4237-abc6-d407a36b48cb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -449,7 +449,7 @@ } }, { - "id": "46ab28c2-1519-4e9b-b718-bb05a32285ba", + "id": "f299a6d2-6862-4ae0-b160-5a220ff94948", "name": "Get users", "request": { "name": "Get users", @@ -508,7 +508,7 @@ "type": "text/plain" }, "key": "login", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -517,7 +517,7 @@ "type": "text/plain" }, "key": "title", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -535,7 +535,7 @@ "type": "text/plain" }, "key": "email", - "value": "ypoCxszBBFzy5Ma@tVhilxyhFwrkgA.vlq" + "value": "mck-9l4hi0IvsL@SmBMsMvOaTuwvBMGfnDYqynDmnqPxfJK.oh" }, { "disabled": false, @@ -561,7 +561,7 @@ }, "response": [ { - "id": "a9fba832-97ef-4d47-9f75-a42e5888b071", + "id": "37af1102-6057-46d6-af4e-705cb896ad15", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -615,7 +615,7 @@ "type": "text/plain" }, "key": "login", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -624,7 +624,7 @@ "type": "text/plain" }, "key": "title", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -642,7 +642,7 @@ "type": "text/plain" }, "key": "email", - "value": "ypoCxszBBFzy5Ma@tVhilxyhFwrkgA.vlq" + "value": "mck-9l4hi0IvsL@SmBMsMvOaTuwvBMGfnDYqynDmnqPxfJK.oh" }, { "disabled": false, @@ -681,12 +681,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"aliqua dolore eiusmodtempormolli\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1949-07-08T20:36:57.005Z\",\n \"cookies_accepted_at\": \"1971-08-23T08:58:21.837Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"autedolorelaboris voluptate quis\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2014-08-21T20:39:21.737Z\",\n \"cookies_accepted_at\": \"2019-07-06T22:14:47.556Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n ],\n \"_metadata\": {\n \"limit\": -38776969,\n \"offset\": -39229481,\n \"total\": -24305429,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"proidentid occaecat cupidatat co\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1981-04-14T22:57:12.016Z\",\n \"cookies_accepted_at\": \"1955-12-11T19:30:24.127Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"ea Duis cillum elit essemollit s\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2018-03-11T21:51:35.642Z\",\n \"cookies_accepted_at\": \"1968-03-20T22:16:40.899Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n ],\n \"_metadata\": {\n \"limit\": -76459315,\n \"offset\": -92751784,\n \"total\": 49326429,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e953dc0e-f4d2-4b92-bef9-d390345d64e9", + "id": "94276e18-512d-4f6c-a22e-cabc26795140", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -740,7 +740,7 @@ "type": "text/plain" }, "key": "login", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -749,7 +749,7 @@ "type": "text/plain" }, "key": "title", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -767,7 +767,7 @@ "type": "text/plain" }, "key": "email", - "value": "ypoCxszBBFzy5Ma@tVhilxyhFwrkgA.vlq" + "value": "mck-9l4hi0IvsL@SmBMsMvOaTuwvBMGfnDYqynDmnqPxfJK.oh" }, { "disabled": false, @@ -811,7 +811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc266db-ba22-40db-a2e9-a5ddc7ffc77d", + "id": "c6e853c2-0060-48df-9993-eb1c9a65dd71", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -865,7 +865,7 @@ "type": "text/plain" }, "key": "login", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -874,7 +874,7 @@ "type": "text/plain" }, "key": "title", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" }, { "disabled": false, @@ -892,7 +892,7 @@ "type": "text/plain" }, "key": "email", - "value": "ypoCxszBBFzy5Ma@tVhilxyhFwrkgA.vlq" + "value": "mck-9l4hi0IvsL@SmBMsMvOaTuwvBMGfnDYqynDmnqPxfJK.oh" }, { "disabled": false, @@ -942,7 +942,7 @@ } }, { - "id": "9b171af9-a38a-4de9-bf75-cf3f846ac73e", + "id": "768b8c24-6aa5-490e-8672-f5a82f76d119", "name": "Create multiple new users", "request": { "name": "Create multiple new users", @@ -985,7 +985,7 @@ }, "response": [ { - "id": "1bff94ca-d822-48da-a7b1-9add6666e177", + "id": "caa4e1f5-baba-431c-b8a9-0e4077fa11c4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1036,12 +1036,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"et qui sitirure quisad labore Du\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1986-10-14T02:31:18.681Z\",\n \"cookies_accepted_at\": \"1961-07-13T02:54:12.019Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"id ipsum quitempor officia aliqu\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1975-03-28T04:44:19.512Z\",\n \"cookies_accepted_at\": \"1980-02-18T14:14:58.769Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"proident sit iruredeserunt molli\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1975-01-22T09:23:01.420Z\",\n \"cookies_accepted_at\": \"2014-06-27T00:25:42.632Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"anim enim laborislaboris ipsum n\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2010-03-25T00:02:09.809Z\",\n \"cookies_accepted_at\": \"1971-03-09T18:17:50.963Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "99b9d3e1-4346-4f31-a71c-d1a5557ec925", + "id": "6c0fc72e-bb9b-4071-b6e8-18a7c49bc65c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1097,7 +1097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda7e95b-5cd7-40af-b85a-178e2380d9bd", + "id": "3a34f2b0-b908-4ed0-94da-ffe5cce3eb37", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1159,7 +1159,7 @@ } }, { - "id": "4eb0e0c9-991e-490f-9e59-17dad5978e05", + "id": "d2c14bb1-8214-4948-b2d7-e4b68770a872", "name": "Update multiple users", "request": { "name": "Update multiple users", @@ -1202,7 +1202,7 @@ }, "response": [ { - "id": "11511795-e2d0-46b2-aa91-e79f1054438d", + "id": "e0354f5b-50fb-4e68-bf34-1b4de68f5eb2", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1253,12 +1253,12 @@ "value": "application/json" } ], - "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"et qui sitirure quisad labore Du\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1986-10-14T02:31:18.681Z\",\n \"cookies_accepted_at\": \"1961-07-13T02:54:12.019Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"id ipsum quitempor officia aliqu\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1975-03-28T04:44:19.512Z\",\n \"cookies_accepted_at\": \"1980-02-18T14:14:58.769Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n ]\n}", + "body": "{\n \"users\": [\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"proident sit iruredeserunt molli\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1975-01-22T09:23:01.420Z\",\n \"cookies_accepted_at\": \"2014-06-27T00:25:42.632Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n },\n {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"anim enim laborislaboris ipsum n\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2010-03-25T00:02:09.809Z\",\n \"cookies_accepted_at\": \"1971-03-09T18:17:50.963Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "56d2e2db-8049-471b-b56f-2c81db00be09", + "id": "03a5fd13-6715-42e5-b77c-21ca30509c54", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1314,7 +1314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8770b9a5-4591-4367-9e69-6f26e64dc641", + "id": "ef917b4c-5bf2-4f9a-98d5-17c446203d8e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1376,7 +1376,7 @@ } }, { - "id": "327c29f0-3f98-4609-9b51-5fe8d040eb03", + "id": "dfceeb7f-c997-445f-81be-3dbc7271e7b0", "name": "Find user by id", "request": { "name": "Find user by id", @@ -1418,7 +1418,7 @@ }, "response": [ { - "id": "4988942f-1445-47ce-afc9-91dfb25c8d01", + "id": "443e6737-e6d4-4188-820b-b3cd1828a063", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1457,12 +1457,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"tempor eiusmodoccaecat fugiat la\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1993-05-13T22:19:26.028Z\",\n \"cookies_accepted_at\": \"1990-08-05T18:06:53.667Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"quis mollit aliqua deserunt doea\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2001-09-19T00:11:22.295Z\",\n \"cookies_accepted_at\": \"1983-01-24T14:00:13.952Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1831c067-595c-4633-9962-3beffd010325", + "id": "50ce3608-e9ff-4199-9cf8-af0e1b17630a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1506,7 +1506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae5d2864-1c1f-4c2c-8a6a-ab5c6dc1dcfd", + "id": "1c510a6d-de20-4ff4-a4f5-882f01e0a52c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1556,7 +1556,7 @@ } }, { - "id": "9d33bae1-d632-422a-bb54-839794bd1a8e", + "id": "2077e389-4978-4c8f-8f7b-28b21a23ecf1", "name": "Update a user by id", "request": { "name": "Update a user by id", @@ -1611,7 +1611,7 @@ }, "response": [ { - "id": "f40df17d-7749-49ee-8275-bb567218c476", + "id": "9bb510e5-8b80-4932-8630-d24f40a10518", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -1663,12 +1663,12 @@ "value": "application/json" } ], - "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"tempor eiusmodoccaecat fugiat la\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"1993-05-13T22:19:26.028Z\",\n \"cookies_accepted_at\": \"1990-08-05T18:06:53.667Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n}", + "body": "{\n \"user\": {\n \"id\": \"db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e\",\n \"uid\": \"quis mollit aliqua deserunt doea\",\n \"name\": \"myusername\",\n \"email\": \"test@sailpoint.com\",\n \"type\": \"NeprofileUser\",\n \"title\": \"Director\",\n \"status\": \"Active\",\n \"login\": \"myLogin\",\n \"last_login\": \"2001-09-19T00:11:22.295Z\",\n \"cookies_accepted_at\": \"1983-01-24T14:00:13.952Z\",\n \"preferred_language\": \"fr-CA\",\n \"locale\": \"fr-CA\",\n \"group_strings\": \"Admin_group, Developer_group\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "db384d58-7b9b-400f-a692-59662f90ad02", + "id": "c373b567-7bfd-4f09-8577-320531158e6f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1725,7 +1725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "355d3bd9-fa55-4612-b380-060a1b2abafb", + "id": "fa76e22c-4157-4a70-a428-5a1b86d7e548", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1788,7 +1788,7 @@ } }, { - "id": "f0baa88c-b75b-4707-a29a-0fe4d0fe12cb", + "id": "d57657d0-ee17-4fbe-8973-0da401565dcf", "name": "Delete a user", "request": { "name": "Delete a user", @@ -1830,7 +1830,7 @@ }, "response": [ { - "id": "e6010c70-266e-49cf-a4fb-9e3b12618291", + "id": "30e32048-fab4-4673-a9a1-e3865e46ae31", "name": "Info about the operation", "originalRequest": { "url": { @@ -1874,7 +1874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90830a62-194c-47b5-8d9f-61993f4e5ca6", + "id": "27b1b95a-70c1-42ef-a47a-816bae0e98dd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -1918,7 +1918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fcce92c-2d0c-4201-925e-030010729583", + "id": "db40616d-b1af-414b-868a-d12c5fb196b4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -1968,7 +1968,7 @@ } }, { - "id": "e0dde751-9fbe-4e7f-9c45-e33f5d89ba67", + "id": "75b6e8b7-abb3-49e1-b037-b5c1db57a931", "name": "Retrieves the URL of the user avatar", "request": { "name": "Retrieves the URL of the user avatar", @@ -2011,7 +2011,7 @@ }, "response": [ { - "id": "f7779bf0-a54b-440f-9994-ca9b4c61e420", + "id": "b82fb610-62f7-4ab4-b4ac-f809bd0fd519", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2051,12 +2051,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "68d8929c-41be-4ba4-81ac-b84e17bf9861", + "id": "88bd1228-c127-4c85-9494-48692088cdee", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2101,7 +2101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702d2d5f-cf16-4aed-8a57-8d4d11d73af7", + "id": "adedcac7-3947-457d-8a4c-de1cd87d46bd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2152,7 +2152,7 @@ } }, { - "id": "62221ba6-cd5d-4645-9776-13221961ad1f", + "id": "c283f961-7712-49a5-8994-c7b8479588cd", "name": "Uploads a new user avatar", "request": { "name": "Uploads a new user avatar", @@ -2211,7 +2211,7 @@ }, "response": [ { - "id": "64c15a97-22d3-47c1-91c2-5be9f3729069", + "id": "9cc7dda5-a768-416a-81ac-92f544c70172", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2267,12 +2267,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "81e8fd7f-0f0f-4d83-bb86-e3461e595493", + "id": "2fb5bdc9-9d50-45ed-9de7-ed7ae8367d15", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2333,7 +2333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf9f7c6-e401-4acf-8aa7-745108514350", + "id": "963460bf-d592-414f-bed9-e2400979f90f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2406,7 +2406,7 @@ "description": "", "item": [ { - "id": "6d75385b-9e3b-4619-b8c8-68594489b455", + "id": "b56bccb2-4533-4c8a-be10-4e447aaf7efb", "name": "Update a language by locale", "request": { "name": "Update a language by locale", @@ -2465,7 +2465,7 @@ }, "response": [ { - "id": "484d7e2d-c78e-457a-9a40-e0bc3ca2f63a", + "id": "96aa38bb-fa68-43c7-bd70-e036201ce33c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2522,7 +2522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee2c9def-076e-4ca3-8901-3528798712d4", + "id": "210355d6-c7a4-464d-b352-348b03f4d0af", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2579,7 +2579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9e5ace4-aa8a-493d-b9cf-834380abce9e", + "id": "28028c94-b2eb-4988-8093-687b37266b98", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2648,7 +2648,7 @@ "description": "", "item": [ { - "id": "7bd41f88-8924-44d4-b86f-fd7e026cf460", + "id": "52f7feef-6e79-4747-81d1-fc7f560a1484", "name": "Create a new user-manager relationship", "request": { "name": "Create a new user-manager relationship", @@ -2679,7 +2679,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2691,7 +2691,7 @@ }, "response": [ { - "id": "cd9bd0ed-58fa-4117-9d64-64081d2622f7", + "id": "345b4ee4-811d-467d-bd1a-27c3a5c745ff", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -2725,7 +2725,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2742,12 +2742,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:be04caa7-cf98-bdd7-3243-7969e170a04a\",\n \"uid\": \"magna ullamco laborum sedreprehe\",\n \"user_id\": \"78f7e03f-9b04-3e59-a7a0-cb3d9ae6ebde\",\n \"manager_id\": \"12f333dd-add1-0a65-9bbc-315e5a9d6164\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"fb3137f0-0ef4-5887-2018-6bc2e2c78d41\",\n \"uid\": \"enim et aliquip pariatur exercit\",\n \"user_id\": \"urn:uuid:5a9bb857-2661-3822-04ee-1f2defeb9463\",\n \"manager_id\": \"64f4a2ad-17b4-d983-c263-14287642cbb6\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f602fdb1-bc53-4726-b258-58bce4dfac60", + "id": "71d024d8-1826-4b3a-94f0-2e2cbb001637", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -2781,7 +2781,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2803,7 +2803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe0670f4-b4cd-4f48-89f4-2b1ffc01be7a", + "id": "2d4cc98e-a3d3-447a-a79e-76cc9c6cc25f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -2837,7 +2837,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -2865,7 +2865,7 @@ } }, { - "id": "542ca470-0435-4468-89b4-e8b2f094ad35", + "id": "2fc43e6e-c353-4c42-8504-b3f1a4b5ae47", "name": "Get user-manager relationships", "request": { "name": "Get user-manager relationships", @@ -2924,7 +2924,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -2950,7 +2950,7 @@ }, "response": [ { - "id": "4f922055-6947-4495-9b68-69617aa686d2", + "id": "bb43d4d5-8218-498b-8eb5-890ca245289e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3004,7 +3004,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -3043,12 +3043,12 @@ "value": "application/json" } ], - "body": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:0a37634e-e615-a4bf-cef7-d4acd1bde16c\",\n \"uid\": \"officiaullamco exnostrud dolor i\",\n \"user_id\": \"bbca1060-10cf-87fd-3ffa-6fafd536da78\",\n \"manager_id\": \"e83301dd-3592-8958-0411-f6134794b8fa\"\n },\n {\n \"id\": \"7a7706dd-fa28-4bcd-25cf-1806ca1dfde6\",\n \"uid\": \"cillum quis elit temporipsum nul\",\n \"user_id\": \"224f1b92-9985-5828-9f17-0a5068571175\",\n \"manager_id\": \"b88ee919-a162-ffe0-189f-3c6fc307e26b\"\n }\n ],\n \"_metadata\": {\n \"limit\": 18171204,\n \"offset\": -27041766,\n \"total\": 94829857,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_managers\": [\n {\n \"id\": \"b02d41dd-3d72-8993-2a9d-462d31b47b72\",\n \"uid\": \"cupidatat adipisicing mollit ips\",\n \"user_id\": \"urn:uuid:0533d148-4c36-3967-7382-0f92cc13094f\",\n \"manager_id\": \"1781f98d-332a-76b4-7170-cfc8c4335608\"\n },\n {\n \"id\": \"urn:uuid:43a16e3b-5540-51ca-3ea3-8647f094cec8\",\n \"uid\": \"Ut officianonaliqua ullamco sunt\",\n \"user_id\": \"urn:uuid:131489da-97a3-8196-cb5b-6b0222e71dbd\",\n \"manager_id\": \"urn:uuid:ecc027d1-2ae5-7c73-bbe2-d5e6409b56cf\"\n }\n ],\n \"_metadata\": {\n \"limit\": 19391389,\n \"offset\": -95185681,\n \"total\": -41597284,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1d07ea33-a61f-4467-a40b-3d46a985dcd3", + "id": "1e7095d0-e043-4346-99b1-4bf4e65efe5e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3102,7 +3102,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -3146,7 +3146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a26f8175-f646-4bf0-b0a6-0982d16af814", + "id": "0b1608af-0752-48b7-9161-b2075254bfab", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3200,7 +3200,7 @@ "type": "text/plain" }, "key": "manager_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -3250,7 +3250,7 @@ } }, { - "id": "a6d411b8-d674-4981-b1e8-b96929f3e544", + "id": "02ba594b-580d-4c7c-bb50-900eff96f33a", "name": "Create multiple new user-manager relationships", "request": { "name": "Create multiple new user-manager relationships", @@ -3281,7 +3281,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"9216d929-4a49-0041-62f3-bc183b684e94\",\n \"manager_id\": \"62605baf-e4a8-70e7-036d-2eb8c27ec9a1\"\n },\n {\n \"user_id\": \"urn:uuid:f275bbd7-494d-0c5c-4b3a-3b7b652e9545\",\n \"manager_id\": \"d71c4766-8599-5272-e39d-2245f9176cbc\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"f4bb378f-b00e-8a6c-3abb-451250641953\",\n \"manager_id\": \"296a3838-842d-8b18-53ef-899ac0dfddec\"\n },\n {\n \"user_id\": \"urn:uuid:6073d720-74dc-c948-8102-cf99a9f0ee06\",\n \"manager_id\": \"298a64bf-ed60-5839-df46-71b5ec4455a6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3293,7 +3293,7 @@ }, "response": [ { - "id": "9a044ed9-57be-49c1-ad5d-c7b74d9b094c", + "id": "82823811-2130-48ca-b423-8b33d711bf6a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3327,7 +3327,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"9216d929-4a49-0041-62f3-bc183b684e94\",\n \"manager_id\": \"62605baf-e4a8-70e7-036d-2eb8c27ec9a1\"\n },\n {\n \"user_id\": \"urn:uuid:f275bbd7-494d-0c5c-4b3a-3b7b652e9545\",\n \"manager_id\": \"d71c4766-8599-5272-e39d-2245f9176cbc\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"f4bb378f-b00e-8a6c-3abb-451250641953\",\n \"manager_id\": \"296a3838-842d-8b18-53ef-899ac0dfddec\"\n },\n {\n \"user_id\": \"urn:uuid:6073d720-74dc-c948-8102-cf99a9f0ee06\",\n \"manager_id\": \"298a64bf-ed60-5839-df46-71b5ec4455a6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3349,7 +3349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3efbbb5-6800-4a56-9d53-ee9e29dd7b9e", + "id": "1e6b72f6-020f-40f5-b489-53577a153602", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3383,7 +3383,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"9216d929-4a49-0041-62f3-bc183b684e94\",\n \"manager_id\": \"62605baf-e4a8-70e7-036d-2eb8c27ec9a1\"\n },\n {\n \"user_id\": \"urn:uuid:f275bbd7-494d-0c5c-4b3a-3b7b652e9545\",\n \"manager_id\": \"d71c4766-8599-5272-e39d-2245f9176cbc\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"f4bb378f-b00e-8a6c-3abb-451250641953\",\n \"manager_id\": \"296a3838-842d-8b18-53ef-899ac0dfddec\"\n },\n {\n \"user_id\": \"urn:uuid:6073d720-74dc-c948-8102-cf99a9f0ee06\",\n \"manager_id\": \"298a64bf-ed60-5839-df46-71b5ec4455a6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3405,7 +3405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90be28fa-785f-4602-b0d1-feeece3b685c", + "id": "9fbd1be8-595d-4d26-bf0d-8dd347b6f691", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3439,7 +3439,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"9216d929-4a49-0041-62f3-bc183b684e94\",\n \"manager_id\": \"62605baf-e4a8-70e7-036d-2eb8c27ec9a1\"\n },\n {\n \"user_id\": \"urn:uuid:f275bbd7-494d-0c5c-4b3a-3b7b652e9545\",\n \"manager_id\": \"d71c4766-8599-5272-e39d-2245f9176cbc\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"user_id\": \"f4bb378f-b00e-8a6c-3abb-451250641953\",\n \"manager_id\": \"296a3838-842d-8b18-53ef-899ac0dfddec\"\n },\n {\n \"user_id\": \"urn:uuid:6073d720-74dc-c948-8102-cf99a9f0ee06\",\n \"manager_id\": \"298a64bf-ed60-5839-df46-71b5ec4455a6\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3467,7 +3467,7 @@ } }, { - "id": "241ca3c0-ca86-4a59-bb81-2e96db6d70f9", + "id": "27452760-0fe5-4310-936d-26c9902086c5", "name": "Update multiple user-manager relationships", "request": { "name": "Update multiple user-manager relationships", @@ -3498,7 +3498,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:22d93b50-da8d-3ee6-177f-f3432bd04246\",\n \"user_id\": \"urn:uuid:7e3d7c35-170d-c472-aa2a-226552aabea9\",\n \"manager_id\": \"urn:uuid:35544584-bccf-0f2e-62f2-bfbc2712e32f\"\n },\n {\n \"id\": \"urn:uuid:b14af74e-4b5d-dd8b-cf00-369691f418bd\",\n \"user_id\": \"urn:uuid:331f4301-2c8c-abf1-bda7-1d352d92c231\",\n \"manager_id\": \"urn:uuid:135298d5-914f-4061-cace-0e629c395d3e\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"1344086c-6247-e509-ed29-2bd6b391ebee\",\n \"user_id\": \"urn:uuid:559ed045-ecb1-fcf6-d7f4-7a6db2a66406\",\n \"manager_id\": \"urn:uuid:951f787d-56b9-e11e-f70f-63ad801ae6a1\"\n },\n {\n \"id\": \"c9a0c8c6-856c-b282-4f6d-1fa95300764c\",\n \"user_id\": \"2648a8ba-c7e8-3edb-96d4-04303942f93f\",\n \"manager_id\": \"urn:uuid:c8c3d0d0-73dc-e52f-9e6b-225d5a07a084\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3510,7 +3510,7 @@ }, "response": [ { - "id": "296a78d1-bcec-455d-ae80-089bca250a9f", + "id": "19ef541a-9972-4dae-8de4-7685a29ee721", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3544,7 +3544,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:22d93b50-da8d-3ee6-177f-f3432bd04246\",\n \"user_id\": \"urn:uuid:7e3d7c35-170d-c472-aa2a-226552aabea9\",\n \"manager_id\": \"urn:uuid:35544584-bccf-0f2e-62f2-bfbc2712e32f\"\n },\n {\n \"id\": \"urn:uuid:b14af74e-4b5d-dd8b-cf00-369691f418bd\",\n \"user_id\": \"urn:uuid:331f4301-2c8c-abf1-bda7-1d352d92c231\",\n \"manager_id\": \"urn:uuid:135298d5-914f-4061-cace-0e629c395d3e\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"1344086c-6247-e509-ed29-2bd6b391ebee\",\n \"user_id\": \"urn:uuid:559ed045-ecb1-fcf6-d7f4-7a6db2a66406\",\n \"manager_id\": \"urn:uuid:951f787d-56b9-e11e-f70f-63ad801ae6a1\"\n },\n {\n \"id\": \"c9a0c8c6-856c-b282-4f6d-1fa95300764c\",\n \"user_id\": \"2648a8ba-c7e8-3edb-96d4-04303942f93f\",\n \"manager_id\": \"urn:uuid:c8c3d0d0-73dc-e52f-9e6b-225d5a07a084\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3566,7 +3566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7b4f671-a69d-4d6a-9deb-85bdd83d3ac7", + "id": "5edcf291-3f8a-408a-82a1-9a3e759df0d4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3600,7 +3600,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:22d93b50-da8d-3ee6-177f-f3432bd04246\",\n \"user_id\": \"urn:uuid:7e3d7c35-170d-c472-aa2a-226552aabea9\",\n \"manager_id\": \"urn:uuid:35544584-bccf-0f2e-62f2-bfbc2712e32f\"\n },\n {\n \"id\": \"urn:uuid:b14af74e-4b5d-dd8b-cf00-369691f418bd\",\n \"user_id\": \"urn:uuid:331f4301-2c8c-abf1-bda7-1d352d92c231\",\n \"manager_id\": \"urn:uuid:135298d5-914f-4061-cace-0e629c395d3e\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"1344086c-6247-e509-ed29-2bd6b391ebee\",\n \"user_id\": \"urn:uuid:559ed045-ecb1-fcf6-d7f4-7a6db2a66406\",\n \"manager_id\": \"urn:uuid:951f787d-56b9-e11e-f70f-63ad801ae6a1\"\n },\n {\n \"id\": \"c9a0c8c6-856c-b282-4f6d-1fa95300764c\",\n \"user_id\": \"2648a8ba-c7e8-3edb-96d4-04303942f93f\",\n \"manager_id\": \"urn:uuid:c8c3d0d0-73dc-e52f-9e6b-225d5a07a084\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3622,7 +3622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58efbe0d-fde5-4f8e-ae72-03308fd7bca2", + "id": "446b2739-1a95-4cc3-94fa-2cce0b781e0c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3656,7 +3656,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_managers\": [\n {\n \"id\": \"urn:uuid:22d93b50-da8d-3ee6-177f-f3432bd04246\",\n \"user_id\": \"urn:uuid:7e3d7c35-170d-c472-aa2a-226552aabea9\",\n \"manager_id\": \"urn:uuid:35544584-bccf-0f2e-62f2-bfbc2712e32f\"\n },\n {\n \"id\": \"urn:uuid:b14af74e-4b5d-dd8b-cf00-369691f418bd\",\n \"user_id\": \"urn:uuid:331f4301-2c8c-abf1-bda7-1d352d92c231\",\n \"manager_id\": \"urn:uuid:135298d5-914f-4061-cace-0e629c395d3e\"\n }\n ]\n}", + "raw": "{\n \"user_managers\": [\n {\n \"id\": \"1344086c-6247-e509-ed29-2bd6b391ebee\",\n \"user_id\": \"urn:uuid:559ed045-ecb1-fcf6-d7f4-7a6db2a66406\",\n \"manager_id\": \"urn:uuid:951f787d-56b9-e11e-f70f-63ad801ae6a1\"\n },\n {\n \"id\": \"c9a0c8c6-856c-b282-4f6d-1fa95300764c\",\n \"user_id\": \"2648a8ba-c7e8-3edb-96d4-04303942f93f\",\n \"manager_id\": \"urn:uuid:c8c3d0d0-73dc-e52f-9e6b-225d5a07a084\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -3684,7 +3684,7 @@ } }, { - "id": "84ba821e-c544-4b76-ae13-513bc17b3a2a", + "id": "e73c7b63-850e-4f03-acc2-b171a5b2021a", "name": "Find user-manager relationship by id", "request": { "name": "Find user-manager relationship by id", @@ -3726,7 +3726,7 @@ }, "response": [ { - "id": "4bf9311f-0258-4bad-9eb3-ccd40f37a747", + "id": "8d98cb1c-5f58-4df0-a304-8a1f9a019749", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3765,12 +3765,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:be04caa7-cf98-bdd7-3243-7969e170a04a\",\n \"uid\": \"magna ullamco laborum sedreprehe\",\n \"user_id\": \"78f7e03f-9b04-3e59-a7a0-cb3d9ae6ebde\",\n \"manager_id\": \"12f333dd-add1-0a65-9bbc-315e5a9d6164\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"fb3137f0-0ef4-5887-2018-6bc2e2c78d41\",\n \"uid\": \"enim et aliquip pariatur exercit\",\n \"user_id\": \"urn:uuid:5a9bb857-2661-3822-04ee-1f2defeb9463\",\n \"manager_id\": \"64f4a2ad-17b4-d983-c263-14287642cbb6\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "17234568-6ecc-453a-82e6-f2c28bfdd18d", + "id": "34560b1d-7f4f-44ad-a33b-9177c70d5c6d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -3814,7 +3814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee83b70e-843f-4419-8b71-ff3f45ee6e97", + "id": "0ff09afe-52a9-4867-bdb8-adf56f881f60", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -3864,7 +3864,7 @@ } }, { - "id": "4a80752c-0255-49e5-930d-3cf43b066937", + "id": "50eac797-418e-468a-b27c-ac87dc0e53d8", "name": "Update a user-manager relationship by id", "request": { "name": "Update a user-manager relationship by id", @@ -3907,7 +3907,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3919,7 +3919,7 @@ }, "response": [ { - "id": "10fddd3c-2828-4acd-9877-56150cf1425c", + "id": "3e8e8594-1ffd-432a-9d25-603acc736547", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -3954,7 +3954,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -3971,12 +3971,12 @@ "value": "application/json" } ], - "body": "{\n \"user_manager\": {\n \"id\": \"urn:uuid:be04caa7-cf98-bdd7-3243-7969e170a04a\",\n \"uid\": \"magna ullamco laborum sedreprehe\",\n \"user_id\": \"78f7e03f-9b04-3e59-a7a0-cb3d9ae6ebde\",\n \"manager_id\": \"12f333dd-add1-0a65-9bbc-315e5a9d6164\"\n }\n}", + "body": "{\n \"user_manager\": {\n \"id\": \"fb3137f0-0ef4-5887-2018-6bc2e2c78d41\",\n \"uid\": \"enim et aliquip pariatur exercit\",\n \"user_id\": \"urn:uuid:5a9bb857-2661-3822-04ee-1f2defeb9463\",\n \"manager_id\": \"64f4a2ad-17b4-d983-c263-14287642cbb6\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d9e938c-f05a-4544-b565-5141d8764165", + "id": "a4f61cfd-7fbd-4da6-a855-403f51189550", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4011,7 +4011,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4033,7 +4033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d43269e8-f0cf-434d-b40d-d9a09ff34595", + "id": "f80c59fa-c146-4e2f-a12f-1397e6d17b14", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4068,7 +4068,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_manager\": {\n \"user_id\": \"urn:uuid:b74ab35e-89ff-a1db-eb03-3cc205f36cbb\",\n \"manager_id\": \"urn:uuid:bd964f2d-451d-4310-682c-0f11fab841d5\"\n }\n}", + "raw": "{\n \"user_manager\": {\n \"user_id\": \"da71c60c-5061-c314-1d9e-54281f3b209b\",\n \"manager_id\": \"3d225ffa-9fa1-9360-e1f4-d8d6b8067c24\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4102,7 +4102,7 @@ "description": "", "item": [ { - "id": "a52f20a9-b4fc-4a16-b10d-fbc68e03c169", + "id": "1864251d-e6ec-4739-8a98-878a5f58c85d", "name": "Get roles", "request": { "name": "Get roles", @@ -4169,7 +4169,7 @@ }, "response": [ { - "id": "3d52e3a1-3f6c-469d-9843-9d8469799a67", + "id": "683c3735-d36f-4fd5-b841-ac962309d37f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4244,12 +4244,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"dd291c6e-0ef3-a42c-3535-cefdbc58d239\",\n \"uid\": \"in consectetur ipsum aliquipdolo\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"4cc5b231-bbd2-ed07-59f2-0f5e93127ea0\",\n \"uid\": \"cupidatat eusunt mollitvoluptate\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -79125600,\n \"offset\": -95012141,\n \"total\": -39559574,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"5419eb1d-4dd9-75fb-b833-be096a77a4d7\",\n \"uid\": \"non nisi id incididunt elitineli\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:f4ca32a0-fa62-592f-090e-49b8cd1a299c\",\n \"uid\": \"Excepteur commodoofficia laboree\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -20961606,\n \"offset\": -98769530,\n \"total\": 40302707,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "370a2b18-0ce8-49b8-9a52-15d4da69c930", + "id": "5350af70-8798-4fbf-8520-0c26c14400c2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4329,7 +4329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a1fd4c1-a319-4225-9b81-b94d1e24ef87", + "id": "1970d98f-3117-423d-b31e-8c9e69d8a256", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4415,7 +4415,7 @@ } }, { - "id": "ff0b6897-4484-4ef5-a23a-efb482c55ee6", + "id": "5fd25b20-a56a-4f2e-aa20-782c6a2aa941", "name": "Create multiple new roles", "request": { "name": "Create multiple new roles", @@ -4446,7 +4446,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"dolor laborisea laboris doloret \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolore enimsint cillum ut proide\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"anim laboredeserunt laboris repr\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea aliquipirure deserunt ut occa\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4458,7 +4458,7 @@ }, "response": [ { - "id": "bf7c2b2e-f8ff-4d70-af9b-821867d7f6a7", + "id": "9864a177-fd35-4c6f-afa5-2c3ab5698dc9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4492,7 +4492,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"dolor laborisea laboris doloret \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolore enimsint cillum ut proide\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"anim laboredeserunt laboris repr\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea aliquipirure deserunt ut occa\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4509,12 +4509,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:761c0304-47a8-8c8f-e686-eb813f7a4e0b\",\n \"uid\": \"reprehenderit laborum aliquipsin\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:76e0c0ab-c04c-02c8-5446-40a99b73bbe4\",\n \"uid\": \"labore qui nulla Loremincididunt\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"5c55d0f5-c716-e102-d326-9ae51cb43dfc\",\n \"uid\": \"non Lorem qui sed occaecatsitali\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"799453a4-8468-fb09-ab32-50934c8fce41\",\n \"uid\": \"sed nostrud sunt Loremsint repre\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c9785d5-85f8-48ac-b343-56825c1a24b5", + "id": "f3248697-97d5-4c10-bb08-6e487cec0448", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4548,7 +4548,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"dolor laborisea laboris doloret \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolore enimsint cillum ut proide\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"anim laboredeserunt laboris repr\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea aliquipirure deserunt ut occa\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4570,7 +4570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7064ab0b-189a-453a-9155-fdc9ab91fead", + "id": "ca3dd720-cf63-467a-a436-083190b6220d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4604,7 +4604,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"roles\": [\n {\n \"uid\": \"dolor laborisea laboris doloret \",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"dolore enimsint cillum ut proide\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "raw": "{\n \"roles\": [\n {\n \"uid\": \"anim laboredeserunt laboris repr\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"uid\": \"ea aliquipirure deserunt ut occa\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -4632,7 +4632,7 @@ } }, { - "id": "4da62f26-634e-4d96-aa50-f62a079956e7", + "id": "adc1d912-9caf-4c3b-8d85-3b538cdf607e", "name": "Update multiple roles", "request": { "name": "Update multiple roles", @@ -4675,7 +4675,7 @@ }, "response": [ { - "id": "e6b42b09-5487-4d68-9b54-ee8800decb36", + "id": "702fecec-b44e-4ba3-9045-2a268f6f16d8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4726,12 +4726,12 @@ "value": "application/json" } ], - "body": "{\n \"roles\": [\n {\n \"id\": \"urn:uuid:761c0304-47a8-8c8f-e686-eb813f7a4e0b\",\n \"uid\": \"reprehenderit laborum aliquipsin\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"urn:uuid:76e0c0ab-c04c-02c8-5446-40a99b73bbe4\",\n \"uid\": \"labore qui nulla Loremincididunt\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", + "body": "{\n \"roles\": [\n {\n \"id\": \"5c55d0f5-c716-e102-d326-9ae51cb43dfc\",\n \"uid\": \"non Lorem qui sed occaecatsitali\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n },\n {\n \"id\": \"799453a4-8468-fb09-ab32-50934c8fce41\",\n \"uid\": \"sed nostrud sunt Loremsint repre\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36404239-d719-4c72-8b5a-2b0d82e9d831", + "id": "3356f7f5-dc88-49d4-9690-129700f9c0b4", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4787,7 +4787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139eba45-55d9-4c0b-b06a-28d1c4abe2c4", + "id": "298ec0af-4576-46a8-a06d-467e8da56603", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -4849,7 +4849,7 @@ } }, { - "id": "e2834cd3-f158-42a2-8a84-593ce56e977e", + "id": "e95dab96-c6d4-4fd3-9dda-e9b615ea7f1a", "name": "Create a new role", "request": { "name": "Create a new role", @@ -4880,7 +4880,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"do sunt eiusmod pariatursit eu U\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ad consequat commodoconsequat la\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4892,7 +4892,7 @@ }, "response": [ { - "id": "a7d845d5-21ab-441a-bb39-b3b93590a30f", + "id": "7306ad9b-b2a3-4611-b605-1a82c9ec2f75", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -4926,7 +4926,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"do sunt eiusmod pariatursit eu U\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ad consequat commodoconsequat la\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -4943,12 +4943,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:c3cc8f11-0c8e-3bed-75b6-658dcf5ea534\",\n \"uid\": \"Ut reprehenderitconsequat irureo\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"23d15dc7-4d62-1d89-51ea-cc10e06af7d7\",\n \"uid\": \"dolore amet nisi proidentnon utd\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d6730f7c-15e9-4055-8b19-aee509535922", + "id": "268d20c8-3785-4043-8dd3-b1b9c742036e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -4982,7 +4982,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"do sunt eiusmod pariatursit eu U\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ad consequat commodoconsequat la\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5004,7 +5004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e88bb3f5-9ead-480c-8ea7-9d20dc59a7db", + "id": "846e1b8d-90bf-42ee-83ba-bb3351dec133", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5038,7 +5038,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role\": {\n \"uid\": \"do sunt eiusmod pariatursit eu U\",\n \"type\": \"NeaccessRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "raw": "{\n \"role\": {\n \"uid\": \"ad consequat commodoconsequat la\",\n \"type\": \"NeprofileRole\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -5066,7 +5066,7 @@ } }, { - "id": "5ca4b1c2-9d8d-4d44-8b07-e10504182174", + "id": "ca295e62-2e78-4bfd-9dee-c65bcd48d552", "name": "Find role by id", "request": { "name": "Find role by id", @@ -5108,7 +5108,7 @@ }, "response": [ { - "id": "3ca0934d-ffa6-4854-a9bc-4925b110e43c", + "id": "03b42f78-7b80-43ba-86c0-2e27d535344d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5147,12 +5147,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:c3cc8f11-0c8e-3bed-75b6-658dcf5ea534\",\n \"uid\": \"Ut reprehenderitconsequat irureo\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"23d15dc7-4d62-1d89-51ea-cc10e06af7d7\",\n \"uid\": \"dolore amet nisi proidentnon utd\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "decf586f-878e-4d4a-99f6-6a68ac5c299f", + "id": "ad2c85f1-4006-43c9-a41c-a656fc8be6b2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5196,7 +5196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2584e661-201e-4469-9aea-301328576c87", + "id": "13ec4384-065c-48c1-b0a1-d2c7398df00a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5246,7 +5246,7 @@ } }, { - "id": "117548c7-ac42-44d9-aec0-50fe73a0a1f8", + "id": "64d82f9e-c838-466e-bd11-21beadffe898", "name": "Update an existing role", "request": { "name": "Update an existing role", @@ -5301,7 +5301,7 @@ }, "response": [ { - "id": "7a25293e-1da9-4309-8f98-f50193180377", + "id": "38009bf1-2431-4a7b-9a9a-5827e255292e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5353,12 +5353,12 @@ "value": "application/json" } ], - "body": "{\n \"role\": {\n \"id\": \"urn:uuid:c3cc8f11-0c8e-3bed-75b6-658dcf5ea534\",\n \"uid\": \"Ut reprehenderitconsequat irureo\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", + "body": "{\n \"role\": {\n \"id\": \"23d15dc7-4d62-1d89-51ea-cc10e06af7d7\",\n \"uid\": \"dolore amet nisi proidentnon utd\",\n \"name\": \"Sponsors\",\n \"groups\": [\n \"ad_group_name\",\n \"ad_group_name\"\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2ec2257f-aaea-4bd7-a321-19b7e5e083fd", + "id": "fa26252f-e024-4d34-90cb-5510ae01144e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5415,7 +5415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b13e1331-2fbf-4995-9ecd-6a1981bc841f", + "id": "4113b546-d939-4e13-81e8-b420c2c12cd0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5484,7 +5484,7 @@ "description": "", "item": [ { - "id": "1be8e009-0f7b-400e-bc5d-b0d9a157a17d", + "id": "dc0d83d0-c46e-44b8-90b1-84098d3318fc", "name": "Get system roles", "request": { "name": "Get system roles", @@ -5551,7 +5551,7 @@ }, "response": [ { - "id": "d2bd59f4-591a-4a29-8bdb-0586ccc3691f", + "id": "24262a5f-6971-45f9-9e35-5d3474f881b7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5626,12 +5626,12 @@ "value": "application/json" } ], - "body": "{\n \"system_roles\": [\n {\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\",\n \"uid\": \"profile_contributor profile_cont\",\n \"name\": \"Profile Contributor\"\n },\n {\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\",\n \"uid\": \"profile_owner profile_owner prof\",\n \"name\": \"Profile Contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": 76877663,\n \"offset\": -36479927,\n \"total\": 85906854,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"system_roles\": [\n {\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\",\n \"uid\": \"profile_owner profile_owner prof\",\n \"name\": \"Profile Contributor\"\n },\n {\n \"id\": \"2e06b876-f456-473d-bd65-b6435e0b6b2d\",\n \"uid\": \"profile_contributor profile_cont\",\n \"name\": \"Profile Contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": -69308732,\n \"offset\": -14680036,\n \"total\": -67821565,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dcc5411e-0570-45bf-9d6a-c5a2619c4d08", + "id": "5c056ff3-7207-4338-aa68-65483090a2f3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5711,7 +5711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8866ad2-6bb3-4c1a-8151-d5e5dbdad583", + "id": "b9a79ed1-ac98-4f7c-9cf7-49b2174068a4", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -5803,7 +5803,7 @@ "description": "", "item": [ { - "id": "7d4a89d7-5674-4123-9db2-f21a5632326f", + "id": "99ca0b1b-9955-47a7-9893-ca086dbed766", "name": "Create a system role permission", "request": { "name": "Create a system role permission", @@ -5846,7 +5846,7 @@ }, "response": [ { - "id": "5c861529-f4e5-4819-9010-b908f0524fac", + "id": "2ea923ea-0b8e-4faf-b854-546ead19134d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -5902,7 +5902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a9717cb-9587-4cda-a875-9125ff981c2e", + "id": "a8c9a32d-5e96-407a-95a3-f914f9639df3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -5958,7 +5958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51d4afa6-c4de-43e1-99e1-2ba1b7c2bc43", + "id": "9868fd22-f071-4298-b929-f1b913ef0851", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6026,7 +6026,7 @@ "description": "", "item": [ { - "id": "a26e9aa3-1e56-4937-8169-489b9b56ed56", + "id": "36c73d7f-dc92-4778-9cdb-04ea504cd7bd", "name": "Create a permission", "request": { "name": "Create a permission", @@ -6069,7 +6069,7 @@ }, "response": [ { - "id": "e5b797c1-3ea1-4043-928e-91ba527d4ecf", + "id": "a0560b24-9bbb-4beb-8717-e8b8498a6889", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6125,7 +6125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98da7a0a-a1dc-4162-89b4-5c14421f8650", + "id": "1fe22815-b01c-4cc7-a31d-2df1200bf70b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6181,7 +6181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcd89ebb-a1dd-4229-b9e0-f481f83c8ca6", + "id": "08a03858-c193-4646-b907-dc6c1dbae448", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6249,7 +6249,7 @@ "description": "", "item": [ { - "id": "bd08f5cd-5699-47c1-ac69-d3e783a4c89c", + "id": "212e569c-a507-48bd-8cf4-6b371e40812f", "name": "Assign a new role to a user", "request": { "name": "Assign a new role to a user", @@ -6280,7 +6280,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6292,7 +6292,7 @@ }, "response": [ { - "id": "121306fc-3873-4216-9cc0-32fa7129aa91", + "id": "8ff5bb6c-78ae-4475-9a49-1fccbfe33216", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6326,7 +6326,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6343,12 +6343,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"ffb72420-b974-2498-0c23-9f430d30ad4a\",\n \"uid\": \"nulla quis elitsednon est autenu\",\n \"user_id\": \"a6793221-368f-e163-1377-7faf615cd1a1\",\n \"role_id\": \"urn:uuid:a8a4c079-8fc4-3daa-ef7e-7dbeb6f6cdb5\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:1ddddd14-1fe3-3926-969b-9c214a704a5b\",\n \"uid\": \"irure nisi adipisicing id commod\",\n \"user_id\": \"urn:uuid:608d0c03-105b-3e9c-c613-910ea903df1c\",\n \"role_id\": \"b969a8c2-55c3-e51a-ba07-01f5cd0a28a2\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5b011adf-6a32-4a4c-8eb5-bfb9aeffc6e1", + "id": "cac06956-303e-4808-b9eb-7005d5a59112", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6382,7 +6382,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6404,7 +6404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9c1b054-1e96-4e25-8218-f7fadcec16ab", + "id": "e5f0e010-e018-4c9e-8a94-d262dc7c1f9e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6438,7 +6438,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -6466,7 +6466,7 @@ } }, { - "id": "ad78bacc-581d-4b6c-a6d6-5607991ec445", + "id": "2594f1a6-d735-4011-84c7-970f4d7995fe", "name": "Get user role pairings", "request": { "name": "Get user role pairings", @@ -6525,7 +6525,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -6551,7 +6551,7 @@ }, "response": [ { - "id": "aae55507-0d70-4f66-a214-a04df0caca87", + "id": "0375bb28-28ae-46ac-8c9e-f04e7281223d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6605,7 +6605,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -6644,12 +6644,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"f282543a-4e8f-9d73-d077-188b52d5d40d\",\n \"uid\": \"nulla laboresunt ullamco pariatu\",\n \"user_id\": \"urn:uuid:32a295d5-1091-86b0-871d-4ead41248e2f\",\n \"role_id\": \"urn:uuid:12028f23-a42a-64f5-41ef-b2c457272c96\"\n },\n {\n \"id\": \"58806ae2-aaf3-49a1-e94c-5027b79c5b05\",\n \"uid\": \"animsit doloreculpa id anim aliq\",\n \"user_id\": \"3d9ca12b-0e3f-5cfd-9490-c9424db69514\",\n \"role_id\": \"b80b6380-0990-0e3a-43c3-c45eb7deac3f\"\n }\n ],\n \"_metadata\": {\n \"limit\": 87930775,\n \"offset\": 67881168,\n \"total\": 25198209,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"4f62cb15-bd0b-c16b-d7bc-460fb9d875b6\",\n \"uid\": \"eu deserunt sedreprehenderit non\",\n \"user_id\": \"1916f68a-51db-3b80-f2d5-231772cb9d64\",\n \"role_id\": \"e49714a7-618b-7e9c-bfd8-07144784203f\"\n },\n {\n \"id\": \"0a295a09-f9f7-4803-4f1f-50db294c7eaf\",\n \"uid\": \"velit in Lorem laboris iruresint\",\n \"user_id\": \"urn:uuid:5131cada-0be3-4f30-a26e-b1427c0255e2\",\n \"role_id\": \"urn:uuid:15b91583-786f-392a-9f84-fe3dc64acb7f\"\n }\n ],\n \"_metadata\": {\n \"limit\": 15712976,\n \"offset\": -92677456,\n \"total\": -89046471,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0fc6ab78-b0ee-4a53-99f6-4ed65962ea87", + "id": "fdeb8a61-9138-47b8-a844-507574ede242", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6703,7 +6703,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -6747,7 +6747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86f6c3a3-04f6-421a-b18c-975562f2f09a", + "id": "be10a785-ce9f-47fd-9a31-6f22daccea7f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -6801,7 +6801,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -6851,7 +6851,7 @@ } }, { - "id": "45b7102e-8026-4e2c-8737-d8d418a70ba8", + "id": "0a5e8926-79b3-4688-8692-fb29fe81a709", "name": "Create multiple new user role pairings", "request": { "name": "Create multiple new user role pairings", @@ -6882,7 +6882,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:ec67413e-107c-8964-0bd0-8dd6ba4efc80\",\n \"role_id\": \"89443442-f96d-8341-239e-63e929550caa\"\n },\n {\n \"user_id\": \"c34fedd7-3140-eb01-1975-69c173c172d4\",\n \"role_id\": \"urn:uuid:9aaa890f-781c-0f93-7efb-f162f34e8ea3\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"43fd1d3c-5025-d1f7-8815-b68674ea0e6c\",\n \"role_id\": \"urn:uuid:e5f9fa4a-fb65-f5c1-9d71-d254e7e95b4f\"\n },\n {\n \"user_id\": \"cb26dabf-9c5c-5827-a351-d148f36b67b8\",\n \"role_id\": \"urn:uuid:dd2632ce-65ca-4130-eb6d-954130c7c64a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6894,7 +6894,7 @@ }, "response": [ { - "id": "843ddf87-c991-4457-a473-b65bb0f6c786", + "id": "45088429-ac8a-49a0-95dd-a23ceb804d59", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -6928,7 +6928,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:ec67413e-107c-8964-0bd0-8dd6ba4efc80\",\n \"role_id\": \"89443442-f96d-8341-239e-63e929550caa\"\n },\n {\n \"user_id\": \"c34fedd7-3140-eb01-1975-69c173c172d4\",\n \"role_id\": \"urn:uuid:9aaa890f-781c-0f93-7efb-f162f34e8ea3\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"43fd1d3c-5025-d1f7-8815-b68674ea0e6c\",\n \"role_id\": \"urn:uuid:e5f9fa4a-fb65-f5c1-9d71-d254e7e95b4f\"\n },\n {\n \"user_id\": \"cb26dabf-9c5c-5827-a351-d148f36b67b8\",\n \"role_id\": \"urn:uuid:dd2632ce-65ca-4130-eb6d-954130c7c64a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -6945,12 +6945,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:b70ed6f2-7675-50aa-23cd-c644e306daee\",\n \"uid\": \"Lorem magnacillum mollit volupta\",\n \"user_id\": \"urn:uuid:eed05b64-eaa9-082b-0d0f-c5c7b0f1952f\",\n \"role_id\": \"urn:uuid:a14df030-76ea-bc0b-59ac-d0d4f9a2b07d\"\n },\n {\n \"id\": \"99a6a0d5-8527-d900-db7d-b160d9319b68\",\n \"uid\": \"temporanimad incididunt et cillu\",\n \"user_id\": \"urn:uuid:161e4b4a-79d4-aa5b-a8bf-d5b89cededa7\",\n \"role_id\": \"urn:uuid:3944ed41-8fc7-edfb-04ca-37585ec98424\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"998dc45a-1dc2-4494-01d9-4029be24d1bd\",\n \"uid\": \"utlaborum nullaveniamsunt deseru\",\n \"user_id\": \"ebee1f0a-2558-0aff-c32f-3a9b9f7ada9c\",\n \"role_id\": \"urn:uuid:df828a79-47ba-d846-e6ee-1600c5428fc9\"\n },\n {\n \"id\": \"460f1a33-ea60-3ade-5f1f-de54c9852ad7\",\n \"uid\": \"deserunt culpalaboris tempor in \",\n \"user_id\": \"3186e726-b860-2ee3-1b90-bd67df8749d1\",\n \"role_id\": \"f56fc214-ab2e-5986-53b5-f4fd5b141ecb\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b47804ef-2d1c-42ce-8ab5-3a98f208dfb4", + "id": "81b47455-91aa-4ee9-9f0e-942226035383", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -6984,7 +6984,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:ec67413e-107c-8964-0bd0-8dd6ba4efc80\",\n \"role_id\": \"89443442-f96d-8341-239e-63e929550caa\"\n },\n {\n \"user_id\": \"c34fedd7-3140-eb01-1975-69c173c172d4\",\n \"role_id\": \"urn:uuid:9aaa890f-781c-0f93-7efb-f162f34e8ea3\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"43fd1d3c-5025-d1f7-8815-b68674ea0e6c\",\n \"role_id\": \"urn:uuid:e5f9fa4a-fb65-f5c1-9d71-d254e7e95b4f\"\n },\n {\n \"user_id\": \"cb26dabf-9c5c-5827-a351-d148f36b67b8\",\n \"role_id\": \"urn:uuid:dd2632ce-65ca-4130-eb6d-954130c7c64a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7006,7 +7006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebff45ba-1922-4264-815f-861222ead068", + "id": "a7963a07-60a9-46d4-9754-31e76d44590f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7040,7 +7040,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"urn:uuid:ec67413e-107c-8964-0bd0-8dd6ba4efc80\",\n \"role_id\": \"89443442-f96d-8341-239e-63e929550caa\"\n },\n {\n \"user_id\": \"c34fedd7-3140-eb01-1975-69c173c172d4\",\n \"role_id\": \"urn:uuid:9aaa890f-781c-0f93-7efb-f162f34e8ea3\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"user_id\": \"43fd1d3c-5025-d1f7-8815-b68674ea0e6c\",\n \"role_id\": \"urn:uuid:e5f9fa4a-fb65-f5c1-9d71-d254e7e95b4f\"\n },\n {\n \"user_id\": \"cb26dabf-9c5c-5827-a351-d148f36b67b8\",\n \"role_id\": \"urn:uuid:dd2632ce-65ca-4130-eb6d-954130c7c64a\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7068,7 +7068,7 @@ } }, { - "id": "73a4a632-eeff-45ed-8c1c-3e8fc87ddabd", + "id": "c9d3f772-12be-432f-b451-bdf1d87daaf8", "name": "Update multiple user role pairings", "request": { "name": "Update multiple user role pairings", @@ -7099,7 +7099,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:a0247d73-8c3f-227a-bf0d-29b8774833db\",\n \"user_id\": \"urn:uuid:c4110664-e9f9-2557-bac4-fd60041a63be\",\n \"role_id\": \"urn:uuid:449426a9-534e-6903-6d89-389bf1d5aae8\"\n },\n {\n \"id\": \"35a39263-cd14-4da7-17f3-d9972ed49cda\",\n \"user_id\": \"efd2680a-a91c-a3aa-02cf-8c0bf8aadb8b\",\n \"role_id\": \"urn:uuid:c2c6c8e5-365c-efbb-12d3-4167e2fe3f37\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:0f1a11ad-9a6d-ce81-7969-4819ef444872\",\n \"user_id\": \"urn:uuid:dda7ead9-239b-503f-1892-a52c9ea9a58b\",\n \"role_id\": \"urn:uuid:b2fd3a5b-6962-fdc5-45de-e5394c6d68a8\"\n },\n {\n \"id\": \"c3bd70fc-2316-ba3e-cf99-7cb1ae580ee0\",\n \"user_id\": \"urn:uuid:fd9cfead-8518-9d6f-2ee2-24ec8d939a34\",\n \"role_id\": \"urn:uuid:39955d5b-5ea9-c46a-6d38-b87bfa5007c4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7111,7 +7111,7 @@ }, "response": [ { - "id": "08be30ff-d079-4298-aae6-8cdd957c17f6", + "id": "71d18c8a-b446-4a97-b2e1-c8d423881fdc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7145,7 +7145,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:a0247d73-8c3f-227a-bf0d-29b8774833db\",\n \"user_id\": \"urn:uuid:c4110664-e9f9-2557-bac4-fd60041a63be\",\n \"role_id\": \"urn:uuid:449426a9-534e-6903-6d89-389bf1d5aae8\"\n },\n {\n \"id\": \"35a39263-cd14-4da7-17f3-d9972ed49cda\",\n \"user_id\": \"efd2680a-a91c-a3aa-02cf-8c0bf8aadb8b\",\n \"role_id\": \"urn:uuid:c2c6c8e5-365c-efbb-12d3-4167e2fe3f37\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:0f1a11ad-9a6d-ce81-7969-4819ef444872\",\n \"user_id\": \"urn:uuid:dda7ead9-239b-503f-1892-a52c9ea9a58b\",\n \"role_id\": \"urn:uuid:b2fd3a5b-6962-fdc5-45de-e5394c6d68a8\"\n },\n {\n \"id\": \"c3bd70fc-2316-ba3e-cf99-7cb1ae580ee0\",\n \"user_id\": \"urn:uuid:fd9cfead-8518-9d6f-2ee2-24ec8d939a34\",\n \"role_id\": \"urn:uuid:39955d5b-5ea9-c46a-6d38-b87bfa5007c4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7162,12 +7162,12 @@ "value": "application/json" } ], - "body": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:b70ed6f2-7675-50aa-23cd-c644e306daee\",\n \"uid\": \"Lorem magnacillum mollit volupta\",\n \"user_id\": \"urn:uuid:eed05b64-eaa9-082b-0d0f-c5c7b0f1952f\",\n \"role_id\": \"urn:uuid:a14df030-76ea-bc0b-59ac-d0d4f9a2b07d\"\n },\n {\n \"id\": \"99a6a0d5-8527-d900-db7d-b160d9319b68\",\n \"uid\": \"temporanimad incididunt et cillu\",\n \"user_id\": \"urn:uuid:161e4b4a-79d4-aa5b-a8bf-d5b89cededa7\",\n \"role_id\": \"urn:uuid:3944ed41-8fc7-edfb-04ca-37585ec98424\"\n }\n ]\n}", + "body": "{\n \"user_roles\": [\n {\n \"id\": \"998dc45a-1dc2-4494-01d9-4029be24d1bd\",\n \"uid\": \"utlaborum nullaveniamsunt deseru\",\n \"user_id\": \"ebee1f0a-2558-0aff-c32f-3a9b9f7ada9c\",\n \"role_id\": \"urn:uuid:df828a79-47ba-d846-e6ee-1600c5428fc9\"\n },\n {\n \"id\": \"460f1a33-ea60-3ade-5f1f-de54c9852ad7\",\n \"uid\": \"deserunt culpalaboris tempor in \",\n \"user_id\": \"3186e726-b860-2ee3-1b90-bd67df8749d1\",\n \"role_id\": \"f56fc214-ab2e-5986-53b5-f4fd5b141ecb\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "832d2dff-12c6-436d-8c2c-bc9eb8c48ad6", + "id": "c2ae817b-ccf0-4d92-9416-68343543a061", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7201,7 +7201,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:a0247d73-8c3f-227a-bf0d-29b8774833db\",\n \"user_id\": \"urn:uuid:c4110664-e9f9-2557-bac4-fd60041a63be\",\n \"role_id\": \"urn:uuid:449426a9-534e-6903-6d89-389bf1d5aae8\"\n },\n {\n \"id\": \"35a39263-cd14-4da7-17f3-d9972ed49cda\",\n \"user_id\": \"efd2680a-a91c-a3aa-02cf-8c0bf8aadb8b\",\n \"role_id\": \"urn:uuid:c2c6c8e5-365c-efbb-12d3-4167e2fe3f37\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:0f1a11ad-9a6d-ce81-7969-4819ef444872\",\n \"user_id\": \"urn:uuid:dda7ead9-239b-503f-1892-a52c9ea9a58b\",\n \"role_id\": \"urn:uuid:b2fd3a5b-6962-fdc5-45de-e5394c6d68a8\"\n },\n {\n \"id\": \"c3bd70fc-2316-ba3e-cf99-7cb1ae580ee0\",\n \"user_id\": \"urn:uuid:fd9cfead-8518-9d6f-2ee2-24ec8d939a34\",\n \"role_id\": \"urn:uuid:39955d5b-5ea9-c46a-6d38-b87bfa5007c4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7223,7 +7223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe1d548d-dcd0-458c-b03d-5a28425b0ece", + "id": "b8c273ba-fec6-4be4-9938-04584da1df4e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7257,7 +7257,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:a0247d73-8c3f-227a-bf0d-29b8774833db\",\n \"user_id\": \"urn:uuid:c4110664-e9f9-2557-bac4-fd60041a63be\",\n \"role_id\": \"urn:uuid:449426a9-534e-6903-6d89-389bf1d5aae8\"\n },\n {\n \"id\": \"35a39263-cd14-4da7-17f3-d9972ed49cda\",\n \"user_id\": \"efd2680a-a91c-a3aa-02cf-8c0bf8aadb8b\",\n \"role_id\": \"urn:uuid:c2c6c8e5-365c-efbb-12d3-4167e2fe3f37\"\n }\n ]\n}", + "raw": "{\n \"user_roles\": [\n {\n \"id\": \"urn:uuid:0f1a11ad-9a6d-ce81-7969-4819ef444872\",\n \"user_id\": \"urn:uuid:dda7ead9-239b-503f-1892-a52c9ea9a58b\",\n \"role_id\": \"urn:uuid:b2fd3a5b-6962-fdc5-45de-e5394c6d68a8\"\n },\n {\n \"id\": \"c3bd70fc-2316-ba3e-cf99-7cb1ae580ee0\",\n \"user_id\": \"urn:uuid:fd9cfead-8518-9d6f-2ee2-24ec8d939a34\",\n \"role_id\": \"urn:uuid:39955d5b-5ea9-c46a-6d38-b87bfa5007c4\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -7285,7 +7285,7 @@ } }, { - "id": "15ba06c2-1f25-46b2-afa8-dfd21625137d", + "id": "f44aaeff-6321-42c9-84c4-cfffa42290e5", "name": "Find user role pairing by id", "request": { "name": "Find user role pairing by id", @@ -7327,7 +7327,7 @@ }, "response": [ { - "id": "dccc67ad-0d37-4686-bb03-02fb93cde16a", + "id": "1e20e929-5b35-4567-940e-81500048f863", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7366,12 +7366,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"ffb72420-b974-2498-0c23-9f430d30ad4a\",\n \"uid\": \"nulla quis elitsednon est autenu\",\n \"user_id\": \"a6793221-368f-e163-1377-7faf615cd1a1\",\n \"role_id\": \"urn:uuid:a8a4c079-8fc4-3daa-ef7e-7dbeb6f6cdb5\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:1ddddd14-1fe3-3926-969b-9c214a704a5b\",\n \"uid\": \"irure nisi adipisicing id commod\",\n \"user_id\": \"urn:uuid:608d0c03-105b-3e9c-c613-910ea903df1c\",\n \"role_id\": \"b969a8c2-55c3-e51a-ba07-01f5cd0a28a2\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "232eeb32-1277-45a1-b00b-115caf3fcc44", + "id": "4114d500-7c0c-4435-823c-34638017f848", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7415,7 +7415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0719ded-65f8-4076-8832-192a38f78200", + "id": "c90d8b2a-eef9-4553-b3ca-c8d27ee32b0c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7465,7 +7465,7 @@ } }, { - "id": "6b5f951d-30df-4e07-9081-d0eef2711259", + "id": "5723da29-a4b1-4fd6-bfcc-7895db3768db", "name": "Update a user role pairing by id", "request": { "name": "Update a user role pairing by id", @@ -7508,7 +7508,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7520,7 +7520,7 @@ }, "response": [ { - "id": "4db3d90d-0f2e-4e44-98bb-031bd1f56f6f", + "id": "c0158528-78c9-4d39-9df0-0213cdc4ef17", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -7555,7 +7555,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7572,12 +7572,12 @@ "value": "application/json" } ], - "body": "{\n \"user_role\": {\n \"id\": \"ffb72420-b974-2498-0c23-9f430d30ad4a\",\n \"uid\": \"nulla quis elitsednon est autenu\",\n \"user_id\": \"a6793221-368f-e163-1377-7faf615cd1a1\",\n \"role_id\": \"urn:uuid:a8a4c079-8fc4-3daa-ef7e-7dbeb6f6cdb5\"\n }\n}", + "body": "{\n \"user_role\": {\n \"id\": \"urn:uuid:1ddddd14-1fe3-3926-969b-9c214a704a5b\",\n \"uid\": \"irure nisi adipisicing id commod\",\n \"user_id\": \"urn:uuid:608d0c03-105b-3e9c-c613-910ea903df1c\",\n \"role_id\": \"b969a8c2-55c3-e51a-ba07-01f5cd0a28a2\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9ec048b1-38e8-455e-9b1b-4dd457b7fca6", + "id": "c4b8e943-fdfe-4783-aba7-3c12306058f3", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7612,7 +7612,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7634,7 +7634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67d49896-da2b-4838-964e-783bc0fb682c", + "id": "ac9982ac-14e6-4e32-a4a4-8e7be1d8f664", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7669,7 +7669,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_role\": {\n \"user_id\": \"c9b64382-7321-f09f-8f92-47d2ec050366\",\n \"role_id\": \"urn:uuid:fdbbed2c-b403-8be0-662f-f0fc66141e03\"\n }\n}", + "raw": "{\n \"user_role\": {\n \"user_id\": \"cf23b2b1-b122-5bab-a736-32105a6b99c5\",\n \"role_id\": \"urn:uuid:16caefeb-1a76-af6d-a5f8-4093501eafd7\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -7697,7 +7697,7 @@ } }, { - "id": "f1c2dd28-7159-4572-a3ee-0b771485185e", + "id": "518ce02e-0268-4f57-9a8d-e26a9533f0dd", "name": "Delete a user role assignment", "request": { "name": "Delete a user role assignment", @@ -7739,7 +7739,7 @@ }, "response": [ { - "id": "ab3afaef-1534-4c2c-bdf3-8f5b6e4ef666", + "id": "547bdb78-8941-4f2e-97b1-7f4f94474208", "name": "User role was destroyed", "originalRequest": { "url": { @@ -7783,7 +7783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c560cc42-52a1-40f2-b44f-ed03774625ac", + "id": "46a59211-127f-45e9-9be1-444a28c45f55", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -7827,7 +7827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "345dda61-c271-483a-891b-66b639ebe6aa", + "id": "25baf4f6-1d69-438d-a69d-3ecaa202e44f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -7883,7 +7883,7 @@ "description": "", "item": [ { - "id": "2b12a90f-2e65-43e0-bb05-eda25f77f0e8", + "id": "ade0e77d-9c57-4096-9a09-2b0fe3ebcaa2", "name": "Get attribute data in bulk", "request": { "name": "Get attribute data in bulk", @@ -7968,7 +7968,7 @@ }, "response": [ { - "id": "cc613d94-b90e-4025-bf78-c9accccaaddb", + "id": "02bf38ea-4322-47f3-8574-239251fef6af", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8061,12 +8061,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"Excepteur laboreminim cupidatat \",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1965-01-22T20:45:02.076Z\",\n \"created_at\": \"1962-05-17T12:00:45.854Z\",\n \"updated_at\": \"1951-01-19T10:17:39.703Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"esse eu velitquis cupidatat anim\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"2021-11-26T21:59:29.794Z\",\n \"created_at\": \"2013-07-11T17:23:56.684Z\",\n \"updated_at\": \"2004-11-26T18:46:41.122Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"2017-04-22T11:10:49.039Z\",\n \"tmp_updated_at\": \"1964-09-04T03:48:32.704Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n },\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"in ipsum et consequatsit Excepte\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1988-09-15T08:36:17.969Z\",\n \"created_at\": \"2017-03-09T03:50:00.477Z\",\n \"updated_at\": \"1975-05-22T11:19:49.583Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"nisinulla nostrud commodo tempor\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1951-12-07T14:59:17.132Z\",\n \"created_at\": \"2008-09-18T15:14:11.322Z\",\n \"updated_at\": \"1975-03-13T10:19:01.823Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1985-05-12T16:59:30.280Z\",\n \"tmp_updated_at\": \"1983-03-30T14:32:25.111Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n ],\n \"_metadata\": {\n \"limit\": -62668518,\n \"offset\": -82883383,\n \"total\": -21350624,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attributes\": [\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"sedsed fugiat commodonostrud vol\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1956-06-01T23:18:59.365Z\",\n \"created_at\": \"2016-06-25T20:53:17.535Z\",\n \"updated_at\": \"2021-06-08T00:22:58.427Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"commodo pariatur enimesseut ipsu\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1990-11-25T05:41:57.629Z\",\n \"created_at\": \"1985-07-11T17:27:11.356Z\",\n \"updated_at\": \"2021-07-27T03:18:52.195Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1998-10-01T16:02:56.281Z\",\n \"tmp_updated_at\": \"1982-05-16T02:06:32.214Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n },\n {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"UtExcepteur tempor voluptate ven\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1995-01-27T23:47:12.103Z\",\n \"created_at\": \"1994-02-12T15:34:17.766Z\",\n \"updated_at\": \"1982-03-04T00:30:19.736Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"laborum nostrud in dolor animvel\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1951-01-10T20:39:41.319Z\",\n \"created_at\": \"1972-05-01T00:36:09.429Z\",\n \"updated_at\": \"1983-02-11T06:55:23.623Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1948-01-19T17:03:29.889Z\",\n \"tmp_updated_at\": \"1997-11-27T02:17:44.907Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n ],\n \"_metadata\": {\n \"limit\": 77581260,\n \"offset\": -22972655,\n \"total\": -92181192,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b49768aa-11ad-49af-ab45-bae42aff0be5", + "id": "63273713-21b5-4538-9cd4-13530fbfe78e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8164,7 +8164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a474d929-a6b9-4d57-a7e4-2edfffb4b38f", + "id": "abca0e4a-5067-4691-ba99-de8f89525b57", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8268,7 +8268,7 @@ } }, { - "id": "7097e3f6-e947-4037-b3eb-8416d3902836", + "id": "f3273964-aa86-40ba-914e-aaf30de08e4e", "name": "Create an attribute", "request": { "name": "Create an attribute", @@ -8311,7 +8311,7 @@ }, "response": [ { - "id": "06c57186-f82c-47a1-a968-0b2a1868700d", + "id": "d28d4969-d5bf-46da-b921-527f3a083618", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8362,12 +8362,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"in enim sunt magnamollit cupidat\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1994-01-06T17:24:15.754Z\",\n \"created_at\": \"2019-06-15T11:15:24.199Z\",\n \"updated_at\": \"1958-05-05T23:26:10.593Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"cillum occaecatnulla et consecte\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1989-09-27T00:16:41.417Z\",\n \"created_at\": \"1973-10-16T23:42:01.722Z\",\n \"updated_at\": \"1980-08-22T18:33:07.385Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1967-02-08T11:33:26.737Z\",\n \"tmp_updated_at\": \"2018-11-04T22:30:55.669Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"consequatcillum aliqua nullacupi\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1946-04-28T14:45:01.156Z\",\n \"created_at\": \"1952-05-04T16:13:48.664Z\",\n \"updated_at\": \"2019-01-06T10:35:59.484Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"magna eiusmod exercitation venia\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1990-10-30T13:07:16.777Z\",\n \"created_at\": \"2001-12-27T02:05:22.338Z\",\n \"updated_at\": \"2004-09-09T22:49:42.133Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1956-03-04T09:43:03.283Z\",\n \"tmp_updated_at\": \"1964-05-25T05:46:58.648Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be1486f4-063f-47f0-80c7-4b501e087a6f", + "id": "5b03308e-4bbe-4b96-bdd8-d295c566f91d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8423,7 +8423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31482a7a-91d7-44a3-b96e-be3ae788067c", + "id": "f263e940-c450-452b-89fb-efe9e308bb0a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8485,7 +8485,7 @@ } }, { - "id": "d0490689-f4a9-4f29-adfd-99c0a446f907", + "id": "88a4bfe1-8286-49ff-9477-bd29dcf0e1b6", "name": "Find attribute data by id", "request": { "name": "Find attribute data by id", @@ -8527,7 +8527,7 @@ }, "response": [ { - "id": "c541308b-c503-4fff-a976-04e7d804d6d8", + "id": "f4240d21-df72-4ee8-be9b-4175ff12164d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8566,12 +8566,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"in enim sunt magnamollit cupidat\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1994-01-06T17:24:15.754Z\",\n \"created_at\": \"2019-06-15T11:15:24.199Z\",\n \"updated_at\": \"1958-05-05T23:26:10.593Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"cillum occaecatnulla et consecte\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1989-09-27T00:16:41.417Z\",\n \"created_at\": \"1973-10-16T23:42:01.722Z\",\n \"updated_at\": \"1980-08-22T18:33:07.385Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1967-02-08T11:33:26.737Z\",\n \"tmp_updated_at\": \"2018-11-04T22:30:55.669Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"consequatcillum aliqua nullacupi\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1946-04-28T14:45:01.156Z\",\n \"created_at\": \"1952-05-04T16:13:48.664Z\",\n \"updated_at\": \"2019-01-06T10:35:59.484Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"magna eiusmod exercitation venia\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1990-10-30T13:07:16.777Z\",\n \"created_at\": \"2001-12-27T02:05:22.338Z\",\n \"updated_at\": \"2004-09-09T22:49:42.133Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1956-03-04T09:43:03.283Z\",\n \"tmp_updated_at\": \"1964-05-25T05:46:58.648Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3ac5f703-a23f-4837-98d6-60f3498cc1d9", + "id": "9edf3e83-af5b-4489-a5bd-9cc2b3480c48", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8615,7 +8615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44c0487f-80ed-4799-9a5c-44a206435d7c", + "id": "76688ad9-27c9-4408-bfe0-5b3e4eba40e3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8665,7 +8665,7 @@ } }, { - "id": "e82b5aa5-4ae8-444b-8db6-a28131dcb552", + "id": "e3dbc1eb-8f1a-47e7-96fa-f9006959c722", "name": "Update attribute data by id", "request": { "name": "Update attribute data by id", @@ -8720,7 +8720,7 @@ }, "response": [ { - "id": "3d632246-d1e6-4ba8-99a3-c848bea75d18", + "id": "137e829e-94da-4ca4-883b-eb15c31ef467", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8772,12 +8772,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"in enim sunt magnamollit cupidat\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1994-01-06T17:24:15.754Z\",\n \"created_at\": \"2019-06-15T11:15:24.199Z\",\n \"updated_at\": \"1958-05-05T23:26:10.593Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"cillum occaecatnulla et consecte\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1989-09-27T00:16:41.417Z\",\n \"created_at\": \"1973-10-16T23:42:01.722Z\",\n \"updated_at\": \"1980-08-22T18:33:07.385Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1967-02-08T11:33:26.737Z\",\n \"tmp_updated_at\": \"2018-11-04T22:30:55.669Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", + "body": "{\n \"ne_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"consequatcillum aliqua nullacupi\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1946-04-28T14:45:01.156Z\",\n \"created_at\": \"1952-05-04T16:13:48.664Z\",\n \"updated_at\": \"2019-01-06T10:35:59.484Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute\": {\n \"id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"uid\": \"magna eiusmod exercitation venia\",\n \"label\": \"birthday\",\n \"description\": \"Your birthday\",\n \"tool_tip\": \"Put your birthday here mm-dd-yyyy\",\n \"crypt\": false,\n \"archived\": false,\n \"archived_on\": \"1990-10-30T13:07:16.777Z\",\n \"created_at\": \"2001-12-27T02:05:22.338Z\",\n \"updated_at\": \"2004-09-09T22:49:42.133Z\",\n \"date_format\": \"mm/dd/yyyy\",\n \"selectable_status\": \"Active\",\n \"risk_score_setting\": \"standard\",\n \"risk_type\": \"OverallRisk\",\n \"ownership_driven\": true,\n \"allow_multiple_selections\": true,\n \"filtered_by_ne_attribute\": true,\n \"filtering_ne_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"ne_attribute_filter_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"reverse_association_attribute_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"legacy_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"tmp_created_at\": \"1956-03-04T09:43:03.283Z\",\n \"tmp_updated_at\": \"1964-05-25T05:46:58.648Z\"\n },\n \"profile_type_id\": \"ac4aae0b-4140-49a4-a84c-126762fd0c8f\",\n \"data_type\": \"text field\",\n \"type\": \"AttachmentAttribute\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2e5d53b1-75f5-4d6a-aff9-f8b80a6b93ee", + "id": "46d63bbc-1a83-4184-a0ff-128a267ed731", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -8834,7 +8834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69357cf0-a9c4-4b18-99d2-fd140d1684b2", + "id": "25513df8-db73-4c02-868d-4c2943e479fc", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -8903,7 +8903,7 @@ "description": "", "item": [ { - "id": "6737cbeb-2ff9-419f-8692-7589e892e6d0", + "id": "d7ab4a59-2d58-4e00-81c3-3c0f5bb135cd", "name": "Add a value to an option based attribute", "request": { "name": "Add a value to an option based attribute", @@ -8934,7 +8934,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8946,7 +8946,7 @@ }, "response": [ { - "id": "e175d29a-a9e6-447f-afe0-4ba8d0875db5", + "id": "01232094-c6ff-45c7-9cd5-88f957f0ddd9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -8980,7 +8980,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -8997,12 +8997,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"770c10b6-d825-e304-7668-a1d3e54116aa\",\n \"uid\": \"ex essenostrud velit esse euaute\",\n \"ne_attribute_id\": \"5fb3b14b-6fd2-4a48-7134-b281cbd2284f\",\n \"option\": \"tempor ut\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"cddfcb14-3fbd-f4ff-5bb4-36f77ef6103f\",\n \"uid\": \"Excepteur commodo doloraute amet\",\n \"ne_attribute_id\": \"urn:uuid:747955f6-7931-debe-c831-73fe2976d973\",\n \"option\": \"in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f501e53-bc91-45ee-ad3d-ca2890ff4dd4", + "id": "b9c57753-ccf2-4d92-9126-40ceeff96465", "name": "Invalid input", "originalRequest": { "url": { @@ -9032,7 +9032,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -9054,7 +9054,7 @@ } }, { - "id": "a0eb4781-1523-4bb4-a413-8ff85644cadf", + "id": "5b2aa990-ab45-430d-9e27-9eabd9bcdd86", "name": "Get option based attribute values", "request": { "name": "Get option based attribute values", @@ -9130,7 +9130,7 @@ }, "response": [ { - "id": "1a570490-588c-4899-847c-244064ed369e", + "id": "5b508193-ab21-4aab-b67a-1556481753b1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9214,12 +9214,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:d1245fa2-7b6b-6c1d-0af0-7db7e3d2548c\",\n \"uid\": \"pariatur Lorem laborisaliquip Ex\",\n \"ne_attribute_id\": \"urn:uuid:c9414063-fb2d-a44a-bddd-021b7b434a9a\",\n \"option\": \"quis voluptate elit\"\n },\n {\n \"id\": \"018daec4-dada-7b68-d358-3165d2397175\",\n \"uid\": \"culpa pariatur sintsit ut in sin\",\n \"ne_attribute_id\": \"96c8d36d-10b3-10cd-1614-773ccb0e585b\",\n \"option\": \"voluptate sed est non enim\"\n }\n ],\n \"_metadata\": {\n \"limit\": -31920996,\n \"offset\": 41981963,\n \"total\": 69882078,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:606f7485-7883-3328-3560-12b743b9c3b7\",\n \"uid\": \"ut incididunt Lorem veniam aliqu\",\n \"ne_attribute_id\": \"3492e4b1-935c-a873-c8fd-d444b998bb37\",\n \"option\": \"labore\"\n },\n {\n \"id\": \"46fd5058-d68e-2566-bc9c-bf62975fa295\",\n \"uid\": \"sed ex nulla dolor utnulla repre\",\n \"ne_attribute_id\": \"553a522f-0d77-208f-66e6-660905a88854\",\n \"option\": \"in sunt reprehenderit exercitation\"\n }\n ],\n \"_metadata\": {\n \"limit\": 31215115,\n \"offset\": 54737822,\n \"total\": 91703998,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "62407970-dcf1-48bf-905c-c1086479ecd4", + "id": "bac625f5-26d8-4b85-94c5-c939beb83602", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9308,7 +9308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f994eb3-c0ae-4d66-bc63-21baba64074c", + "id": "67a75fa7-9aee-4a7b-80d0-936ca25720e0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9403,7 +9403,7 @@ } }, { - "id": "1182b3a9-f01c-4ed3-afd3-9cd3a96db4d8", + "id": "a1dc6913-8b29-4428-8dba-126b45ab4a02", "name": "Create multiple new option based attribute values", "request": { "name": "Create multiple new option based attribute values", @@ -9434,7 +9434,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"fee3ba5c-9c47-0bf8-1da5-cd398f6fc7a6\",\n \"option\": \"non\"\n },\n {\n \"ne_attribute_id\": \"5277b48e-d878-a9be-bc8c-c4e2d9ef8f48\",\n \"option\": \"ex sed ad\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"ac5adb8a-ca6b-a18f-4f38-596a7b0a0759\",\n \"option\": \"anim aute elit\"\n },\n {\n \"ne_attribute_id\": \"75eb42e0-02e0-d101-5fbb-a1bb36542b8f\",\n \"option\": \"deserunt ex reprehenderit officia nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9446,7 +9446,7 @@ }, "response": [ { - "id": "117748b3-dab7-4e9b-b3bd-0ff44ce7d133", + "id": "67b2264b-00e0-4839-9dd4-7c7270e08926", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9480,7 +9480,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"fee3ba5c-9c47-0bf8-1da5-cd398f6fc7a6\",\n \"option\": \"non\"\n },\n {\n \"ne_attribute_id\": \"5277b48e-d878-a9be-bc8c-c4e2d9ef8f48\",\n \"option\": \"ex sed ad\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"ac5adb8a-ca6b-a18f-4f38-596a7b0a0759\",\n \"option\": \"anim aute elit\"\n },\n {\n \"ne_attribute_id\": \"75eb42e0-02e0-d101-5fbb-a1bb36542b8f\",\n \"option\": \"deserunt ex reprehenderit officia nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9497,12 +9497,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"5fed94c2-9d02-45bb-a85c-d58ec7bb0d57\",\n \"uid\": \"veniam nisi dolore Loremdolor su\",\n \"ne_attribute_id\": \"eec64e62-790d-bca3-c0b2-8341a62d6298\",\n \"option\": \"nulla mollit sed in\"\n },\n {\n \"id\": \"c528bf74-3c32-db97-026f-1523da534217\",\n \"uid\": \"commodo laboriset aliqua utdolor\",\n \"ne_attribute_id\": \"urn:uuid:c2491ca5-d0de-f953-0e8b-8b78578b2ea0\",\n \"option\": \"exercitation aliquip\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"5c10a19d-cd03-7d3f-0f28-164caad17804\",\n \"uid\": \"culpa aliquip Excepteurcommodo s\",\n \"ne_attribute_id\": \"urn:uuid:71d85f80-12e9-e830-749a-8280fe774105\",\n \"option\": \"laboris dolor occaecat sint Duis\"\n },\n {\n \"id\": \"urn:uuid:802388c8-7764-7026-cc00-b3423a077b2d\",\n \"uid\": \"occaecat Excepteur incididunt ir\",\n \"ne_attribute_id\": \"urn:uuid:0f6089d4-b2c7-fa84-939a-7e2fe8acaed6\",\n \"option\": \"enim ut\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f0de068b-4dbf-4cc5-9dbe-3400be9f14e1", + "id": "09a793bd-73b0-4b42-af5f-1b032e88b753", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9536,7 +9536,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"fee3ba5c-9c47-0bf8-1da5-cd398f6fc7a6\",\n \"option\": \"non\"\n },\n {\n \"ne_attribute_id\": \"5277b48e-d878-a9be-bc8c-c4e2d9ef8f48\",\n \"option\": \"ex sed ad\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"ac5adb8a-ca6b-a18f-4f38-596a7b0a0759\",\n \"option\": \"anim aute elit\"\n },\n {\n \"ne_attribute_id\": \"75eb42e0-02e0-d101-5fbb-a1bb36542b8f\",\n \"option\": \"deserunt ex reprehenderit officia nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9558,7 +9558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60ca60cb-9b1e-4077-907a-36a60ad5d71b", + "id": "dabfeca3-cf41-4910-910d-965978eccfa1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9592,7 +9592,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"fee3ba5c-9c47-0bf8-1da5-cd398f6fc7a6\",\n \"option\": \"non\"\n },\n {\n \"ne_attribute_id\": \"5277b48e-d878-a9be-bc8c-c4e2d9ef8f48\",\n \"option\": \"ex sed ad\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"ne_attribute_id\": \"ac5adb8a-ca6b-a18f-4f38-596a7b0a0759\",\n \"option\": \"anim aute elit\"\n },\n {\n \"ne_attribute_id\": \"75eb42e0-02e0-d101-5fbb-a1bb36542b8f\",\n \"option\": \"deserunt ex reprehenderit officia nostrud\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9620,7 +9620,7 @@ } }, { - "id": "4469d477-a840-4e57-9011-a1b1ef8b27cb", + "id": "d79fab65-42e7-4847-a524-1f6c03da4fe4", "name": "Update multiple option based attribute values", "request": { "name": "Update multiple option based attribute values", @@ -9651,7 +9651,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:db783464-9532-b447-9a1e-dbbae6dd9dec\",\n \"ne_attribute_id\": \"56a791ee-b63d-86fb-b27c-a06071dfbf4e\",\n \"option\": \"in enim dolor non\"\n },\n {\n \"id\": \"ff23bf65-baec-8288-03be-da583265cd20\",\n \"ne_attribute_id\": \"urn:uuid:d35bda5d-85c6-0374-31a8-c0a2403594f2\",\n \"option\": \"culpa dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:b2fb1043-5bb4-07b0-26e0-78e812cb6c1b\",\n \"ne_attribute_id\": \"fcf5ac15-ec06-4d5c-2faf-e9a30e57f3fb\",\n \"option\": \"est dolor\"\n },\n {\n \"id\": \"urn:uuid:df8ebe3e-d8f3-05fa-46d5-5fedf83a0e78\",\n \"ne_attribute_id\": \"urn:uuid:41c00f46-19fb-3d9d-bb50-0552fd22852d\",\n \"option\": \"laboris esse\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9663,7 +9663,7 @@ }, "response": [ { - "id": "1a0c8124-fa43-4bc6-98b4-366541bc3075", + "id": "c3f85d09-1b4c-45dd-949d-789203fbfb85", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9697,7 +9697,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:db783464-9532-b447-9a1e-dbbae6dd9dec\",\n \"ne_attribute_id\": \"56a791ee-b63d-86fb-b27c-a06071dfbf4e\",\n \"option\": \"in enim dolor non\"\n },\n {\n \"id\": \"ff23bf65-baec-8288-03be-da583265cd20\",\n \"ne_attribute_id\": \"urn:uuid:d35bda5d-85c6-0374-31a8-c0a2403594f2\",\n \"option\": \"culpa dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:b2fb1043-5bb4-07b0-26e0-78e812cb6c1b\",\n \"ne_attribute_id\": \"fcf5ac15-ec06-4d5c-2faf-e9a30e57f3fb\",\n \"option\": \"est dolor\"\n },\n {\n \"id\": \"urn:uuid:df8ebe3e-d8f3-05fa-46d5-5fedf83a0e78\",\n \"ne_attribute_id\": \"urn:uuid:41c00f46-19fb-3d9d-bb50-0552fd22852d\",\n \"option\": \"laboris esse\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9714,12 +9714,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"5fed94c2-9d02-45bb-a85c-d58ec7bb0d57\",\n \"uid\": \"veniam nisi dolore Loremdolor su\",\n \"ne_attribute_id\": \"eec64e62-790d-bca3-c0b2-8341a62d6298\",\n \"option\": \"nulla mollit sed in\"\n },\n {\n \"id\": \"c528bf74-3c32-db97-026f-1523da534217\",\n \"uid\": \"commodo laboriset aliqua utdolor\",\n \"ne_attribute_id\": \"urn:uuid:c2491ca5-d0de-f953-0e8b-8b78578b2ea0\",\n \"option\": \"exercitation aliquip\"\n }\n ]\n}", + "body": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"5c10a19d-cd03-7d3f-0f28-164caad17804\",\n \"uid\": \"culpa aliquip Excepteurcommodo s\",\n \"ne_attribute_id\": \"urn:uuid:71d85f80-12e9-e830-749a-8280fe774105\",\n \"option\": \"laboris dolor occaecat sint Duis\"\n },\n {\n \"id\": \"urn:uuid:802388c8-7764-7026-cc00-b3423a077b2d\",\n \"uid\": \"occaecat Excepteur incididunt ir\",\n \"ne_attribute_id\": \"urn:uuid:0f6089d4-b2c7-fa84-939a-7e2fe8acaed6\",\n \"option\": \"enim ut\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7115a23a-a7d0-4bea-86f9-5913f607d137", + "id": "59419e65-bb1c-456a-916d-727c51605985", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9753,7 +9753,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:db783464-9532-b447-9a1e-dbbae6dd9dec\",\n \"ne_attribute_id\": \"56a791ee-b63d-86fb-b27c-a06071dfbf4e\",\n \"option\": \"in enim dolor non\"\n },\n {\n \"id\": \"ff23bf65-baec-8288-03be-da583265cd20\",\n \"ne_attribute_id\": \"urn:uuid:d35bda5d-85c6-0374-31a8-c0a2403594f2\",\n \"option\": \"culpa dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:b2fb1043-5bb4-07b0-26e0-78e812cb6c1b\",\n \"ne_attribute_id\": \"fcf5ac15-ec06-4d5c-2faf-e9a30e57f3fb\",\n \"option\": \"est dolor\"\n },\n {\n \"id\": \"urn:uuid:df8ebe3e-d8f3-05fa-46d5-5fedf83a0e78\",\n \"ne_attribute_id\": \"urn:uuid:41c00f46-19fb-3d9d-bb50-0552fd22852d\",\n \"option\": \"laboris esse\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9775,7 +9775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3601e4e9-b82b-4738-9e49-df764c721463", + "id": "086b0aff-b947-40a8-8d09-f88ec696a0f9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -9809,7 +9809,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:db783464-9532-b447-9a1e-dbbae6dd9dec\",\n \"ne_attribute_id\": \"56a791ee-b63d-86fb-b27c-a06071dfbf4e\",\n \"option\": \"in enim dolor non\"\n },\n {\n \"id\": \"ff23bf65-baec-8288-03be-da583265cd20\",\n \"ne_attribute_id\": \"urn:uuid:d35bda5d-85c6-0374-31a8-c0a2403594f2\",\n \"option\": \"culpa dolore\"\n }\n ]\n}", + "raw": "{\n \"ne_attribute_options\": [\n {\n \"id\": \"urn:uuid:b2fb1043-5bb4-07b0-26e0-78e812cb6c1b\",\n \"ne_attribute_id\": \"fcf5ac15-ec06-4d5c-2faf-e9a30e57f3fb\",\n \"option\": \"est dolor\"\n },\n {\n \"id\": \"urn:uuid:df8ebe3e-d8f3-05fa-46d5-5fedf83a0e78\",\n \"ne_attribute_id\": \"urn:uuid:41c00f46-19fb-3d9d-bb50-0552fd22852d\",\n \"option\": \"laboris esse\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -9837,7 +9837,7 @@ } }, { - "id": "8d308b30-6182-4e52-9dde-23ef36a78b53", + "id": "65aeab65-1742-4050-bf58-178150beb8aa", "name": "Find option based attribute value by id", "request": { "name": "Find option based attribute value by id", @@ -9879,7 +9879,7 @@ }, "response": [ { - "id": "b61e8893-ded7-4cb0-bf96-ef6c0d3f078d", + "id": "366ebd89-fa93-4434-b501-2a926fce8899", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -9918,12 +9918,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"770c10b6-d825-e304-7668-a1d3e54116aa\",\n \"uid\": \"ex essenostrud velit esse euaute\",\n \"ne_attribute_id\": \"5fb3b14b-6fd2-4a48-7134-b281cbd2284f\",\n \"option\": \"tempor ut\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"cddfcb14-3fbd-f4ff-5bb4-36f77ef6103f\",\n \"uid\": \"Excepteur commodo doloraute amet\",\n \"ne_attribute_id\": \"urn:uuid:747955f6-7931-debe-c831-73fe2976d973\",\n \"option\": \"in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f88971c9-f656-49a4-9315-f0b17d4e4e0b", + "id": "2eae4df1-3f85-4441-8eea-360806ac335a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -9967,7 +9967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bedfd84-50c3-47dc-b271-5e38f8925d78", + "id": "ea37abd2-b380-4d56-b239-faefea2c97b1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10017,7 +10017,7 @@ } }, { - "id": "66953200-01d6-4d2c-9afb-b970d31ab5e9", + "id": "eec6481f-9ad4-40f0-b728-27caed6b6728", "name": "Update a option based attribute value by id", "request": { "name": "Update a option based attribute value by id", @@ -10060,7 +10060,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10072,7 +10072,7 @@ }, "response": [ { - "id": "6f4417ae-8467-4aac-af87-b45e4ddf0063", + "id": "1a681425-8cd3-4869-8395-dc20b713ded6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10107,7 +10107,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10124,12 +10124,12 @@ "value": "application/json" } ], - "body": "{\n \"ne_attribute_option\": {\n \"id\": \"770c10b6-d825-e304-7668-a1d3e54116aa\",\n \"uid\": \"ex essenostrud velit esse euaute\",\n \"ne_attribute_id\": \"5fb3b14b-6fd2-4a48-7134-b281cbd2284f\",\n \"option\": \"tempor ut\"\n }\n}", + "body": "{\n \"ne_attribute_option\": {\n \"id\": \"cddfcb14-3fbd-f4ff-5bb4-36f77ef6103f\",\n \"uid\": \"Excepteur commodo doloraute amet\",\n \"ne_attribute_id\": \"urn:uuid:747955f6-7931-debe-c831-73fe2976d973\",\n \"option\": \"in\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e18ff80-6434-4564-87ac-6f4950b68df8", + "id": "e405f8fc-9fd3-4d10-a1c8-ca938bb0272f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10164,7 +10164,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10186,7 +10186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ead8cf09-b47c-45c9-b944-605c582aad71", + "id": "04797260-5e32-4334-9ed1-01734c2378bd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10221,7 +10221,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"00d2c290-6271-cdc7-c26c-44db12b7771f\",\n \"option\": \"do eu\"\n }\n}", + "raw": "{\n \"ne_attribute_option\": {\n \"ne_attribute_id\": \"bbfdad8a-b7fc-c41c-6a99-0740fe42d194\",\n \"option\": \"elit sit consectetur\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -10249,7 +10249,7 @@ } }, { - "id": "4feaf08d-d788-4df2-83e3-45a028522619", + "id": "e44f1d9e-5317-4b17-9328-e8e96f8c0570", "name": "Delete a option based attribute value by id", "request": { "name": "Delete a option based attribute value by id", @@ -10291,7 +10291,7 @@ }, "response": [ { - "id": "9981fc96-3f29-43f2-b81f-5fe7a6759605", + "id": "0074db8b-e067-40bd-a869-fb04a89e6eb1", "name": "Confirmation of a deleted object", "originalRequest": { "url": { @@ -10335,7 +10335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea643675-6ef6-43c9-931f-c0f286bd99df", + "id": "18e7d385-e6f9-4d1f-84fb-a192b75c98f0", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10379,7 +10379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bbc475f-f877-47e8-806c-c25af553c0b0", + "id": "b57c2d89-219c-46cb-97fc-3f7e27815cd8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10435,7 +10435,7 @@ "description": "", "item": [ { - "id": "949c8421-2b91-4487-9f50-45a80e94203c", + "id": "ada872e9-43f2-4ddb-9a9c-56934817e109", "name": "Create a profile page", "request": { "name": "Create a profile page", @@ -10479,7 +10479,7 @@ }, "response": [ { - "id": "2ac340fe-f71d-47cd-bbe2-e0ce6cf8f9e1", + "id": "91654a1c-4cc8-4650-974f-f6a6923cb8d4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10536,7 +10536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bea92382-ce5a-413b-b941-4e6b3de1f9b2", + "id": "e0537947-7106-4e24-93f4-fe7e57cd770d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10593,7 +10593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aae1505d-f586-4c3c-b4c6-521a709d2e7d", + "id": "ac56cdf6-1904-4e27-94b3-7766b0e62b92", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10656,7 +10656,7 @@ } }, { - "id": "1a965f6b-3031-41d5-a97f-7bfbe19e3155", + "id": "e50b1f98-5d36-433c-b12e-b7301c27b44f", "name": "Create a workflow page", "request": { "name": "Create a workflow page", @@ -10700,7 +10700,7 @@ }, "response": [ { - "id": "fd8d4878-731d-4391-9e1d-c58e11a3d129", + "id": "5757ebe4-a4f2-4dc0-8c53-4afe600c1f1b", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10757,7 +10757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12b0f7e0-3da5-42c9-9449-438ea8c4cca1", + "id": "b412f3be-123b-470c-8d3b-10fcac507410", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -10814,7 +10814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90659bd-c5ec-432a-9f36-19a0d6597154", + "id": "069770de-e053-45f6-974e-87c2982a4b40", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -10883,7 +10883,7 @@ "description": "", "item": [ { - "id": "bc057fb4-9b16-434a-a939-6f53352b0e92", + "id": "52490707-4ce0-46b0-bc27-1cadb00f7398", "name": "Create a profile type", "request": { "name": "Create a profile type", @@ -10926,7 +10926,7 @@ }, "response": [ { - "id": "3f2cc647-9fb0-435a-a972-680397dca624", + "id": "b09b801c-465c-4346-a7c0-d8341d0fef80", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -10977,12 +10977,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"tempor amet fugiat quiquis cupid\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat estaute doloreipsum do\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore utenim inutin sint esse a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"pariatur ullamco esse nulla offi\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboris veniam velit consequatam\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore fugiatculpaconsequatminim\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eu nisi sedest exercitation veli\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex reprehenderitipsum proidentvo\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Ut ut qui Duispariatur eiusmod m\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in culpaLorem elitcupidatat labo\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fcc5e888-b489-4580-8ed3-2e02531b7b69", + "id": "5c26922d-9edd-40e9-9670-5a7d6cd47026", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11038,7 +11038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64df39ec-41c7-449c-a070-86b7f4c27471", + "id": "f0382c9a-7bff-458e-b723-e4f9de04195a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11100,7 +11100,7 @@ } }, { - "id": "4693c6c6-9f56-43ff-bd17-15223c102ed6", + "id": "827cac96-20ec-4570-80fd-1eb5b74d8362", "name": "Get profile types", "request": { "name": "Get profile types", @@ -11185,7 +11185,7 @@ }, "response": [ { - "id": "dc036198-7f6c-40a7-ac30-a485cd420534", + "id": "ed7f749b-7a51-4584-abd1-08c0c6d2ab26", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11278,12 +11278,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco deseruntelit laborismini\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"idquisquis occaecatinUtanim ut s\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sed dolor laborumvelit amet proi\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ad etnulla irure in et Loremirur\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"adipisicing Utcillum insed paria\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat culpa irurecillum cupi\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eu deserunt laborisexercitation \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"veniam in reprehenderit utexerci\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laborum nondo Excepteur aliquami\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consectetur culpa adeu incididun\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": -57957610,\n \"offset\": -49188694,\n \"total\": 46967050,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"profile_types\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cillum tempor ipsum doloreincidi\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"commodo mollit do exercitation d\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"esse nulla magna laborumut adipi\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"mollit sint voluptatesunt tempor\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irureUt culpa irureullamco occae\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exercitation Loremoccaecat ea in\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Excepteur nulla sed aliquipsint \",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eiusmod laborecillum Ut sedut qu\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"sunt amet reprehenderit cupidata\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"adametqui ipsum sunt Utmagna dol\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n ],\n \"_metadata\": {\n \"limit\": 85171829,\n \"offset\": -2603624,\n \"total\": 76859205,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c7c5de86-0919-4348-bed5-652e14c1c0ec", + "id": "de69483c-b332-41c6-a45a-bf27e9d968ba", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11381,7 +11381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e527f82c-b052-4d5a-8628-24742c288dc9", + "id": "ebdf0ea2-9398-4cf4-9460-e8a848e82934", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11485,7 +11485,7 @@ } }, { - "id": "b6b7ef6e-faa5-4732-ad32-9429e20c8af8", + "id": "fc7576bc-6d5a-40a2-8a63-113433721b67", "name": "Find profile type by id", "request": { "name": "Find profile type by id", @@ -11527,7 +11527,7 @@ }, "response": [ { - "id": "b1931693-6abc-47be-a343-6c596fc48c3e", + "id": "656663cb-af66-4de6-914f-4f9514e8e211", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11566,12 +11566,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"tempor amet fugiat quiquis cupid\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat estaute doloreipsum do\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore utenim inutin sint esse a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"pariatur ullamco esse nulla offi\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboris veniam velit consequatam\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore fugiatculpaconsequatminim\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eu nisi sedest exercitation veli\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex reprehenderitipsum proidentvo\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Ut ut qui Duispariatur eiusmod m\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in culpaLorem elitcupidatat labo\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88a0827c-10a2-48bc-a79d-ac3dcc18a736", + "id": "22939cb9-bfe1-40fc-97a5-5613e37521ea", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11615,7 +11615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b20c8b75-1ef1-49a1-834b-61ca57b665b6", + "id": "620e9932-c10e-47a8-b4e3-8cf5dd41437d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11665,7 +11665,7 @@ } }, { - "id": "0c2900cb-1526-42c8-83ad-9ef045f16c71", + "id": "af882c18-4741-473e-8825-9ddd82a84436", "name": "Update a profile type by id", "request": { "name": "Update a profile type by id", @@ -11720,7 +11720,7 @@ }, "response": [ { - "id": "806a04c6-d44e-4ade-ba8f-dcf580df58a2", + "id": "6d929980-d770-468b-b135-14f11fa404e0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -11772,12 +11772,12 @@ "value": "application/json" } ], - "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"tempor amet fugiat quiquis cupid\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"cupidatat estaute doloreipsum do\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore utenim inutin sint esse a\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"pariatur ullamco esse nulla offi\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"laboris veniam velit consequatam\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", + "body": "{\n \"profile_type\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"dolore fugiatculpaconsequatminim\",\n \"name\": \"Worker\",\n \"category\": \"employee\",\n \"bypass_dup_protection\": false,\n \"archived\": false,\n \"permitted_role_ids\": [\n \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n ],\n \"isc_synced\": false,\n \"profile_type_dup_attributes\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"eu nisi sedest exercitation veli\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ex reprehenderitipsum proidentvo\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\"\n }\n ],\n \"profile_type_namings\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Ut ut qui Duispariatur eiusmod m\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in culpaLorem elitcupidatat labo\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"ne_attribute_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"order\": 0\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "500b4f8f-b48e-4867-a957-73cf343f4d9a", + "id": "bf051206-b45b-460e-883f-19beeb2f16f9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -11834,7 +11834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52f48cb3-4a79-4c46-8036-837f100c1500", + "id": "761acc2f-ca38-477a-b29a-eebb5aa5e7f1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -11897,7 +11897,7 @@ } }, { - "id": "4fc70de6-42bd-44ec-b4b3-ec70e507d1ca", + "id": "a8d52cbc-8557-4d80-b6cc-3e936ef64ea1", "name": "Delete profile type", "request": { "name": "Delete profile type", @@ -11939,7 +11939,7 @@ }, "response": [ { - "id": "c6aeec6e-acec-47f2-8cba-394d65fb4390", + "id": "1097be94-2a7c-4215-b329-f8526f9b39bb", "name": "Info about the operation", "originalRequest": { "url": { @@ -11983,7 +11983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a89b7216-66ec-465d-8590-4fea8f161fd8", + "id": "0b66925d-0a67-46c4-95a3-9a3990e5dc92", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12027,7 +12027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d61f47e-834e-4dd6-8390-ad0557914c0c", + "id": "6cf9ead9-11d0-4707-87ca-d967b58073cd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12083,7 +12083,7 @@ "description": "", "item": [ { - "id": "d0b0b578-6091-4fa1-a3a8-0aaf1ccc2618", + "id": "4847eb21-831c-47b7-a6a7-3c878493cc33", "name": "profile_types/ne_attributes synced status", "request": { "name": "profile_types/ne_attributes synced status", @@ -12181,7 +12181,7 @@ }, "response": [ { - "id": "f6a543b2-b361-465f-9a89-c10da037bd72", + "id": "ae24f982-b96a-4089-86dc-88b950c3ec25", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12267,12 +12267,12 @@ "value": "application/json" } ], - "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"aliqua mollit veniam doeu ipsum \",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"et laborein amet sunt consectetu\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", + "body": "{\n \"form\": {\n \"count\": 5,\n \"records\": [\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"nisiadcommodo fugiat veniam irur\",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n },\n {\n \"id\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\",\n \"uid\": \"dolor sunt dolor incididuntesse \",\n \"label\": \"object\",\n \"synced\": \"1246d8b3-ac29-4015-8154-dea4434a73fa\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1250b2bd-db8b-42f1-a733-190db9dcb8ec", + "id": "8716392f-49c7-49b9-abc4-36cfde52799c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12363,7 +12363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19d8bf81-750f-4867-b118-088f0093f445", + "id": "f1ed71ba-4650-4046-8019-5af8c7e5b17e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12460,7 +12460,7 @@ } }, { - "id": "d977ab53-2777-4eb9-8c24-7ce08be2702e", + "id": "2f1ab306-ec23-471e-a46c-3822d9c1cadd", "name": "Create a synced attribute", "request": { "name": "Create a synced attribute", @@ -12510,7 +12510,7 @@ }, "response": [ { - "id": "3e828549-78a2-4715-a0f1-134b7133e7f9", + "id": "689fd104-70ab-4346-8743-aa5391db2dbd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12568,7 +12568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a5ca988-8242-4b18-9525-8c3a04549d5b", + "id": "68236b34-508f-4bce-857f-81ee2cc909fe", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12626,7 +12626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ab8c6b0-90bb-43e8-9178-11a2b1857a3a", + "id": "e3e1ac21-9d01-4947-acb5-081d4c4eb83a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12690,7 +12690,7 @@ } }, { - "id": "ae40145e-cf98-4c7c-bf77-c3accc7ad3d4", + "id": "84ea6629-6037-4a4e-a6ca-71a0979eac52", "name": "Delete synced attribute", "request": { "name": "Delete synced attribute", @@ -12744,7 +12744,7 @@ }, "response": [ { - "id": "367a1ffa-50b6-47fb-a881-885011cd8317", + "id": "5d1580b9-48a3-4724-b75e-2e2e1df9b2a0", "name": "Info about the operation", "originalRequest": { "url": { @@ -12790,7 +12790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21bceef4-4e85-44c0-818c-30d94712caae", + "id": "41547151-083a-4a0f-8ac7-069af0160318", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -12836,7 +12836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48b483b9-ca0c-44f5-9ad3-8f492c20bea1", + "id": "2d898780-dbb2-4007-ae6c-ae37ab29426d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -12894,7 +12894,7 @@ "description": "", "item": [ { - "id": "5fe2cbf1-525c-4a8b-98de-fc65dc272891", + "id": "f4df0c71-8e09-4167-a379-5ab21829286a", "name": "Create a profile type role", "request": { "name": "Create a profile type role", @@ -12937,7 +12937,7 @@ }, "response": [ { - "id": "ab6cd7a0-3d0d-4b60-b677-e4e9f3975c40", + "id": "ae14b1b6-a10d-40a2-974f-ca0f130f319d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -12993,7 +12993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "611a73d1-4975-442d-aa9b-1228dae8084e", + "id": "96723a4e-4d70-4f22-b80f-83f5d325fb1a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13049,7 +13049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6d819af-a5a0-4a3d-9c09-04a3b11f345c", + "id": "149a1f8f-015a-475d-85b1-7e924a6ce053", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13117,7 +13117,7 @@ "description": "", "item": [ { - "id": "9c6e5311-d107-4c4a-875a-43b8c8a07fe2", + "id": "d8930b18-15ff-4c62-be60-1dff25aa96b7", "name": "Create a profile", "request": { "name": "Create a profile", @@ -13160,7 +13160,7 @@ }, "response": [ { - "id": "62751ac0-6a02-4645-8fe4-53a793173640", + "id": "539b4bf7-1467-44a7-b08e-5b8a24126378", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13211,12 +13211,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exercitationadipisicing laborum \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irure sit aliqua nostrudex repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d52e7de9-e6c1-4f7d-af06-85f98f00c824", + "id": "d7640fb2-98ec-4b73-b505-8bb6a54cf912", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13272,7 +13272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6af91f0-a97d-478e-9c60-f63516b06d93", + "id": "6fa8e926-d746-41d3-a39a-d8eafc9e8986", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13334,7 +13334,7 @@ } }, { - "id": "603a420b-0ab6-48e9-96f3-ef8c390a5bdb", + "id": "78a525d0-6e9c-4096-92ab-b41868b63335", "name": "Get profiles", "request": { "name": "Get profiles", @@ -13446,7 +13446,7 @@ }, "response": [ { - "id": "d21f5539-aeb1-4c7c-ba2f-8181cf403020", + "id": "407c7c3b-ed8c-4aa5-a7e0-b738d6c520fa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13566,12 +13566,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"culpa nostrud labore voluptate D\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"do laborumlaborisdolor mollit co\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": -63131640,\n \"offset\": 58187994,\n \"total\": -49976980,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\",\n \"after_id\": \"4eaa719f-4312-4c5b-9264-d0eb04d4a02a\"\n }\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exaliquip Utqui culpaLorem eu re\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"magna Duis laborum estnostrud id\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": 40363907,\n \"offset\": -83841835,\n \"total\": -42654345,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\",\n \"after_id\": \"4eaa719f-4312-4c5b-9264-d0eb04d4a02a\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "921df9e5-3421-4b58-901f-1fe4c5ba49d7", + "id": "626e75a8-4443-43dd-8eb7-6c0b27182b40", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13696,7 +13696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec4c4148-c11c-4ed7-b132-50015b3076ce", + "id": "e7cf536a-af8a-4c00-aafd-b01b4f804bf2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -13827,7 +13827,7 @@ } }, { - "id": "af55c8d2-9db1-4e68-acf7-5cb104220472", + "id": "3bd8dbbf-0cff-44f9-8cea-b7bd45288849", "name": "Create multiple profiles", "request": { "name": "Create multiple profiles", @@ -13870,7 +13870,7 @@ }, "response": [ { - "id": "ba4788d7-997d-4024-b72d-adde103cae4b", + "id": "ef24e299-a822-4520-a9cd-5a1f9baee626", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -13921,12 +13921,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in occaecat in dolorDuis reprehe\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis deseruntsint occaecat labor\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ipsumaliquipdolor animdolore cil\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui consequat Excepteur cupidata\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff68afa8-c4dc-4d84-9618-e1ff81f075e4", + "id": "7e927f4a-de3f-4ecd-9f0c-c055475156ed", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -13982,7 +13982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b975873-ad54-4a2d-8e74-6b89e5e6c9d3", + "id": "97acb18f-706b-430b-969d-f0b8e326e18e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14044,7 +14044,7 @@ } }, { - "id": "014e2238-b0da-40ce-aef7-ef5dd1cd6e28", + "id": "7a18d9be-aad1-47bc-96b0-2e0be15862ba", "name": "Update multiple profiles", "request": { "name": "Update multiple profiles", @@ -14087,7 +14087,7 @@ }, "response": [ { - "id": "357d155f-03cb-4a8b-bff1-d8eea04bc3ae", + "id": "fff80594-918f-4e33-a999-0a0fabc430fa", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14138,12 +14138,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in occaecat in dolorDuis reprehe\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis deseruntsint occaecat labor\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ipsumaliquipdolor animdolore cil\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui consequat Excepteur cupidata\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2fb21f89-2328-44fd-8c1f-e0c0dada4c72", + "id": "d33da07f-2bb2-44ac-80aa-436ef80aea49", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14199,7 +14199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0db1f87c-f030-467f-8059-6fea64ddb6cb", + "id": "d6be9ca2-060c-4bed-90ed-accfa9864e1b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14261,7 +14261,7 @@ } }, { - "id": "0141393e-079f-4293-98f3-642079d90566", + "id": "8932f099-4682-46b8-8b61-1487d28d8d87", "name": "Delete multiple profiles", "request": { "name": "Delete multiple profiles", @@ -14292,7 +14292,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:6dfa1db2-7287-f45c-bf7d-a2c12ccc4600\"\n },\n {\n \"id\": \"f0a4745f-b0ee-ba38-fdcd-6d6fdba6da0f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"119477f6-6ebc-0c7b-65f6-53abaac24a53\"\n },\n {\n \"id\": \"urn:uuid:8427d289-4670-361d-87fe-a95999d370d1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -14304,7 +14304,7 @@ }, "response": [ { - "id": "53a6e8ba-69ea-45c5-991e-39abaa8319e0", + "id": "e3247fa9-82ac-49bd-8559-6fe1d042bf29", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14338,7 +14338,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:6dfa1db2-7287-f45c-bf7d-a2c12ccc4600\"\n },\n {\n \"id\": \"f0a4745f-b0ee-ba38-fdcd-6d6fdba6da0f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"119477f6-6ebc-0c7b-65f6-53abaac24a53\"\n },\n {\n \"id\": \"urn:uuid:8427d289-4670-361d-87fe-a95999d370d1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -14355,12 +14355,12 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in occaecat in dolorDuis reprehe\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis deseruntsint occaecat labor\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ipsumaliquipdolor animdolore cil\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui consequat Excepteur cupidata\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "950a3632-4239-49d3-8b6e-d8dffec89941", + "id": "c007db6a-bbbf-4f7b-861e-fad0c2955721", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14394,7 +14394,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:6dfa1db2-7287-f45c-bf7d-a2c12ccc4600\"\n },\n {\n \"id\": \"f0a4745f-b0ee-ba38-fdcd-6d6fdba6da0f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"119477f6-6ebc-0c7b-65f6-53abaac24a53\"\n },\n {\n \"id\": \"urn:uuid:8427d289-4670-361d-87fe-a95999d370d1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -14416,7 +14416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7aca0f-e810-4c1e-9f96-d2339dbe355c", + "id": "701a244d-216e-4ecc-96ba-90c099d2c47f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14450,7 +14450,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"profiles\": [\n {\n \"id\": \"urn:uuid:6dfa1db2-7287-f45c-bf7d-a2c12ccc4600\"\n },\n {\n \"id\": \"f0a4745f-b0ee-ba38-fdcd-6d6fdba6da0f\"\n }\n ]\n}", + "raw": "{\n \"profiles\": [\n {\n \"id\": \"119477f6-6ebc-0c7b-65f6-53abaac24a53\"\n },\n {\n \"id\": \"urn:uuid:8427d289-4670-361d-87fe-a95999d370d1\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -14478,7 +14478,7 @@ } }, { - "id": "8250858b-0b66-46af-9b56-55d25395d6f7", + "id": "c0cf099a-ed11-4887-bf9d-ad916b4022ef", "name": "Find profile by id", "request": { "name": "Find profile by id", @@ -14520,7 +14520,7 @@ }, "response": [ { - "id": "26126478-61c0-44fa-927f-0a08eeb005ae", + "id": "a768809a-096d-45ab-a477-3c088d73bd46", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14559,12 +14559,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exercitationadipisicing laborum \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irure sit aliqua nostrudex repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a826aa1e-3050-490f-8734-11670eb6f1c2", + "id": "05ff14a4-81b2-4725-bfc9-461187971c98", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14608,7 +14608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d868ec4-f7d6-4fb0-951d-fd65d39179ed", + "id": "51de637c-617e-4820-899f-eddad2c39de1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14658,7 +14658,7 @@ } }, { - "id": "a8f4c326-e436-4292-9708-67af886cb271", + "id": "09b3b9f6-4ff1-482d-9824-bc14d8a38dcb", "name": "Update a profile by id", "request": { "name": "Update a profile by id", @@ -14713,7 +14713,7 @@ }, "response": [ { - "id": "edc6b0fb-a6fe-4d23-bb52-0cb601c69b14", + "id": "7a883290-0c9f-450f-b4de-6c86b04c1918", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -14765,12 +14765,12 @@ "value": "application/json" } ], - "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"exercitationadipisicing laborum \",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"profile\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irure sit aliqua nostrudex repre\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b8dabd5e-1ec0-4730-a5c1-dd6465306160", + "id": "9caaa122-2877-439e-8c56-0fb80d5e082e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -14827,7 +14827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b617ed4d-ec41-48db-9d7a-d8758fc63046", + "id": "3ed357ed-47e6-416f-9cb8-bf9d320a2603", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -14890,7 +14890,7 @@ } }, { - "id": "5ae57f3f-ef0a-4a80-b4eb-ed7484df8cca", + "id": "3232858f-f793-43d5-aa76-5c1dab6c2bf8", "name": "Delete a single profile", "request": { "name": "Delete a single profile", @@ -14932,7 +14932,7 @@ }, "response": [ { - "id": "eb388373-d4bc-4819-b93b-21e4dc6a52a6", + "id": "ad3a6b2e-f972-492b-9426-8b0ea860008c", "name": "The Profile was successfully deleted.", "originalRequest": { "url": { @@ -14966,7 +14966,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f495a1c8-38f8-4ca5-903d-f1bd9622182b", + "id": "2947e1bc-39ab-4687-96e0-2d5e3c30a912", "name": "Error deleting Profile", "originalRequest": { "url": { @@ -15005,12 +15005,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"in aute anim exercitation do\"\n}", + "body": "{\n \"error\": \"ut ullamco eiusmod quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e3a2db88-95a8-4d98-bf0e-12f01221606e", + "id": "86d14e03-00a1-4222-b12a-c56423c68ede", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15060,7 +15060,7 @@ } }, { - "id": "266f90ec-e6c1-4b04-a53d-10f539d43199", + "id": "013a14e5-3b78-4b0c-bb4f-eded3d9ec055", "name": "Retrieves the URL of an attachment attribute value from a profile", "request": { "name": "Retrieves the URL of an attachment attribute value from a profile", @@ -15114,7 +15114,7 @@ }, "response": [ { - "id": "b7cbf4e3-f244-4147-af9b-881fb913cbbe", + "id": "1482b403-5222-46b8-a7d7-7f541d12be44", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15155,12 +15155,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a9c63f44-2732-475c-9473-d403f5786a8a", + "id": "dbb7957e-00e2-4990-a1fc-cc2fac7ad936", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15206,7 +15206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb20d4c9-875d-4ac5-b465-a499260fa913", + "id": "359c4b31-d6ee-47a4-8dd7-c84eb4457e95", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15258,7 +15258,7 @@ } }, { - "id": "23268618-a49c-4a2e-98bb-5c85997606ee", + "id": "00034e0f-8045-4800-b640-cf2d7cb1b6c2", "name": "Uploads a new attachment attribute value to a profile", "request": { "name": "Uploads a new attachment attribute value to a profile", @@ -15328,7 +15328,7 @@ }, "response": [ { - "id": "608271cd-ce0e-45c7-b31c-c956017d05bf", + "id": "2d855a25-9776-4d7a-83d8-615a09ea0291", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15385,12 +15385,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c999343d-5bc4-4310-80d6-f4f907889ddb", + "id": "ee994f41-2626-4d29-9084-48e2efbfd00c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15452,7 +15452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9074b43c-3b1d-4dd6-92c8-56f8091498fb", + "id": "9ec5e3e2-18b8-45bc-9701-f8d4ae1e057b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15520,7 +15520,7 @@ } }, { - "id": "d46a426c-3969-439a-bf4d-c4c3643d82a1", + "id": "a7552f56-a885-479f-a2a2-7efc8178ba32", "name": "Retrieves the URL of the profile avatar", "request": { "name": "Retrieves the URL of the profile avatar", @@ -15563,7 +15563,7 @@ }, "response": [ { - "id": "cfae7834-1f94-423c-a5c2-b3adcb72b49b", + "id": "d91a20a3-4e29-4b8b-add6-853f09a319bf", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15603,12 +15603,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af5648da-59af-431e-8d67-9babab73d662", + "id": "124a060c-ac08-4ae0-bcfc-efac82b44047", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15653,7 +15653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c338ffd3-17bd-490f-a3c3-ac01c2a07e66", + "id": "fb82bb3d-f0b4-4f56-8462-f97ef7e3e946", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15704,7 +15704,7 @@ } }, { - "id": "fc5a4653-fd82-4d8f-88e2-6b93382ebdc4", + "id": "3aad183d-fc86-4a0a-8043-28441e2a7401", "name": "Uploads a new profile avatar", "request": { "name": "Uploads a new profile avatar", @@ -15763,7 +15763,7 @@ }, "response": [ { - "id": "101dd753-8a97-41c5-a7fb-501b3ecdc387", + "id": "bc4cc70c-2778-421e-a453-8b7d0e2a7015", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -15819,12 +15819,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c8abbc56-20c8-4002-a2eb-d59ac8e7cc52", + "id": "60d795dd-5972-4244-9bd4-a238d7f913e9", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -15885,7 +15885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e1a1672-649e-4bd7-bb7b-352a5d697d67", + "id": "3ece27c6-2166-4274-a34d-2393e53b924d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -15958,7 +15958,7 @@ "description": "", "item": [ { - "id": "8c245d26-cbb4-4e92-9180-f5bce1eb1d86", + "id": "0fb754fd-52bd-4749-8550-5d843eeae2ca", "name": "Get risk score data in bulk", "request": { "name": "Get risk score data in bulk", @@ -16008,7 +16008,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16017,7 +16017,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -16026,7 +16026,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16035,7 +16035,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16044,7 +16044,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16070,7 +16070,7 @@ }, "response": [ { - "id": "53f93027-c187-4768-aab6-dc7a2636fe7d", + "id": "f4f56f8a-6cfe-4d25-802a-b1ad46ccb89f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16115,7 +16115,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16124,7 +16124,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -16133,7 +16133,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16142,7 +16142,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16151,7 +16151,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16190,12 +16190,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_scores\": [\n {\n \"id\": \"urn:uuid:f94f221a-ebf7-663e-73fb-d82ace948fb8\",\n \"uid\": \"nisicommodo adipisicing qui magn\",\n \"object_id\": \"ba74824a-101a-fa35-4619-033a80ff240e\",\n \"object_type\": \"Profile\",\n \"overall_score\": 48101.450000000004,\n \"overall_risk_level_id\": \"urn:uuid:5ff6a6aa-b588-514b-06cf-67d132a0c4d2\",\n \"impact_score\": 159941058.49,\n \"impact_risk_level_id\": \"urn:uuid:df0a6e03-a7f5-fe3b-42b5-e01cd46d8ee2\",\n \"probability_score\": 128744427.99000001,\n \"probability_risk_level_id\": \"urn:uuid:2de4d289-03b7-27eb-0958-17aae41d1de1\"\n },\n {\n \"id\": \"urn:uuid:252eef94-8996-a10d-135c-719ddd1f2df8\",\n \"uid\": \"eu qui commodo magna doin enim e\",\n \"object_id\": \"b445a81e-81b1-f0dc-63f4-909f1d224999\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 98010727.71000001,\n \"overall_risk_level_id\": \"urn:uuid:82308d34-2300-edaf-f68b-8cb3b8149392\",\n \"impact_score\": 15888798.030000001,\n \"impact_risk_level_id\": \"urn:uuid:034b2e5f-4c1c-1168-dd6c-33ba42c7213e\",\n \"probability_score\": 61362614.5,\n \"probability_risk_level_id\": \"urn:uuid:68fb9f3e-646e-f5a9-f00a-5158469b8a6a\"\n }\n ],\n \"_metadata\": {\n \"limit\": 38092096,\n \"offset\": 51100369,\n \"total\": 14832726,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_scores\": [\n {\n \"id\": \"urn:uuid:fe998531-8b3d-2da3-1bcb-f9bf91e76843\",\n \"uid\": \"aliquip exercitation ut aliqua a\",\n \"object_id\": \"urn:uuid:3ebe4176-cb4d-97d1-98ee-b08c1c71064f\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 96665695.41,\n \"overall_risk_level_id\": \"urn:uuid:6b3bae74-756a-594e-2adb-f4c0eba79d6e\",\n \"impact_score\": 886377.48,\n \"impact_risk_level_id\": \"urn:uuid:340a159a-3bbc-2161-9bde-90f09fc8778a\",\n \"probability_score\": 40331567.79,\n \"probability_risk_level_id\": \"urn:uuid:c6ceb628-f86c-3388-5865-6f17456926a9\"\n },\n {\n \"id\": \"urn:uuid:ceb67e8a-6a2e-e530-5149-0a0b0c406b2d\",\n \"uid\": \"qui laborum ut officia suntenim \",\n \"object_id\": \"urn:uuid:bbbfb1e7-7db0-7256-a9c5-50753ace3bfa\",\n \"object_type\": \"Profile\",\n \"overall_score\": 23523258.830000002,\n \"overall_risk_level_id\": \"urn:uuid:4c327cca-4a48-48f9-7a29-e64b1227aa34\",\n \"impact_score\": 91651973.71000001,\n \"impact_risk_level_id\": \"75a1a4f4-78e8-7253-2c0c-9db3b1de1d32\",\n \"probability_score\": 97831421.97,\n \"probability_risk_level_id\": \"5b90bb85-54b3-4be9-1626-46b83e8ba4de\"\n }\n ],\n \"_metadata\": {\n \"limit\": 81223322,\n \"offset\": 3401675,\n \"total\": 69350542,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5ed8ac7d-9190-430f-bc6b-485e0576357e", + "id": "a367d7a6-3c91-4de3-955f-b4aceb10dc05", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16240,7 +16240,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16249,7 +16249,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -16258,7 +16258,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16267,7 +16267,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16276,7 +16276,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16320,7 +16320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a7e13ff-d952-42f1-9053-b8a9a0df86a4", + "id": "f1d5a972-b538-4301-901e-4496e82f8c78", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16365,7 +16365,7 @@ "type": "text/plain" }, "key": "object_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16374,7 +16374,7 @@ "type": "text/plain" }, "key": "object_type", - "value": "Profile" + "value": "WorkflowSession" }, { "disabled": false, @@ -16383,7 +16383,7 @@ "type": "text/plain" }, "key": "overall_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16392,7 +16392,7 @@ "type": "text/plain" }, "key": "impact_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16401,7 +16401,7 @@ "type": "text/plain" }, "key": "probability_risk_level_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -16451,7 +16451,7 @@ } }, { - "id": "b3c19652-8d7d-48c4-a9ce-8bbb50c8d7e9", + "id": "a1581937-21fb-44f7-81d7-0126d60b8e77", "name": "Find risk score data by id", "request": { "name": "Find risk score data by id", @@ -16493,7 +16493,7 @@ }, "response": [ { - "id": "7f14f0bb-3e12-4787-808f-ab8c19bac384", + "id": "12fd6c78-58f9-4f59-9eb0-9cf5c536fbae", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16532,12 +16532,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_score\": {\n \"id\": \"urn:uuid:407b531b-0ab5-0b9f-0957-9f17efa4dd71\",\n \"uid\": \"exercitation tempor sint quirepr\",\n \"object_id\": \"7d9fbf36-09d9-e0c9-205b-602a1c9f434b\",\n \"object_type\": \"Profile\",\n \"overall_score\": 199609302.28,\n \"overall_risk_level_id\": \"urn:uuid:b018ca63-f418-beb1-faa0-6f062f1ebcde\",\n \"impact_score\": 37544657.49,\n \"impact_risk_level_id\": \"985421d3-655d-4e84-d452-1c6d473ac21f\",\n \"probability_score\": 104782018.62,\n \"probability_risk_level_id\": \"bfdae179-5314-79a0-14ad-2b6f02999a04\"\n }\n}", + "body": "{\n \"risk_score\": {\n \"id\": \"urn:uuid:3e0cfda3-6624-62eb-6ea7-d572cec51780\",\n \"uid\": \"mollit officiafugiat non Duisinm\",\n \"object_id\": \"1f6ee595-1728-6eb7-8450-0811c47732f4\",\n \"object_type\": \"WorkflowSession\",\n \"overall_score\": 58423920.230000004,\n \"overall_risk_level_id\": \"urn:uuid:dcf52d9e-6868-5d8e-f992-eb45bc97f264\",\n \"impact_score\": 132303111.55,\n \"impact_risk_level_id\": \"d5c0e824-64e8-a5eb-1d3b-1f308c513c22\",\n \"probability_score\": 42361030.49,\n \"probability_risk_level_id\": \"8d0a80b1-9101-65b7-92ce-a8f9192b8c1e\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fdc12743-260c-4b74-bea1-277879ad529d", + "id": "209fdf46-1768-4860-b4bc-8d5f42910a7f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16581,7 +16581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8339bf86-7331-4f77-ac88-bfcff5760526", + "id": "e0a52a7b-4ff5-4d40-9b0e-8c8a38f27a37", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16637,7 +16637,7 @@ "description": "", "item": [ { - "id": "4ced069e-2d08-4ee8-b307-b7c87daf96f7", + "id": "9e3db9b0-8653-43fd-bba0-9f9296e00197", "name": "Get risk level data in bulk", "request": { "name": "Get risk level data in bulk", @@ -16713,7 +16713,7 @@ }, "response": [ { - "id": "c4025a9d-bfb1-4a0f-84b8-75c79209467c", + "id": "94c35a49-6602-4183-821c-428bc1f58c84", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -16797,12 +16797,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_levels\": [\n {\n \"id\": \"urn:uuid:911e9a18-aecb-52c5-24c8-a30eea3f1349\",\n \"uid\": \"irure minim dolor estdeserunt Ex\",\n \"label\": \"fugiat nostrud veniam dolor\",\n \"points\": 165876955.65,\n \"order\": 33836242\n },\n {\n \"id\": \"urn:uuid:941b7309-8c1b-f96f-55e5-3849c50eb14e\",\n \"uid\": \"officia consequatamet eu sunt la\",\n \"label\": \"eu cupidatat vel\",\n \"points\": 116015936.43,\n \"order\": 48576321\n }\n ],\n \"_metadata\": {\n \"limit\": -49465526,\n \"offset\": -11734145,\n \"total\": 39545908,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"risk_levels\": [\n {\n \"id\": \"urn:uuid:52fc2a21-0cb2-35df-1b1a-737d6cc8a81d\",\n \"uid\": \"cillumconsectetur pariatur volup\",\n \"label\": \"laboris laborum mollit ipsum\",\n \"points\": 76097639.51,\n \"order\": 27349945\n },\n {\n \"id\": \"c2870a32-58eb-c5f8-d9f1-a78b4642a37c\",\n \"uid\": \"deserunt veniameiusmod ad repreh\",\n \"label\": \"voluptate incididunt magna\",\n \"points\": 188127474.38,\n \"order\": 81808178\n }\n ],\n \"_metadata\": {\n \"limit\": -11014115,\n \"offset\": 37224130,\n \"total\": -46104130,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0ec5cfd2-2f30-424d-b43f-d09f8c680426", + "id": "9f49bb9e-bedb-48c6-a048-8426fe2027ee", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -16891,7 +16891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1dcbc8d-cd22-4b99-9e63-46cc49393860", + "id": "cb5780c5-9960-420d-9807-d68da7485ce2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -16986,7 +16986,7 @@ } }, { - "id": "cc5b6020-6f82-4850-874b-ce8b0f2a84bc", + "id": "0b7b99e8-4997-4225-b854-984ec76646b6", "name": "Find risk level data by id", "request": { "name": "Find risk level data by id", @@ -17028,7 +17028,7 @@ }, "response": [ { - "id": "6f8da13b-dded-4d0a-85ea-4951029f4b49", + "id": "1c157b58-1257-4a05-aaa4-901f39184077", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17067,12 +17067,12 @@ "value": "application/json" } ], - "body": "{\n \"risk_level\": {\n \"id\": \"660cb311-75bf-9c83-bcd5-bd78219f5b38\",\n \"uid\": \"irure cillum incididuntanim aute\",\n \"label\": \"et\",\n \"points\": 189731598.15,\n \"order\": 703096\n }\n}", + "body": "{\n \"risk_level\": {\n \"id\": \"4565559c-8b8b-b6fa-3e8c-e4e480f1e930\",\n \"uid\": \"sit occaecat reprehenderitproide\",\n \"label\": \"eiusmod culpa\",\n \"points\": 113426574.2,\n \"order\": 40741313\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f8645f5-7503-4fa7-8eee-91ce301f4c9c", + "id": "9ed92493-4ed1-4861-9f99-98a698c0455f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17116,7 +17116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abe6addf-dbe0-4f84-a4a9-ca860a6db25e", + "id": "6417a999-eae7-40f1-92c7-9069e5de9678", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17172,7 +17172,7 @@ "description": "", "item": [ { - "id": "2c136360-465a-4ec4-be7e-b57942d44ff0", + "id": "a84b7fa8-867e-4e69-8ddc-0fe9184643d3", "name": "Create a user-profile contributor relationship", "request": { "name": "Create a user-profile contributor relationship", @@ -17203,7 +17203,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17215,7 +17215,7 @@ }, "response": [ { - "id": "df417fa8-1cd8-4cd7-952e-1e71ab88c068", + "id": "814f83be-197e-4e3c-96a0-27cd309a7cdb", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17249,7 +17249,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17266,12 +17266,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"8718dc95-39b4-6c4b-669a-187fda5a90c7\",\n \"uid\": \"et voluptatesint consecteturex m\",\n \"user_id\": \"981eb9af-cbd7-cc73-a427-5c2eef762e8c\",\n \"profile_id\": \"urn:uuid:dcc6ab8e-c5b7-e44a-9814-8fc1c382f989\",\n \"ne_attribute_id\": \"a2518afb-ad34-02d6-b72f-8ffbfefe8b62\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:97213a3d-1be3-ecaf-1e8a-9810fe1955cf\",\n \"uid\": \"mollit sintquis occaecat irure E\",\n \"user_id\": \"5127db7f-15b2-0a4b-ea1b-da497470f4ac\",\n \"profile_id\": \"24277002-cb52-f81d-9e94-73707ad29b2b\",\n \"ne_attribute_id\": \"865b3fa5-89ac-08f1-4602-ef0124db8b86\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a84ea2f7-fd85-4f19-a1e5-ed3120825e6d", + "id": "1dd3edd7-0977-4330-8a9c-707d786c75ed", "name": "Invalid input", "originalRequest": { "url": { @@ -17301,7 +17301,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -17323,7 +17323,7 @@ } }, { - "id": "c02ce6e3-e805-4326-af65-91db4e0e719f", + "id": "d7492ade-d723-409e-93be-2ccb1152533b", "name": "Get user-profile contributor relationships", "request": { "name": "Get user-profile contributor relationships", @@ -17426,7 +17426,7 @@ }, "response": [ { - "id": "a4580449-79d2-4249-932f-9d40dcd8e0ae", + "id": "d21008c1-b5ab-4228-8172-6eae2ba0cc42", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17537,12 +17537,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:88c0ea92-0985-a0ab-1997-26319d8c812c\",\n \"uid\": \"ipsumtempor Duis labore laborisL\",\n \"user_id\": \"urn:uuid:8c2eef8c-1fee-a9e8-b179-d2f361e61041\",\n \"profile_id\": \"urn:uuid:10f81065-049e-ec5d-48e5-5229f3619338\",\n \"ne_attribute_id\": \"3c6c3371-0cfc-a06b-33e0-8b35df4df70d\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:49d0906b-c458-7e2a-a2fd-0d9e0232d069\",\n \"uid\": \"exercitation etLorem mollit quis\",\n \"user_id\": \"9a5b0986-e67f-9f69-b1c3-4d368aad3290\",\n \"profile_id\": \"urn:uuid:c36bc17d-ce20-fbb9-2658-5b7c6b634e06\",\n \"ne_attribute_id\": \"urn:uuid:29b1ff23-1609-f6ad-b247-17f4bd932b8b\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": -56010866,\n \"offset\": 80888212,\n \"total\": 65712181,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"60cb76a2-4e66-e794-3228-f4e3105059e9\",\n \"uid\": \"in sunt laboris in eulabore cill\",\n \"user_id\": \"28311969-dd97-081d-3b7f-390227a73afd\",\n \"profile_id\": \"84bde788-fb03-f9ef-1b4e-02c5107efb87\",\n \"ne_attribute_id\": \"urn:uuid:3c0db2b5-f71d-00d1-bc5f-8b997781a936\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"e03d0341-8424-4848-3a8a-45ec11f77b5b\",\n \"uid\": \"ipsum aliqua Duis cupidatat dese\",\n \"user_id\": \"5deb7811-7ada-6ede-e64b-faf20183ed61\",\n \"profile_id\": \"urn:uuid:325f131d-5af7-c5c2-6545-adbe82658d06\",\n \"ne_attribute_id\": \"fd576518-e245-71a6-d90b-8f9ab2ea67f8\",\n \"relationship_type\": \"contributor\"\n }\n ],\n \"_metadata\": {\n \"limit\": 25175224,\n \"offset\": 41697117,\n \"total\": -70300467,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "04c7fe48-74ff-441c-83b3-08fddecd38b0", + "id": "116555af-8447-46a0-a2ed-f5aab5198728", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17658,7 +17658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b80af8d2-3568-407a-8dcc-90c13c0f79be", + "id": "0e331978-a71d-4d1c-8a11-82fb66dc7262", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17780,7 +17780,7 @@ } }, { - "id": "aa9dadcf-d059-4525-ba5a-3106a9a28acf", + "id": "be153202-633c-4b66-98bf-4707217acf3a", "name": "Create multiple user-profile contributor relationships", "request": { "name": "Create multiple user-profile contributor relationships", @@ -17811,7 +17811,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:2ef857ee-0241-738d-5cd9-21a83bcbe457\",\n \"profile_id\": \"b5e41e33-8fb1-08b2-7a68-819e40a978cb\",\n \"ne_attribute_id\": \"urn:uuid:52b3358c-9d94-61c9-1b2e-c23f3a6cb497\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"98fda191-c2fd-226e-a7a7-2a731f74a13d\",\n \"profile_id\": \"cf335c33-6835-9f18-e01e-316df276281d\",\n \"ne_attribute_id\": \"urn:uuid:afb99a7c-d628-4ec3-8ee3-433664150ae4\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:61fcade7-6209-1d76-b962-8a7d33d5f065\",\n \"profile_id\": \"urn:uuid:9d476fc6-63db-205e-8a3f-3ac905c13026\",\n \"ne_attribute_id\": \"a8441c22-e4b2-5ebf-df49-62f310bdb5bc\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:d5bb5d0e-e2bc-824a-651e-d33d1b422b80\",\n \"profile_id\": \"e29dec44-d9d7-fb68-7b2a-a08062af1b28\",\n \"ne_attribute_id\": \"urn:uuid:94afaa70-e3ae-1402-1971-d353af5c0959\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17823,7 +17823,7 @@ }, "response": [ { - "id": "6c353535-17f3-4ce9-a1e9-1f6e2e0a2469", + "id": "cb3f85b8-49e1-470a-b0fc-f3cfe5ff17dd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -17857,7 +17857,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:2ef857ee-0241-738d-5cd9-21a83bcbe457\",\n \"profile_id\": \"b5e41e33-8fb1-08b2-7a68-819e40a978cb\",\n \"ne_attribute_id\": \"urn:uuid:52b3358c-9d94-61c9-1b2e-c23f3a6cb497\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"98fda191-c2fd-226e-a7a7-2a731f74a13d\",\n \"profile_id\": \"cf335c33-6835-9f18-e01e-316df276281d\",\n \"ne_attribute_id\": \"urn:uuid:afb99a7c-d628-4ec3-8ee3-433664150ae4\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:61fcade7-6209-1d76-b962-8a7d33d5f065\",\n \"profile_id\": \"urn:uuid:9d476fc6-63db-205e-8a3f-3ac905c13026\",\n \"ne_attribute_id\": \"a8441c22-e4b2-5ebf-df49-62f310bdb5bc\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:d5bb5d0e-e2bc-824a-651e-d33d1b422b80\",\n \"profile_id\": \"e29dec44-d9d7-fb68-7b2a-a08062af1b28\",\n \"ne_attribute_id\": \"urn:uuid:94afaa70-e3ae-1402-1971-d353af5c0959\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17874,12 +17874,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"74a9ecdc-be67-ff7d-0f65-6632f71c6b88\",\n \"uid\": \"eiusmod consectetur minim sitips\",\n \"user_id\": \"urn:uuid:c63ab45d-4d52-61ba-9976-0df02f480252\",\n \"profile_id\": \"4b57b11e-5f24-46ec-31f6-48b47fb074d5\",\n \"ne_attribute_id\": \"2c696740-8844-ae3b-863f-7b6dd2d0078c\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"f841b1c5-8dba-d8ea-837c-a884cd6948fb\",\n \"uid\": \"culpa nulla estamet mollit dolor\",\n \"user_id\": \"3517e426-c3a2-47ca-f738-30d69c8979af\",\n \"profile_id\": \"18bfa4b4-5c07-117e-9a09-4865f817ef61\",\n \"ne_attribute_id\": \"02fb4a86-2d3a-609d-3aa9-c2aef9c1467b\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:fe1d93e6-ec0f-42e7-1c23-d3bfe5fa1f68\",\n \"uid\": \"in quielit in ipsum exercitation\",\n \"user_id\": \"urn:uuid:5bf1f645-cc5e-0a5e-e0c2-2016881ef56a\",\n \"profile_id\": \"4090c1bb-8bcc-e31e-61df-e54b55fb7896\",\n \"ne_attribute_id\": \"urn:uuid:d5d29ce6-284f-3e00-b120-3e4d211573bd\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"25093628-062c-42e0-61df-1422516b5609\",\n \"uid\": \"quis aute Duissed quis exercitat\",\n \"user_id\": \"urn:uuid:18bebd56-7297-0be9-9641-c4b9d0949266\",\n \"profile_id\": \"urn:uuid:9423f61a-8245-d377-dca6-294d828e3f13\",\n \"ne_attribute_id\": \"883725ba-e36c-1473-39ff-d203ad6f1726\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "863c4475-3d4a-473d-a506-9ccff7fa8385", + "id": "4c971146-1ae9-49ef-8de4-3a1b76d97fae", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -17913,7 +17913,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:2ef857ee-0241-738d-5cd9-21a83bcbe457\",\n \"profile_id\": \"b5e41e33-8fb1-08b2-7a68-819e40a978cb\",\n \"ne_attribute_id\": \"urn:uuid:52b3358c-9d94-61c9-1b2e-c23f3a6cb497\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"98fda191-c2fd-226e-a7a7-2a731f74a13d\",\n \"profile_id\": \"cf335c33-6835-9f18-e01e-316df276281d\",\n \"ne_attribute_id\": \"urn:uuid:afb99a7c-d628-4ec3-8ee3-433664150ae4\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:61fcade7-6209-1d76-b962-8a7d33d5f065\",\n \"profile_id\": \"urn:uuid:9d476fc6-63db-205e-8a3f-3ac905c13026\",\n \"ne_attribute_id\": \"a8441c22-e4b2-5ebf-df49-62f310bdb5bc\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:d5bb5d0e-e2bc-824a-651e-d33d1b422b80\",\n \"profile_id\": \"e29dec44-d9d7-fb68-7b2a-a08062af1b28\",\n \"ne_attribute_id\": \"urn:uuid:94afaa70-e3ae-1402-1971-d353af5c0959\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17935,7 +17935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f90e50f-741a-4d96-8a30-5d9b7c36f8b8", + "id": "eca12ade-196f-448a-a924-397711d6d596", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -17969,7 +17969,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:2ef857ee-0241-738d-5cd9-21a83bcbe457\",\n \"profile_id\": \"b5e41e33-8fb1-08b2-7a68-819e40a978cb\",\n \"ne_attribute_id\": \"urn:uuid:52b3358c-9d94-61c9-1b2e-c23f3a6cb497\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"user_id\": \"98fda191-c2fd-226e-a7a7-2a731f74a13d\",\n \"profile_id\": \"cf335c33-6835-9f18-e01e-316df276281d\",\n \"ne_attribute_id\": \"urn:uuid:afb99a7c-d628-4ec3-8ee3-433664150ae4\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"user_id\": \"urn:uuid:61fcade7-6209-1d76-b962-8a7d33d5f065\",\n \"profile_id\": \"urn:uuid:9d476fc6-63db-205e-8a3f-3ac905c13026\",\n \"ne_attribute_id\": \"a8441c22-e4b2-5ebf-df49-62f310bdb5bc\",\n \"relationship_type\": \"owner\"\n },\n {\n \"user_id\": \"urn:uuid:d5bb5d0e-e2bc-824a-651e-d33d1b422b80\",\n \"profile_id\": \"e29dec44-d9d7-fb68-7b2a-a08062af1b28\",\n \"ne_attribute_id\": \"urn:uuid:94afaa70-e3ae-1402-1971-d353af5c0959\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -17997,7 +17997,7 @@ } }, { - "id": "73d1063e-e58e-4493-b4aa-8a61b48982ae", + "id": "1e9e34fc-46a6-4b18-8481-ed789627b52a", "name": "Update multiple user-profile contributor relationships", "request": { "name": "Update multiple user-profile contributor relationships", @@ -18028,7 +18028,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"1da73287-72cf-0a97-012a-3ae0c58bf586\",\n \"user_id\": \"urn:uuid:37e25608-4041-f98c-44c7-45e1c89ef0a0\",\n \"profile_id\": \"0ea77780-8305-e2e1-3aac-d318e2444089\",\n \"ne_attribute_id\": \"urn:uuid:3790eaeb-4e55-47a6-61c8-01debe58d010\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:8c257d90-dcfa-9cda-8e77-6410bb51f52c\",\n \"user_id\": \"urn:uuid:dbbdec8c-84c9-eefa-98a1-161ab7a37955\",\n \"profile_id\": \"urn:uuid:000222d1-4fd3-c4ee-be7c-a6b191fde6b9\",\n \"ne_attribute_id\": \"urn:uuid:8248b21a-2878-2aa6-1b6b-7e3d0226ae3d\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18f3030f-a98e-2827-0351-14c19301d5ad\",\n \"user_id\": \"cfae6883-98de-e72b-8d02-80fcc4bcd12f\",\n \"profile_id\": \"urn:uuid:103b3412-9d01-2a4d-6938-8cba7a6cb56e\",\n \"ne_attribute_id\": \"a282ae51-4d67-2ffc-0aa6-d5b479e0fdd5\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3eca7d00-128c-dcad-783e-ef3ee1f22773\",\n \"user_id\": \"urn:uuid:2ec35564-96ca-cbc6-667a-98bf2349af05\",\n \"profile_id\": \"a24a5806-f3e2-2d7f-a55a-fc2704788c27\",\n \"ne_attribute_id\": \"urn:uuid:fe6f37cb-0a49-cbb0-f42a-c78c4795c735\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18040,7 +18040,7 @@ }, "response": [ { - "id": "8547cf7d-43e4-4b36-8ed4-9e2ff93ce48d", + "id": "e40d1939-683b-41fd-bb28-0bbe4c3637da", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18074,7 +18074,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"1da73287-72cf-0a97-012a-3ae0c58bf586\",\n \"user_id\": \"urn:uuid:37e25608-4041-f98c-44c7-45e1c89ef0a0\",\n \"profile_id\": \"0ea77780-8305-e2e1-3aac-d318e2444089\",\n \"ne_attribute_id\": \"urn:uuid:3790eaeb-4e55-47a6-61c8-01debe58d010\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:8c257d90-dcfa-9cda-8e77-6410bb51f52c\",\n \"user_id\": \"urn:uuid:dbbdec8c-84c9-eefa-98a1-161ab7a37955\",\n \"profile_id\": \"urn:uuid:000222d1-4fd3-c4ee-be7c-a6b191fde6b9\",\n \"ne_attribute_id\": \"urn:uuid:8248b21a-2878-2aa6-1b6b-7e3d0226ae3d\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18f3030f-a98e-2827-0351-14c19301d5ad\",\n \"user_id\": \"cfae6883-98de-e72b-8d02-80fcc4bcd12f\",\n \"profile_id\": \"urn:uuid:103b3412-9d01-2a4d-6938-8cba7a6cb56e\",\n \"ne_attribute_id\": \"a282ae51-4d67-2ffc-0aa6-d5b479e0fdd5\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3eca7d00-128c-dcad-783e-ef3ee1f22773\",\n \"user_id\": \"urn:uuid:2ec35564-96ca-cbc6-667a-98bf2349af05\",\n \"profile_id\": \"a24a5806-f3e2-2d7f-a55a-fc2704788c27\",\n \"ne_attribute_id\": \"urn:uuid:fe6f37cb-0a49-cbb0-f42a-c78c4795c735\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18091,12 +18091,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"74a9ecdc-be67-ff7d-0f65-6632f71c6b88\",\n \"uid\": \"eiusmod consectetur minim sitips\",\n \"user_id\": \"urn:uuid:c63ab45d-4d52-61ba-9976-0df02f480252\",\n \"profile_id\": \"4b57b11e-5f24-46ec-31f6-48b47fb074d5\",\n \"ne_attribute_id\": \"2c696740-8844-ae3b-863f-7b6dd2d0078c\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"f841b1c5-8dba-d8ea-837c-a884cd6948fb\",\n \"uid\": \"culpa nulla estamet mollit dolor\",\n \"user_id\": \"3517e426-c3a2-47ca-f738-30d69c8979af\",\n \"profile_id\": \"18bfa4b4-5c07-117e-9a09-4865f817ef61\",\n \"ne_attribute_id\": \"02fb4a86-2d3a-609d-3aa9-c2aef9c1467b\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:fe1d93e6-ec0f-42e7-1c23-d3bfe5fa1f68\",\n \"uid\": \"in quielit in ipsum exercitation\",\n \"user_id\": \"urn:uuid:5bf1f645-cc5e-0a5e-e0c2-2016881ef56a\",\n \"profile_id\": \"4090c1bb-8bcc-e31e-61df-e54b55fb7896\",\n \"ne_attribute_id\": \"urn:uuid:d5d29ce6-284f-3e00-b120-3e4d211573bd\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"25093628-062c-42e0-61df-1422516b5609\",\n \"uid\": \"quis aute Duissed quis exercitat\",\n \"user_id\": \"urn:uuid:18bebd56-7297-0be9-9641-c4b9d0949266\",\n \"profile_id\": \"urn:uuid:9423f61a-8245-d377-dca6-294d828e3f13\",\n \"ne_attribute_id\": \"883725ba-e36c-1473-39ff-d203ad6f1726\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a013426-1967-4229-b7ec-efadabd7cacc", + "id": "42e6138f-b3db-4d6e-9257-2034e8a0d535", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18130,7 +18130,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"1da73287-72cf-0a97-012a-3ae0c58bf586\",\n \"user_id\": \"urn:uuid:37e25608-4041-f98c-44c7-45e1c89ef0a0\",\n \"profile_id\": \"0ea77780-8305-e2e1-3aac-d318e2444089\",\n \"ne_attribute_id\": \"urn:uuid:3790eaeb-4e55-47a6-61c8-01debe58d010\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:8c257d90-dcfa-9cda-8e77-6410bb51f52c\",\n \"user_id\": \"urn:uuid:dbbdec8c-84c9-eefa-98a1-161ab7a37955\",\n \"profile_id\": \"urn:uuid:000222d1-4fd3-c4ee-be7c-a6b191fde6b9\",\n \"ne_attribute_id\": \"urn:uuid:8248b21a-2878-2aa6-1b6b-7e3d0226ae3d\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18f3030f-a98e-2827-0351-14c19301d5ad\",\n \"user_id\": \"cfae6883-98de-e72b-8d02-80fcc4bcd12f\",\n \"profile_id\": \"urn:uuid:103b3412-9d01-2a4d-6938-8cba7a6cb56e\",\n \"ne_attribute_id\": \"a282ae51-4d67-2ffc-0aa6-d5b479e0fdd5\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3eca7d00-128c-dcad-783e-ef3ee1f22773\",\n \"user_id\": \"urn:uuid:2ec35564-96ca-cbc6-667a-98bf2349af05\",\n \"profile_id\": \"a24a5806-f3e2-2d7f-a55a-fc2704788c27\",\n \"ne_attribute_id\": \"urn:uuid:fe6f37cb-0a49-cbb0-f42a-c78c4795c735\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18152,7 +18152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da5634ed-4e44-4c1f-8449-84af383f8fef", + "id": "30a0d3b0-5ff6-4e8e-9f68-1ccb2a23f382", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18186,7 +18186,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"1da73287-72cf-0a97-012a-3ae0c58bf586\",\n \"user_id\": \"urn:uuid:37e25608-4041-f98c-44c7-45e1c89ef0a0\",\n \"profile_id\": \"0ea77780-8305-e2e1-3aac-d318e2444089\",\n \"ne_attribute_id\": \"urn:uuid:3790eaeb-4e55-47a6-61c8-01debe58d010\",\n \"relationship_type\": \"owner\"\n },\n {\n \"id\": \"urn:uuid:8c257d90-dcfa-9cda-8e77-6410bb51f52c\",\n \"user_id\": \"urn:uuid:dbbdec8c-84c9-eefa-98a1-161ab7a37955\",\n \"profile_id\": \"urn:uuid:000222d1-4fd3-c4ee-be7c-a6b191fde6b9\",\n \"ne_attribute_id\": \"urn:uuid:8248b21a-2878-2aa6-1b6b-7e3d0226ae3d\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18f3030f-a98e-2827-0351-14c19301d5ad\",\n \"user_id\": \"cfae6883-98de-e72b-8d02-80fcc4bcd12f\",\n \"profile_id\": \"urn:uuid:103b3412-9d01-2a4d-6938-8cba7a6cb56e\",\n \"ne_attribute_id\": \"a282ae51-4d67-2ffc-0aa6-d5b479e0fdd5\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"3eca7d00-128c-dcad-783e-ef3ee1f22773\",\n \"user_id\": \"urn:uuid:2ec35564-96ca-cbc6-667a-98bf2349af05\",\n \"profile_id\": \"a24a5806-f3e2-2d7f-a55a-fc2704788c27\",\n \"ne_attribute_id\": \"urn:uuid:fe6f37cb-0a49-cbb0-f42a-c78c4795c735\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18214,7 +18214,7 @@ } }, { - "id": "c6b249ff-574d-4053-acc9-29aea779e220", + "id": "2e8677cc-d08e-44fe-982e-02eac77c831a", "name": "Delete multiple user-profile contributor relationships", "request": { "name": "Delete multiple user-profile contributor relationships", @@ -18245,7 +18245,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18a9ac39-9113-5d6c-f026-37ba0b719390\"\n },\n {\n \"id\": \"a7738c4b-f792-2f2b-d32d-cf70dfaa337d\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f68e2169-b911-6c92-619a-ad7577d8f36d\"\n },\n {\n \"id\": \"urn:uuid:5a9e3dd9-2797-d9a7-c330-bfcc338e8476\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18257,7 +18257,7 @@ }, "response": [ { - "id": "29ebe31e-09e7-45e0-9c6f-25fcf18ca4b5", + "id": "764192d5-2a10-4dff-a49c-54efa44d6afe", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18291,7 +18291,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18a9ac39-9113-5d6c-f026-37ba0b719390\"\n },\n {\n \"id\": \"a7738c4b-f792-2f2b-d32d-cf70dfaa337d\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f68e2169-b911-6c92-619a-ad7577d8f36d\"\n },\n {\n \"id\": \"urn:uuid:5a9e3dd9-2797-d9a7-c330-bfcc338e8476\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18308,12 +18308,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profiles\": [\n {\n \"id\": \"74a9ecdc-be67-ff7d-0f65-6632f71c6b88\",\n \"uid\": \"eiusmod consectetur minim sitips\",\n \"user_id\": \"urn:uuid:c63ab45d-4d52-61ba-9976-0df02f480252\",\n \"profile_id\": \"4b57b11e-5f24-46ec-31f6-48b47fb074d5\",\n \"ne_attribute_id\": \"2c696740-8844-ae3b-863f-7b6dd2d0078c\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"f841b1c5-8dba-d8ea-837c-a884cd6948fb\",\n \"uid\": \"culpa nulla estamet mollit dolor\",\n \"user_id\": \"3517e426-c3a2-47ca-f738-30d69c8979af\",\n \"profile_id\": \"18bfa4b4-5c07-117e-9a09-4865f817ef61\",\n \"ne_attribute_id\": \"02fb4a86-2d3a-609d-3aa9-c2aef9c1467b\",\n \"relationship_type\": \"owner\"\n }\n ]\n}", + "body": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:fe1d93e6-ec0f-42e7-1c23-d3bfe5fa1f68\",\n \"uid\": \"in quielit in ipsum exercitation\",\n \"user_id\": \"urn:uuid:5bf1f645-cc5e-0a5e-e0c2-2016881ef56a\",\n \"profile_id\": \"4090c1bb-8bcc-e31e-61df-e54b55fb7896\",\n \"ne_attribute_id\": \"urn:uuid:d5d29ce6-284f-3e00-b120-3e4d211573bd\",\n \"relationship_type\": \"contributor\"\n },\n {\n \"id\": \"25093628-062c-42e0-61df-1422516b5609\",\n \"uid\": \"quis aute Duissed quis exercitat\",\n \"user_id\": \"urn:uuid:18bebd56-7297-0be9-9641-c4b9d0949266\",\n \"profile_id\": \"urn:uuid:9423f61a-8245-d377-dca6-294d828e3f13\",\n \"ne_attribute_id\": \"883725ba-e36c-1473-39ff-d203ad6f1726\",\n \"relationship_type\": \"contributor\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "674fff7b-fe82-477d-9edc-196e43cd67d5", + "id": "291649a3-c8bd-476a-81c0-6eb4bb8a4913", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18347,7 +18347,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18a9ac39-9113-5d6c-f026-37ba0b719390\"\n },\n {\n \"id\": \"a7738c4b-f792-2f2b-d32d-cf70dfaa337d\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f68e2169-b911-6c92-619a-ad7577d8f36d\"\n },\n {\n \"id\": \"urn:uuid:5a9e3dd9-2797-d9a7-c330-bfcc338e8476\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18369,7 +18369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66feab03-c4ea-4684-a680-35d349a50fe2", + "id": "5ed04302-0caf-471d-88dd-e6dfdfdd8627", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18403,7 +18403,7 @@ "method": "DELETE", "body": { "mode": "raw", - "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"18a9ac39-9113-5d6c-f026-37ba0b719390\"\n },\n {\n \"id\": \"a7738c4b-f792-2f2b-d32d-cf70dfaa337d\"\n }\n ]\n}", + "raw": "{\n \"user_profiles\": [\n {\n \"id\": \"urn:uuid:f68e2169-b911-6c92-619a-ad7577d8f36d\"\n },\n {\n \"id\": \"urn:uuid:5a9e3dd9-2797-d9a7-c330-bfcc338e8476\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -18431,7 +18431,7 @@ } }, { - "id": "ec19df98-a24d-4e25-816e-36d3ab4b7b2c", + "id": "e7841c5f-3912-4d06-b4da-49e4cd672f12", "name": "Find user-profile contributor relationship by id", "request": { "name": "Find user-profile contributor relationship by id", @@ -18473,7 +18473,7 @@ }, "response": [ { - "id": "bccd60d3-f33f-4fd5-a5cf-54f16d8db6d9", + "id": "0540ce4f-0f9a-468e-8965-681baa89d951", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18512,12 +18512,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"8718dc95-39b4-6c4b-669a-187fda5a90c7\",\n \"uid\": \"et voluptatesint consecteturex m\",\n \"user_id\": \"981eb9af-cbd7-cc73-a427-5c2eef762e8c\",\n \"profile_id\": \"urn:uuid:dcc6ab8e-c5b7-e44a-9814-8fc1c382f989\",\n \"ne_attribute_id\": \"a2518afb-ad34-02d6-b72f-8ffbfefe8b62\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:97213a3d-1be3-ecaf-1e8a-9810fe1955cf\",\n \"uid\": \"mollit sintquis occaecat irure E\",\n \"user_id\": \"5127db7f-15b2-0a4b-ea1b-da497470f4ac\",\n \"profile_id\": \"24277002-cb52-f81d-9e94-73707ad29b2b\",\n \"ne_attribute_id\": \"865b3fa5-89ac-08f1-4602-ef0124db8b86\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c36b4837-cf4e-4f24-b6fd-e88eb6666b9e", + "id": "66b19726-05f2-43bb-a899-1242eb66ea70", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18561,7 +18561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0935732-8ba0-41ae-82c2-210b91885eb3", + "id": "f09f16ef-91ed-4943-9850-aaf85093bca5", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18611,7 +18611,7 @@ } }, { - "id": "ccdf3733-0d3c-421b-85c3-f0e746d77f01", + "id": "c091d64b-099e-407d-a431-53fa8a273cc1", "name": "Update a user-profile contributor relationship by id", "request": { "name": "Update a user-profile contributor relationship by id", @@ -18654,7 +18654,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18666,7 +18666,7 @@ }, "response": [ { - "id": "a0c32be6-78b2-45fd-8264-1d123096c942", + "id": "4d8e06b7-457a-4297-aa35-5581b74cb381", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -18701,7 +18701,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18718,12 +18718,12 @@ "value": "application/json" } ], - "body": "{\n \"user_profile\": {\n \"id\": \"8718dc95-39b4-6c4b-669a-187fda5a90c7\",\n \"uid\": \"et voluptatesint consecteturex m\",\n \"user_id\": \"981eb9af-cbd7-cc73-a427-5c2eef762e8c\",\n \"profile_id\": \"urn:uuid:dcc6ab8e-c5b7-e44a-9814-8fc1c382f989\",\n \"ne_attribute_id\": \"a2518afb-ad34-02d6-b72f-8ffbfefe8b62\",\n \"relationship_type\": \"contributor\"\n }\n}", + "body": "{\n \"user_profile\": {\n \"id\": \"urn:uuid:97213a3d-1be3-ecaf-1e8a-9810fe1955cf\",\n \"uid\": \"mollit sintquis occaecat irure E\",\n \"user_id\": \"5127db7f-15b2-0a4b-ea1b-da497470f4ac\",\n \"profile_id\": \"24277002-cb52-f81d-9e94-73707ad29b2b\",\n \"ne_attribute_id\": \"865b3fa5-89ac-08f1-4602-ef0124db8b86\",\n \"relationship_type\": \"contributor\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "460503dc-d555-4742-bb53-a93b0923ce26", + "id": "bb26fb10-975b-46c7-8ab2-e163942978bf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18758,7 +18758,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18780,7 +18780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "705ddc7d-004c-4a42-8ccd-9e7f216bd56f", + "id": "69d485db-c548-491b-a1a6-04d84bdcf4b0", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -18815,7 +18815,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"user_profile\": {\n \"user_id\": \"d14f8725-cbd4-3902-60e8-35b1f251139e\",\n \"profile_id\": \"urn:uuid:abdd8199-553a-5e89-1c1e-75a5c2cbc971\",\n \"ne_attribute_id\": \"0b0db211-ea7c-c3c1-146a-5da7c2a20c2b\",\n \"relationship_type\": \"owner\"\n }\n}", + "raw": "{\n \"user_profile\": {\n \"user_id\": \"urn:uuid:cac8e25d-2398-ae1d-9bd5-d05d65e797c5\",\n \"profile_id\": \"b99da0d2-6c3e-fac4-4323-0b42b7cb9e1d\",\n \"ne_attribute_id\": \"urn:uuid:1bc3f993-9148-378f-bb37-f6bd200e5fba\",\n \"relationship_type\": \"contributor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -18843,7 +18843,7 @@ } }, { - "id": "d6b60436-21f6-4157-a55c-4623fc3dd321", + "id": "edd36c64-67ce-449c-9ac2-feffe0c5be99", "name": "Delete a user profile assignment", "request": { "name": "Delete a user profile assignment", @@ -18885,7 +18885,7 @@ }, "response": [ { - "id": "c1732cf1-60c2-4b1f-9643-25aa6cda10d8", + "id": "23a2b6bd-0286-4278-afe5-d8c2e35183e6", "name": "User profile was destroyed", "originalRequest": { "url": { @@ -18929,7 +18929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b948dad-994b-47ec-9875-0a7235b5476e", + "id": "855c4740-6ead-49fa-a05e-39a5c1521c57", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -18973,7 +18973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78ebacda-a185-4c80-809e-e6e8d9601d71", + "id": "d7f36cd4-5fc4-4fc9-b619-aa23610d482f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19029,7 +19029,7 @@ "description": "", "item": [ { - "id": "6e2ce6d0-7a8c-490f-87da-e05fb2ef22dc", + "id": "5d2dbf35-22a0-4abe-944f-8a0bd30f7176", "name": "Create a role-profile contributor relationship", "request": { "name": "Create a role-profile contributor relationship", @@ -19060,7 +19060,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19072,7 +19072,7 @@ }, "response": [ { - "id": "6a1c992c-0ee6-4170-a331-aa82faffae22", + "id": "1b94498a-c330-481a-ac97-1d9594990a0e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19106,7 +19106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19123,12 +19123,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:46a80f61-cb2c-de86-c168-6eb0a5057944\",\n \"uid\": \"in aliquipdo utofficiaut sunt al\",\n \"role_id\": \"cbd13460-5e8a-37bc-5163-4569efadef85\",\n \"profile_id\": \"urn:uuid:6cdcba9e-e70f-7810-e593-d43e2a514b0d\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:e6440085-2ea6-2bbb-aca1-7682b0bd36da\",\n \"uid\": \"quis esse nostrud exercitation D\",\n \"role_id\": \"a14b6e05-1ff5-9361-49f0-e205f859351b\",\n \"profile_id\": \"9639d030-fd77-d6ba-3a0e-cf763f050d00\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c5179776-2f3b-4f1f-8ce4-a541d5876360", + "id": "82c402e4-0f8b-470d-b9e6-d6b5f519a59b", "name": "Invalid input", "originalRequest": { "url": { @@ -19158,7 +19158,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -19180,7 +19180,7 @@ } }, { - "id": "0db1961e-1b89-4a35-a3a3-c7341876a11a", + "id": "48a54ce3-7224-4ab0-b3e7-0eb13835ae3b", "name": "Get role-profile contributor relationships", "request": { "name": "Get role-profile contributor relationships", @@ -19230,7 +19230,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -19265,7 +19265,7 @@ }, "response": [ { - "id": "a12d8e51-2f10-4eb0-8496-bf9fb3560117", + "id": "81d0c6e4-e7ba-478f-a572-0b4531d7ecce", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19310,7 +19310,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -19358,12 +19358,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"1fc01579-bc26-019f-14f1-80a0628a3985\",\n \"uid\": \"laborum nisi pariaturExcepteur i\",\n \"role_id\": \"6edd0c30-58b5-ee31-7469-08c3372975e3\",\n \"profile_id\": \"urn:uuid:81cca51e-8d34-c5a0-2fbd-fe466a2ee63e\"\n },\n {\n \"id\": \"36ff544d-3337-ee61-d339-f45d644ee7f4\",\n \"uid\": \"consequat adipisicing ut volupta\",\n \"role_id\": \"6d4551ea-bb28-7479-b784-801a22de4ebf\",\n \"profile_id\": \"urn:uuid:df06bf71-f43a-02db-5054-b431d8ada10d\"\n }\n ],\n \"_metadata\": {\n \"limit\": 75955296,\n \"offset\": 1853198,\n \"total\": 12178443,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:911a5f5f-1869-3d1f-b61a-cd45bd6be8cf\",\n \"uid\": \"velit Lorem sed Excepteuripsum e\",\n \"role_id\": \"769558ac-981f-89c5-3402-b0ac716da553\",\n \"profile_id\": \"8582a7a1-79b6-c8aa-80b4-c20c2021062c\"\n },\n {\n \"id\": \"7017e302-4daf-9407-6e22-9fb6734859a2\",\n \"uid\": \"veniam do ea ipsum idincididunt \",\n \"role_id\": \"urn:uuid:4deb3e89-5f92-d7b1-3a45-e8045875e1c6\",\n \"profile_id\": \"urn:uuid:ee40c7ee-a67c-feef-2a64-60fe7807ad5e\"\n }\n ],\n \"_metadata\": {\n \"limit\": 85746267,\n \"offset\": -83868676,\n \"total\": 50600172,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f3dd22ad-857d-4449-8169-62f71ff083bf", + "id": "daa48887-8e5d-4f96-acbe-3c81dcfad1b7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19408,7 +19408,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -19461,7 +19461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9baf704d-78f8-4f15-bf09-57be9d51476d", + "id": "ca7ddd02-c1f2-4295-bbdd-f542427ff33f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19506,7 +19506,7 @@ "type": "text/plain" }, "key": "role_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -19565,7 +19565,7 @@ } }, { - "id": "2e6e0f4e-4496-4d9f-86be-5942ad9df382", + "id": "e2765ecb-e783-4359-868a-6428fdb28e25", "name": "Create multiple role-profile contributor relationships", "request": { "name": "Create multiple role-profile contributor relationships", @@ -19596,7 +19596,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:5a074079-cb88-af24-952e-3268725afbfa\",\n \"profile_id\": \"urn:uuid:2df33d7d-edf7-6fa3-5c9a-dd5c0c4bbf9c\"\n },\n {\n \"role_id\": \"urn:uuid:7ea57af9-28d6-a577-4279-0e4024ab53cf\",\n \"profile_id\": \"urn:uuid:70dfff0a-2124-e028-a31e-4016c20be227\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"158c8259-3cc0-410b-fbd4-357989a311a3\",\n \"profile_id\": \"urn:uuid:4da3e50c-87a6-995c-ccf3-560bdaf9787b\"\n },\n {\n \"role_id\": \"urn:uuid:7c446675-3888-6716-51e2-40ff769eb785\",\n \"profile_id\": \"urn:uuid:8d133de6-1991-9dac-5eb5-40c331fed645\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19608,7 +19608,7 @@ }, "response": [ { - "id": "c2024621-f0fc-4c61-8a51-b4a8a978bdeb", + "id": "a5120f9c-4a2e-43f5-b580-e1018db6112f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19642,7 +19642,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:5a074079-cb88-af24-952e-3268725afbfa\",\n \"profile_id\": \"urn:uuid:2df33d7d-edf7-6fa3-5c9a-dd5c0c4bbf9c\"\n },\n {\n \"role_id\": \"urn:uuid:7ea57af9-28d6-a577-4279-0e4024ab53cf\",\n \"profile_id\": \"urn:uuid:70dfff0a-2124-e028-a31e-4016c20be227\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"158c8259-3cc0-410b-fbd4-357989a311a3\",\n \"profile_id\": \"urn:uuid:4da3e50c-87a6-995c-ccf3-560bdaf9787b\"\n },\n {\n \"role_id\": \"urn:uuid:7c446675-3888-6716-51e2-40ff769eb785\",\n \"profile_id\": \"urn:uuid:8d133de6-1991-9dac-5eb5-40c331fed645\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19659,12 +19659,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"fac7be9b-43ed-3667-1768-57bd7beea75a\",\n \"uid\": \"proident deserunt aute sint dolo\",\n \"role_id\": \"1dbd69fe-a007-983e-7516-5e716f2d7631\",\n \"profile_id\": \"urn:uuid:d7ee2736-e760-6e28-f6a0-9c33bd7a98e6\"\n },\n {\n \"id\": \"urn:uuid:93cffef9-8109-1eeb-6288-f687c12f9bea\",\n \"uid\": \"ad aute labore non nostrudlabore\",\n \"role_id\": \"eb944126-46d1-a748-b02f-f71d8021ea19\",\n \"profile_id\": \"urn:uuid:9c292c38-1295-5194-839b-bbc699aab348\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"3c9d62a3-7954-3525-8b28-2c2f0868c639\",\n \"uid\": \"magna culpa autealiqua pariatur \",\n \"role_id\": \"de7640b0-f0b3-2caf-c629-7bb167ebe3af\",\n \"profile_id\": \"urn:uuid:42b54775-c60d-a4d4-2e01-c834699ca611\"\n },\n {\n \"id\": \"urn:uuid:55ced698-5e06-ebd9-c5b2-aaab10f53094\",\n \"uid\": \"in in exesse incididunt laborevo\",\n \"role_id\": \"urn:uuid:1d77c0f1-f781-fd18-4f92-e50a1d82929d\",\n \"profile_id\": \"477e8607-ccb5-3fe8-e665-a1d8b4ffa906\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6cf3e420-d1d0-4a3f-b3e9-9e2100a07263", + "id": "2f8a08a9-19fc-49f8-9b88-d6169e6df4a7", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19698,7 +19698,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:5a074079-cb88-af24-952e-3268725afbfa\",\n \"profile_id\": \"urn:uuid:2df33d7d-edf7-6fa3-5c9a-dd5c0c4bbf9c\"\n },\n {\n \"role_id\": \"urn:uuid:7ea57af9-28d6-a577-4279-0e4024ab53cf\",\n \"profile_id\": \"urn:uuid:70dfff0a-2124-e028-a31e-4016c20be227\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"158c8259-3cc0-410b-fbd4-357989a311a3\",\n \"profile_id\": \"urn:uuid:4da3e50c-87a6-995c-ccf3-560bdaf9787b\"\n },\n {\n \"role_id\": \"urn:uuid:7c446675-3888-6716-51e2-40ff769eb785\",\n \"profile_id\": \"urn:uuid:8d133de6-1991-9dac-5eb5-40c331fed645\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19720,7 +19720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0f56d85-9856-490e-a852-e1cb3c8c3a72", + "id": "d982f1f5-9339-43ec-8949-df5b4ea00d20", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19754,7 +19754,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"urn:uuid:5a074079-cb88-af24-952e-3268725afbfa\",\n \"profile_id\": \"urn:uuid:2df33d7d-edf7-6fa3-5c9a-dd5c0c4bbf9c\"\n },\n {\n \"role_id\": \"urn:uuid:7ea57af9-28d6-a577-4279-0e4024ab53cf\",\n \"profile_id\": \"urn:uuid:70dfff0a-2124-e028-a31e-4016c20be227\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"role_id\": \"158c8259-3cc0-410b-fbd4-357989a311a3\",\n \"profile_id\": \"urn:uuid:4da3e50c-87a6-995c-ccf3-560bdaf9787b\"\n },\n {\n \"role_id\": \"urn:uuid:7c446675-3888-6716-51e2-40ff769eb785\",\n \"profile_id\": \"urn:uuid:8d133de6-1991-9dac-5eb5-40c331fed645\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19782,7 +19782,7 @@ } }, { - "id": "98e51b6e-a250-4710-9be4-d20a0aaafa2c", + "id": "1618c7a9-a3ca-47db-a8a7-9508b548fb2d", "name": "Update multiple role-profile contributor relationships", "request": { "name": "Update multiple role-profile contributor relationships", @@ -19813,7 +19813,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:d8c2dce7-15f1-61bf-114c-7172d606440a\",\n \"role_id\": \"5dc7e717-9631-43fb-9c4d-e9923f3ed093\",\n \"profile_id\": \"urn:uuid:9a0b2c25-c92b-6fa8-8469-556135eb4bdd\"\n },\n {\n \"id\": \"urn:uuid:52068a28-bfb8-8659-c7f9-42558c5672a3\",\n \"role_id\": \"urn:uuid:d3fe0f18-7f37-1dfb-e8c9-c24538c34bd3\",\n \"profile_id\": \"e64a4314-8c24-8d30-1775-1e6d9e025eef\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:13de2833-bfb2-371b-7281-9d65967f81c3\",\n \"role_id\": \"urn:uuid:558d4cd9-8453-9255-5fcd-b8f055129669\",\n \"profile_id\": \"bf7f22bb-fb9d-d003-ff95-940bc7968cc6\"\n },\n {\n \"id\": \"2fc7fa20-4e30-89f0-d778-4864b1adb0d9\",\n \"role_id\": \"6016ebe4-55ba-1c75-9447-18a9bce49b66\",\n \"profile_id\": \"3a7f2306-051c-ed6e-3a1d-f82b10dae2c5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19825,7 +19825,7 @@ }, "response": [ { - "id": "6f101dc2-f074-425e-a5d5-d33e4d94e6c2", + "id": "438e5809-68c4-4788-9c5b-8a6b44a5a092", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -19859,7 +19859,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:d8c2dce7-15f1-61bf-114c-7172d606440a\",\n \"role_id\": \"5dc7e717-9631-43fb-9c4d-e9923f3ed093\",\n \"profile_id\": \"urn:uuid:9a0b2c25-c92b-6fa8-8469-556135eb4bdd\"\n },\n {\n \"id\": \"urn:uuid:52068a28-bfb8-8659-c7f9-42558c5672a3\",\n \"role_id\": \"urn:uuid:d3fe0f18-7f37-1dfb-e8c9-c24538c34bd3\",\n \"profile_id\": \"e64a4314-8c24-8d30-1775-1e6d9e025eef\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:13de2833-bfb2-371b-7281-9d65967f81c3\",\n \"role_id\": \"urn:uuid:558d4cd9-8453-9255-5fcd-b8f055129669\",\n \"profile_id\": \"bf7f22bb-fb9d-d003-ff95-940bc7968cc6\"\n },\n {\n \"id\": \"2fc7fa20-4e30-89f0-d778-4864b1adb0d9\",\n \"role_id\": \"6016ebe4-55ba-1c75-9447-18a9bce49b66\",\n \"profile_id\": \"3a7f2306-051c-ed6e-3a1d-f82b10dae2c5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19876,12 +19876,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profiles\": [\n {\n \"id\": \"fac7be9b-43ed-3667-1768-57bd7beea75a\",\n \"uid\": \"proident deserunt aute sint dolo\",\n \"role_id\": \"1dbd69fe-a007-983e-7516-5e716f2d7631\",\n \"profile_id\": \"urn:uuid:d7ee2736-e760-6e28-f6a0-9c33bd7a98e6\"\n },\n {\n \"id\": \"urn:uuid:93cffef9-8109-1eeb-6288-f687c12f9bea\",\n \"uid\": \"ad aute labore non nostrudlabore\",\n \"role_id\": \"eb944126-46d1-a748-b02f-f71d8021ea19\",\n \"profile_id\": \"urn:uuid:9c292c38-1295-5194-839b-bbc699aab348\"\n }\n ]\n}", + "body": "{\n \"role_profiles\": [\n {\n \"id\": \"3c9d62a3-7954-3525-8b28-2c2f0868c639\",\n \"uid\": \"magna culpa autealiqua pariatur \",\n \"role_id\": \"de7640b0-f0b3-2caf-c629-7bb167ebe3af\",\n \"profile_id\": \"urn:uuid:42b54775-c60d-a4d4-2e01-c834699ca611\"\n },\n {\n \"id\": \"urn:uuid:55ced698-5e06-ebd9-c5b2-aaab10f53094\",\n \"uid\": \"in in exesse incididunt laborevo\",\n \"role_id\": \"urn:uuid:1d77c0f1-f781-fd18-4f92-e50a1d82929d\",\n \"profile_id\": \"477e8607-ccb5-3fe8-e665-a1d8b4ffa906\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26d01183-8d9b-4914-b286-72fd7d3dada4", + "id": "6bc6a15b-0456-4693-bd67-23a53bbbef9d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -19915,7 +19915,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:d8c2dce7-15f1-61bf-114c-7172d606440a\",\n \"role_id\": \"5dc7e717-9631-43fb-9c4d-e9923f3ed093\",\n \"profile_id\": \"urn:uuid:9a0b2c25-c92b-6fa8-8469-556135eb4bdd\"\n },\n {\n \"id\": \"urn:uuid:52068a28-bfb8-8659-c7f9-42558c5672a3\",\n \"role_id\": \"urn:uuid:d3fe0f18-7f37-1dfb-e8c9-c24538c34bd3\",\n \"profile_id\": \"e64a4314-8c24-8d30-1775-1e6d9e025eef\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:13de2833-bfb2-371b-7281-9d65967f81c3\",\n \"role_id\": \"urn:uuid:558d4cd9-8453-9255-5fcd-b8f055129669\",\n \"profile_id\": \"bf7f22bb-fb9d-d003-ff95-940bc7968cc6\"\n },\n {\n \"id\": \"2fc7fa20-4e30-89f0-d778-4864b1adb0d9\",\n \"role_id\": \"6016ebe4-55ba-1c75-9447-18a9bce49b66\",\n \"profile_id\": \"3a7f2306-051c-ed6e-3a1d-f82b10dae2c5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19937,7 +19937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "907db954-5806-41b4-8ef5-597288a49997", + "id": "42861360-d1fe-4799-bc7d-ea61ff1576e3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -19971,7 +19971,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:d8c2dce7-15f1-61bf-114c-7172d606440a\",\n \"role_id\": \"5dc7e717-9631-43fb-9c4d-e9923f3ed093\",\n \"profile_id\": \"urn:uuid:9a0b2c25-c92b-6fa8-8469-556135eb4bdd\"\n },\n {\n \"id\": \"urn:uuid:52068a28-bfb8-8659-c7f9-42558c5672a3\",\n \"role_id\": \"urn:uuid:d3fe0f18-7f37-1dfb-e8c9-c24538c34bd3\",\n \"profile_id\": \"e64a4314-8c24-8d30-1775-1e6d9e025eef\"\n }\n ]\n}", + "raw": "{\n \"role_profiles\": [\n {\n \"id\": \"urn:uuid:13de2833-bfb2-371b-7281-9d65967f81c3\",\n \"role_id\": \"urn:uuid:558d4cd9-8453-9255-5fcd-b8f055129669\",\n \"profile_id\": \"bf7f22bb-fb9d-d003-ff95-940bc7968cc6\"\n },\n {\n \"id\": \"2fc7fa20-4e30-89f0-d778-4864b1adb0d9\",\n \"role_id\": \"6016ebe4-55ba-1c75-9447-18a9bce49b66\",\n \"profile_id\": \"3a7f2306-051c-ed6e-3a1d-f82b10dae2c5\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -19999,7 +19999,7 @@ } }, { - "id": "145dbe38-4cad-4263-a6e4-1cf852eae698", + "id": "e2469ad6-240d-4f00-a651-c00482cbfc11", "name": "Find role-profile contributor relationship by id", "request": { "name": "Find role-profile contributor relationship by id", @@ -20041,7 +20041,7 @@ }, "response": [ { - "id": "440d965e-1001-4212-807b-d86820dfa2e5", + "id": "ddd63177-9cd1-4a27-a306-f01c8b87d18f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20080,12 +20080,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:46a80f61-cb2c-de86-c168-6eb0a5057944\",\n \"uid\": \"in aliquipdo utofficiaut sunt al\",\n \"role_id\": \"cbd13460-5e8a-37bc-5163-4569efadef85\",\n \"profile_id\": \"urn:uuid:6cdcba9e-e70f-7810-e593-d43e2a514b0d\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:e6440085-2ea6-2bbb-aca1-7682b0bd36da\",\n \"uid\": \"quis esse nostrud exercitation D\",\n \"role_id\": \"a14b6e05-1ff5-9361-49f0-e205f859351b\",\n \"profile_id\": \"9639d030-fd77-d6ba-3a0e-cf763f050d00\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e2e8b0e4-7f69-4f3d-8571-9fcc56e6e889", + "id": "cb286fe2-6296-41e9-9519-c1fdd1ae63cf", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20129,7 +20129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e740bee0-d12a-4d72-9223-84b98daa768f", + "id": "6281230a-5010-4ec6-be14-5d89ae4c792a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20179,7 +20179,7 @@ } }, { - "id": "4bb7bf47-4e3d-4011-a6c5-83e33bc396e3", + "id": "c3aa7b9d-ae3f-4309-8b76-043ad620e1e8", "name": "Update a role-profile contributor relationship by id", "request": { "name": "Update a role-profile contributor relationship by id", @@ -20222,7 +20222,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20234,7 +20234,7 @@ }, "response": [ { - "id": "d9757fa5-b494-40d3-9672-571fe2999999", + "id": "58c8715a-39a0-45bb-ae85-642f1e54c0b3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20269,7 +20269,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20286,12 +20286,12 @@ "value": "application/json" } ], - "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:46a80f61-cb2c-de86-c168-6eb0a5057944\",\n \"uid\": \"in aliquipdo utofficiaut sunt al\",\n \"role_id\": \"cbd13460-5e8a-37bc-5163-4569efadef85\",\n \"profile_id\": \"urn:uuid:6cdcba9e-e70f-7810-e593-d43e2a514b0d\"\n }\n}", + "body": "{\n \"role_profile\": {\n \"id\": \"urn:uuid:e6440085-2ea6-2bbb-aca1-7682b0bd36da\",\n \"uid\": \"quis esse nostrud exercitation D\",\n \"role_id\": \"a14b6e05-1ff5-9361-49f0-e205f859351b\",\n \"profile_id\": \"9639d030-fd77-d6ba-3a0e-cf763f050d00\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c80bfe54-7854-4e3c-b3ca-afb20d70fa6d", + "id": "2bbc990e-738a-4a0b-bedb-8aa61da61d6c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20326,7 +20326,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20348,7 +20348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "607756f5-08aa-4f74-a585-522e63531495", + "id": "16e9b752-643f-460f-940d-48a06052876a", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20383,7 +20383,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"role_profile\": {\n \"role_id\": \"b56cdee2-3b70-3029-f18a-0929002c1d3c\",\n \"profile_id\": \"urn:uuid:850f511f-2ac5-935c-59c4-854e227c4837\"\n }\n}", + "raw": "{\n \"role_profile\": {\n \"role_id\": \"urn:uuid:42581ed1-2711-2a8c-a906-c6e2e23e5cb0\",\n \"profile_id\": \"urn:uuid:d6ed187c-9b5f-19b2-fa28-889ebc62aab4\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -20411,7 +20411,7 @@ } }, { - "id": "3b0770e4-ff98-4b96-abc0-e8c17e7f1584", + "id": "92b10b38-f62c-4d7b-a34c-d338303342ea", "name": "Delete a role profile assignment", "request": { "name": "Delete a role profile assignment", @@ -20453,7 +20453,7 @@ }, "response": [ { - "id": "7d4f0cb3-b74f-44ed-acf3-e06f208f0af2", + "id": "089ee579-e7f1-452b-9a95-92d03017c67a", "name": "Role profile was destroyed", "originalRequest": { "url": { @@ -20497,7 +20497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0924993-51e4-4397-b64c-163c15ca5e33", + "id": "85cb8d80-f28c-4baf-843e-c56161e13467", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20541,7 +20541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42314806-d823-4207-96de-cdceeeb56060", + "id": "38dd4586-e1c7-447f-ab2d-722e714c1916", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20597,7 +20597,7 @@ "description": "", "item": [ { - "id": "f486e97d-e726-4037-b63d-707a5b5c2897", + "id": "0826b194-3218-4a31-b268-8b0d92450847", "name": "Create a create workflow", "request": { "name": "Create a create workflow", @@ -20641,7 +20641,7 @@ }, "response": [ { - "id": "6a70046f-a306-4e87-937b-ad7ecfa15b73", + "id": "fe8e8af6-31c2-4968-9cb1-cbcbb760aa96", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20693,12 +20693,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ad8c3d29-a396-44eb-858c-1b3dcb34383e", + "id": "b7ce192a-c185-450d-a9e5-45c005a82aae", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20755,7 +20755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37b21335-453a-4356-8190-8d4f7efe962f", + "id": "001061e9-e7fa-461d-b60d-03761a47c34e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -20818,7 +20818,7 @@ } }, { - "id": "a0da0e51-4177-490f-984e-409913f9161a", + "id": "02eb013a-b399-4150-a10a-3ceafc54c729", "name": "Create an update workflow", "request": { "name": "Create an update workflow", @@ -20862,7 +20862,7 @@ }, "response": [ { - "id": "5d97eebb-d10e-411d-8333-7962dbc23bbb", + "id": "c7ac1862-6e8e-4fd0-b1b1-42b9696096a3", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -20914,12 +20914,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b006be10-1906-4466-b2a7-5ecf995a33bf", + "id": "e3694d53-7fc1-4a88-98ed-186a773fdcfc", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -20976,7 +20976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ccc20d-0cfe-4cd8-a30a-c63e101d592d", + "id": "cdeb7ca6-659a-4890-8f30-99294317e9a6", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21039,7 +21039,7 @@ } }, { - "id": "7067db8a-8c08-4c27-8c4a-597d08596555", + "id": "78c45e1c-3112-4a6e-af17-814156f6b1f0", "name": "Create a batch workflow", "request": { "name": "Create a batch workflow", @@ -21083,7 +21083,7 @@ }, "response": [ { - "id": "ea07743e-5939-4b7a-8b51-4c64d5c583be", + "id": "00c4d082-3afd-481b-ab6f-cf566f18c234", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21135,12 +21135,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "85133cff-7542-438b-b200-5f5b3141cefc", + "id": "57c41082-0c0a-49ef-af82-9924c99ae0e8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21197,7 +21197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e1eef0-baf6-435a-ae02-38cd683a0f1e", + "id": "97392be4-25ad-47bc-8c76-506125f68ada", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21260,7 +21260,7 @@ } }, { - "id": "be02395a-0393-405f-af73-5b2f006e6aeb", + "id": "3cc32e58-d496-4074-9ae0-c30f51599cfd", "name": "Create an automated workflow", "request": { "name": "Create an automated workflow", @@ -21304,7 +21304,7 @@ }, "response": [ { - "id": "1e5e78d6-31ff-4b2b-a390-883d3ecc8a1a", + "id": "b53411cd-8bd7-445f-95aa-6f3cbd103d46", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21356,12 +21356,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "501859a9-71c4-4c8a-960e-cab7ba99bfd8", + "id": "8b119e2f-78d2-4b2d-9963-37173c78d5bb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21418,7 +21418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5679d08d-acc5-4f14-94fe-44431b2fb216", + "id": "f2ecd7a1-1a68-4ced-b8a5-48915b5eadc9", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21481,7 +21481,7 @@ } }, { - "id": "29fa9fc5-7471-4ae9-af88-2b9b703bbd5a", + "id": "77246f29-555d-410c-a703-8080ddb248d9", "name": "Create a registration workflow", "request": { "name": "Create a registration workflow", @@ -21525,7 +21525,7 @@ }, "response": [ { - "id": "f20ea8b3-2743-4f24-97e9-94223c434af1", + "id": "6b296b8a-ca44-49b2-9b86-767a9aa765fd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21577,12 +21577,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1b35ae1-c865-4e50-b4f5-3063ebbb06b1", + "id": "87692096-fe4d-46f8-b108-e21c9412b441", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21639,7 +21639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "549115f5-dd3f-4a6e-8776-b2a4160877bd", + "id": "9bbf6ba6-f6f7-4ad4-a994-83f7f2b13738", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21702,7 +21702,7 @@ } }, { - "id": "8f169d2c-2edd-402f-b421-b7b06013b33f", + "id": "c180354e-027f-4718-8891-651f609f7ce3", "name": "Create a login workflow", "request": { "name": "Create a login workflow", @@ -21746,7 +21746,7 @@ }, "response": [ { - "id": "7bd8d567-235e-4c97-9c58-397fde2ce97d", + "id": "aafd196c-daf1-4c6b-bcb2-74c80b259c4e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -21798,12 +21798,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d41eb480-95b5-41c3-b048-917895d7da9b", + "id": "52c9cd04-d9c7-4918-b213-d0578fa89d5d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -21860,7 +21860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c11e58a-dee5-48ed-a7d8-7037ba42bd18", + "id": "6bf6350a-7ed1-41ed-aee7-bcfa414a6777", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -21923,7 +21923,7 @@ } }, { - "id": "c1cde655-fd59-40d7-8aa0-285e73686d56", + "id": "d8252544-ed2e-44af-8d0b-66144c006d07", "name": "Create a password reset workflow", "request": { "name": "Create a password reset workflow", @@ -21967,7 +21967,7 @@ }, "response": [ { - "id": "6445d5bd-9dfd-4609-b52d-2ae092ef91ca", + "id": "33531893-756c-4803-990c-fbd604dc9e5f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22019,12 +22019,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ut velitesse aliqua Excepteur si\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2a864d54-17c5-2106-4b85-0d2a51aa90bd\",\n \"901b3653-d716-0915-4e71-16c66872c595\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"Utlaboreullamco commodo consecte\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:0db1ce8d-3bb4-1f8b-4ff2-1d21fb0c296f\",\n \"urn:uuid:26004918-5db9-a7fe-3963-74b318f34523\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0f48be94-6416-4e79-b4f1-2c31ce6a4713", + "id": "801795b9-bc44-43a6-8603-f17ca657e56b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22081,7 +22081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f975870-e2eb-4f95-b414-4ec410dc6815", + "id": "57ee10c7-9448-4ce4-b77a-9c976df822e3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22150,7 +22150,7 @@ "description": "", "item": [ { - "id": "25c6b8a9-7619-4912-acd5-3e9a6e81fd4f", + "id": "b85f0235-e6a1-44dd-b042-6b02e369c790", "name": "Create an approval action", "request": { "name": "Create an approval action", @@ -22194,7 +22194,7 @@ }, "response": [ { - "id": "482d8604-b27d-4a2c-9999-007f2d190e8b", + "id": "55b4e7e6-7727-434d-9704-26ccd7266929", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22251,7 +22251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bf4ae74-e3af-43ba-97ab-40b1aec24b45", + "id": "8bb69d7e-a0d3-4a73-b40a-999fcaaa328a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22308,7 +22308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb74af7-764c-43b0-9972-bbc56710498f", + "id": "d3ce821f-e2b4-4ca2-9d19-1a1ecf196407", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22371,7 +22371,7 @@ } }, { - "id": "a914009b-dbbf-4e00-a618-100b60e3cb25", + "id": "5e825f72-ca3d-4160-9523-a992436bef30", "name": "Create ask security question action", "request": { "name": "Create ask security question action", @@ -22415,7 +22415,7 @@ }, "response": [ { - "id": "9f9e4754-7f6c-4129-802e-62d38ee69ec5", + "id": "ffebbdb6-064b-4ba9-82c0-b89aa6a99dc7", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22472,7 +22472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62bd3ec3-004f-443a-9398-f4a5ad376ab9", + "id": "c60c9ebf-d66f-4468-9a68-639d4973f825", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22529,7 +22529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a790a0d-d923-4388-8cdf-b783ba0419db", + "id": "39e17bd2-6e80-45d4-8007-5eddc8c2c459", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22592,7 +22592,7 @@ } }, { - "id": "cdddb4f9-fe86-42fe-b015-233ea3062c16", + "id": "e3510b49-73ba-4f4e-9570-e9fc6bb2d16f", "name": "Create an auto assign action", "request": { "name": "Create an auto assign action", @@ -22636,7 +22636,7 @@ }, "response": [ { - "id": "c134ea42-274c-4c96-9aa9-e5fe930eae56", + "id": "faea3bb7-b212-4fba-8e47-2a1d4e3f198c", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22693,7 +22693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef546017-ce99-4978-882c-9982aa18a831", + "id": "18281e7e-6b06-48cf-b6b5-3835840a1f55", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22750,7 +22750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30750533-c91b-4eb1-9d2e-abe4afc5f21f", + "id": "961f724c-f9b1-49f9-a265-c389efefe51e", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -22813,7 +22813,7 @@ } }, { - "id": "43bb49c4-9464-4744-b5bc-8e79d9cfdc3c", + "id": "4ce93bbb-88cd-4870-80fc-d4f0708519c6", "name": "Create a batch update action", "request": { "name": "Create a batch update action", @@ -22857,7 +22857,7 @@ }, "response": [ { - "id": "283f21c0-386f-4781-ad48-55af1975da5f", + "id": "a62ac1fd-8339-415f-8e96-7bf1382b666e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -22914,7 +22914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba99d36b-9ec1-4d73-938a-ffb2dd4410e0", + "id": "af5ac5fc-ec32-4df7-a90a-11c14e409303", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -22971,7 +22971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "019bb52c-43da-423a-ba8d-19dc3124552c", + "id": "8af5edfc-7e87-45a7-b1c7-61e2125401ae", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23034,7 +23034,7 @@ } }, { - "id": "fd23c571-c9c2-40bc-bad4-313086b06d5b", + "id": "1d850f1a-204c-41c3-bf20-0cf8808c7f81", "name": "Create a close session action", "request": { "name": "Create a close session action", @@ -23078,7 +23078,7 @@ }, "response": [ { - "id": "b2df0b92-b464-4c30-9f04-94e9ec505cb1", + "id": "6e5a54d2-0e0b-4543-969e-64b539d33d53", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23135,7 +23135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18678e1c-4d8b-429f-841d-5fbb329dea45", + "id": "97918256-38a8-46b4-a504-9e9f1fc05eb6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23192,7 +23192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0201b390-c9e7-487d-9f2e-af3134a4d7e0", + "id": "fabdb440-dc43-44f0-9456-620c952351fd", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23255,7 +23255,7 @@ } }, { - "id": "8d11fab2-1226-4394-a982-fc5d02bd8707", + "id": "1f552b86-04ab-44d7-9826-b8c1fd1b30b2", "name": "Create a contributors action", "request": { "name": "Create a contributors action", @@ -23299,7 +23299,7 @@ }, "response": [ { - "id": "052529eb-d262-4dee-8eb7-631a7c006d2a", + "id": "a6980925-ff4a-48df-aa2f-4baafe6929c8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23356,7 +23356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1ec316b-2d19-43e3-b2e1-7d352927b591", + "id": "20343299-426e-403d-b811-64fe0acc511e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23413,7 +23413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f112858f-4882-4cd5-bf18-b92c0df2ff57", + "id": "207983e3-cd9d-40cf-a4d7-0244f8771b4f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23476,7 +23476,7 @@ } }, { - "id": "ae8dee8c-7333-4cad-9e32-7c73722fb112", + "id": "8943439f-c0b2-4602-9973-68da8daa8193", "name": "Create a create profile action", "request": { "name": "Create a create profile action", @@ -23520,7 +23520,7 @@ }, "response": [ { - "id": "9f1c8f16-fda1-4516-82b1-111c8ea75e08", + "id": "741bc9f1-37d4-49ae-bddb-8ded7ff193c0", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23577,7 +23577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba90754d-e0bf-45c7-9ec9-4bafb9225c49", + "id": "889ecd97-3dd6-41be-a603-d7ea3469c8ad", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23634,7 +23634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b93e61b-9283-4740-aab6-83834864a5be", + "id": "acb618a0-fbca-474f-8f12-628ec6dbe78d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23697,7 +23697,7 @@ } }, { - "id": "1d65ac59-043c-488d-80f3-a3918e312b44", + "id": "8e961d2d-77a2-4224-a470-1ca25a5f9d7c", "name": "Create a duplicate prevention action", "request": { "name": "Create a duplicate prevention action", @@ -23741,7 +23741,7 @@ }, "response": [ { - "id": "c0c098f8-b691-4624-9190-c34d2fce2d99", + "id": "9515fda1-fea5-404c-a6f0-42c81110ac68", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -23798,7 +23798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d63ed615-59b3-4fb7-8a50-fd2e8aff4ad7", + "id": "54464d78-5130-4dd5-9960-7848929cb61d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -23855,7 +23855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c025b5-751b-4519-8cdb-f042fe390c8b", + "id": "02d913d5-fe2d-41d4-955c-a68c6ac30463", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -23918,7 +23918,7 @@ } }, { - "id": "dad33172-b05c-400b-80ce-80ef6497aafc", + "id": "5ab80eef-8cfe-4fc0-af9b-a518f0197a48", "name": "Create an email verification action", "request": { "name": "Create an email verification action", @@ -23962,7 +23962,7 @@ }, "response": [ { - "id": "d8f58f99-0b56-45f4-8ade-28e3bb7f5ed8", + "id": "e1f8ff9e-a990-4b0d-be6f-6d10a606efc6", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24019,7 +24019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4459c5c0-cfaa-4938-b6e4-82530028dc9f", + "id": "7a35ec5b-8e17-449e-9c8c-ab865d5babdb", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24076,7 +24076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d558215f-4818-4652-a074-0385c71cbe67", + "id": "9ac3d1b8-0686-4ce7-9650-21057effb806", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24139,7 +24139,7 @@ } }, { - "id": "0036e6ea-4acd-47e5-a20b-a283beab1730", + "id": "5e5dfc44-4676-4552-8c07-fbe48a94d443", "name": "Create a fulfillment action", "request": { "name": "Create a fulfillment action", @@ -24183,7 +24183,7 @@ }, "response": [ { - "id": "731bf615-a135-4b3f-87cc-0969db531d09", + "id": "15856f35-c08d-4672-aca3-7251695dc523", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24240,7 +24240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24e93b2d-e293-4225-86cf-ac9e8394e09f", + "id": "4ae5c7a3-918b-40f9-bd7c-eb45b917df13", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24297,7 +24297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3206b08a-f60c-47c5-9079-c617d838919e", + "id": "39d1c822-f8f6-44bc-b732-49d06b4453d1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24360,7 +24360,7 @@ } }, { - "id": "30df743c-80f3-49d3-bb40-8d9e011dc4bf", + "id": "b5c2f565-68b5-447b-b639-3ba85f475657", "name": "Create an identity proofing action", "request": { "name": "Create an identity proofing action", @@ -24404,7 +24404,7 @@ }, "response": [ { - "id": "e6828953-af2e-4107-9230-cb4b9d8ea39d", + "id": "a85fd2d5-bc76-4d5b-be73-db8c3f619eec", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24461,7 +24461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cb8a008-976d-4849-ba3b-e2d44da1af56", + "id": "02ae5bc4-a6fa-40a7-812b-05a495f145d8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24518,7 +24518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3babba09-7927-4094-98f7-c1b7fa974872", + "id": "ca1dd63a-2b0b-4c3e-b1a3-2aa8cc1dcb85", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24581,7 +24581,7 @@ } }, { - "id": "6a4715ae-a194-4d09-9240-e236bdd19897", + "id": "24c4da12-aeb3-44fc-b5b1-3d3db13491af", "name": "Create an invitation action", "request": { "name": "Create an invitation action", @@ -24625,7 +24625,7 @@ }, "response": [ { - "id": "ceff6e33-4544-4ddb-8877-ab71456a9f4e", + "id": "c4fbb701-8e9d-4fec-ae01-c3553cdcd6dd", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24682,7 +24682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de8eacbd-9927-427f-a061-5a3b774e65ed", + "id": "e2085f82-5e2d-4ab6-8247-54e4ccdf4e6a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24739,7 +24739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "affb364f-c254-48eb-a483-936f314a3d1b", + "id": "6f1fecdf-20e2-4613-9b94-f3f35fe349e3", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -24802,7 +24802,7 @@ } }, { - "id": "de0cb42d-96be-4b51-ab35-cdac79074bd1", + "id": "79145d35-2e27-49e1-9ad7-f8c7d8bbbc41", "name": "Create a ldap action", "request": { "name": "Create a ldap action", @@ -24846,7 +24846,7 @@ }, "response": [ { - "id": "645663bd-a2b1-4294-a498-f282b6e59a36", + "id": "b53fd9f2-f2a1-4927-a2eb-63fc7c848b29", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -24903,7 +24903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de02394c-faad-4cc7-b630-4615bec33a1f", + "id": "b907d0a0-ddab-4cf5-b19e-4353caadf6c2", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -24960,7 +24960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f5ffed0-b1d9-4bc5-a589-1e8d04df2c2b", + "id": "61a2b69d-78e0-4cf5-9c8b-5b0845bdbe6b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25023,7 +25023,7 @@ } }, { - "id": "08d03af9-0797-4934-a374-d7290de23dcb", + "id": "16375ae4-858b-405e-b2d7-b76f0e1994ce", "name": "Create a notification action", "request": { "name": "Create a notification action", @@ -25067,7 +25067,7 @@ }, "response": [ { - "id": "37c9f55d-5e5a-4f68-9ef0-318df87d1d4c", + "id": "c71befff-1719-4e34-8057-3d8e95520782", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25124,7 +25124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62430134-2232-4990-8605-892669b74ac2", + "id": "0da912e8-fcd6-4be2-9221-935c43326eb1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25181,7 +25181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4118e811-3576-4689-8482-6f39bdef4c72", + "id": "49c632f9-7907-4108-b5c4-dda8128d5c41", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25244,7 +25244,7 @@ } }, { - "id": "35eb71ea-dc82-4f24-8feb-9c0bc30b35a3", + "id": "4fa546ca-6a17-418b-a17a-fe68fc829687", "name": "Create a password reset action", "request": { "name": "Create a password reset action", @@ -25288,7 +25288,7 @@ }, "response": [ { - "id": "0c67f905-ea24-4e66-9af5-edfb6b91dbb3", + "id": "8e8825a3-b58d-4521-868e-4e7bb7d7b55d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25345,7 +25345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b76de201-6a8e-4036-963a-b98200c93a4b", + "id": "7c7dd6db-72f5-4e2e-b855-cecc9197def5", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25402,7 +25402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4a28ab8-8c85-4283-ad8b-a0cae173fbe3", + "id": "04c8f30b-0fc0-4be8-8e5a-8b705056e0d2", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25465,7 +25465,7 @@ } }, { - "id": "0b70991a-0a36-4672-b895-371e17929212", + "id": "f63309a5-b754-4306-9de0-4e91d7320703", "name": "Create a profile check action", "request": { "name": "Create a profile check action", @@ -25509,7 +25509,7 @@ }, "response": [ { - "id": "399d74e5-ad38-4b27-be63-b9235e1961b5", + "id": "ec18c96b-a444-405d-a5c4-63be29990040", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25566,7 +25566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b10cd0e-b44f-4774-88a9-780d18fc85e7", + "id": "2224c2cf-498c-46e2-afee-71b89d70aa1d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25623,7 +25623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af90753b-f3cc-477b-ab7c-8ee80be6f44b", + "id": "2ca107d4-0c9d-472c-b0a5-0adce1a67c12", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25686,7 +25686,7 @@ } }, { - "id": "3e720b42-e94e-42b2-acf3-1b8941567039", + "id": "c205c6c4-f5c9-45e5-90c6-c6a832675a2d", "name": "Create a profile select action", "request": { "name": "Create a profile select action", @@ -25730,7 +25730,7 @@ }, "response": [ { - "id": "d8802607-0162-4aee-8452-8215a14cb18d", + "id": "b38fe3af-2943-49a1-9add-af0f79b2b01a", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -25787,7 +25787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6e39953-9a6b-4d60-90b0-475677c07503", + "id": "8148d02b-b67a-4ff8-b12c-96f84e00084e", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -25844,7 +25844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "592ab2f2-8939-4a25-8203-2718774085de", + "id": "19e153df-578e-469c-ae32-fc9d9c14438c", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -25907,7 +25907,7 @@ } }, { - "id": "f9af1531-5ca6-4efb-bf7f-c39800463bc9", + "id": "ef5d4e0b-c92c-4576-b40f-d40c4fc4a845", "name": "Create a request action", "request": { "name": "Create a request action", @@ -25951,7 +25951,7 @@ }, "response": [ { - "id": "76b27905-db58-447a-970f-cfcd98bd1fa8", + "id": "caaabfc7-7ff6-4a72-bc93-ab61fecbf912", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26008,7 +26008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b4a5b5e-36f4-418f-b387-7c5316f31fd8", + "id": "74e605df-eb2c-42f0-9c41-43d3e5049348", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26065,7 +26065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8ac2b29-1d63-43f3-93bf-6c9a87ecd927", + "id": "2b141a18-0f97-4cb1-9017-03697ff44c60", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26128,7 +26128,7 @@ } }, { - "id": "e2ba84c1-26a4-45d3-a9d2-d7d5e82e04d2", + "id": "522d1444-92b8-4f87-978f-565e0d4701c2", "name": "Create a REST API action", "request": { "name": "Create a REST API action", @@ -26172,7 +26172,7 @@ }, "response": [ { - "id": "14075d1a-9f66-4746-9c0a-23a20d915414", + "id": "00a007f4-8324-44c8-a82f-20f1a07dd351", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26229,7 +26229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf09ad65-67b9-4bb2-ab52-3087f25998b0", + "id": "1117d9d7-164d-499c-b571-ad276271d537", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26286,7 +26286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5680729b-2679-4932-b162-c148275bf989", + "id": "c27c7b64-9ba6-4194-85d8-928cf0edc55d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26349,7 +26349,7 @@ } }, { - "id": "03eadaba-3086-4571-9776-ab38845bfcdd", + "id": "9d7bd4d5-df11-4d9d-9a99-d1e4b3318caa", "name": "Create a review action", "request": { "name": "Create a review action", @@ -26393,7 +26393,7 @@ }, "response": [ { - "id": "52669c3d-2e1e-4a43-9442-2b22927294a3", + "id": "eeefe8a0-56de-4d02-a72d-fea274d4287e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26450,7 +26450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec4104a6-b561-4e56-9858-c8fedf0f9f97", + "id": "b6e35049-d99d-498d-8ade-2ac9f7671c21", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26507,7 +26507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edce2f9f-7289-470d-ba5f-29aa6c6b703c", + "id": "425504d6-332b-4ab1-be8c-86142795630b", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26570,7 +26570,7 @@ } }, { - "id": "4143cef3-efae-4f59-a650-9916b929275a", + "id": "1306bf18-d9b0-4ef1-b2b3-fddc5f8fee01", "name": "Create a run workflow action", "request": { "name": "Create a run workflow action", @@ -26614,7 +26614,7 @@ }, "response": [ { - "id": "186d9042-b3d2-4503-99ff-e27140139875", + "id": "cd00f57f-acc3-43fc-82da-d4c3cc199b3f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26671,7 +26671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7024096-b0a1-4042-8b2f-add9d1b17108", + "id": "c857d174-b262-4dbf-a4fc-386cc29bf917", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26728,7 +26728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1762ce3-aa5a-459e-bc4c-8064c0bb9de0", + "id": "35e95b4f-b57d-4e57-ad90-22f423a08bd1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -26791,7 +26791,7 @@ } }, { - "id": "bbd4c21c-4fb3-4b16-9479-d00cb6eefe7b", + "id": "911d6040-f13f-475b-a2a4-ce588514ca9e", "name": "Create a set attributes action", "request": { "name": "Create a set attributes action", @@ -26835,7 +26835,7 @@ }, "response": [ { - "id": "2533008d-f346-46d3-afd0-6c59e0acbda8", + "id": "93c65c5e-39de-44a9-82ed-77fc5ca6ea21", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -26892,7 +26892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41f23604-c455-49f1-96f9-6d4de1e03374", + "id": "a83989ef-92b2-4b2f-a538-54fc0aa9141b", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -26949,7 +26949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f15eea-ce9c-48d1-938a-fab090ed0d92", + "id": "385ad8ef-d2fe-4225-a0f1-68d831832ded", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27012,7 +27012,7 @@ } }, { - "id": "ab490420-fe33-4296-9c10-f636676bd226", + "id": "f2aca2ae-6a4e-494c-9f80-3c1e348bb22a", "name": "Create set security question action", "request": { "name": "Create set security question action", @@ -27056,7 +27056,7 @@ }, "response": [ { - "id": "780eda06-5f16-404e-8ed4-d781a34ac88f", + "id": "873df2d7-72c1-4f93-bccd-a8190392c765", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27113,7 +27113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c098361b-d4dc-4d72-8e1b-6219d9a81b59", + "id": "ff36ef34-7b6f-49ca-9928-1dbc2c065a0c", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27170,7 +27170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42884681-9ee0-468c-ab8e-2f728a1a086f", + "id": "fc75da2d-0d6a-46f4-9213-6a8809a133f1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27233,7 +27233,7 @@ } }, { - "id": "fc3cd33c-ba48-4e9b-aaac-95fc05edcc3c", + "id": "043fdfb7-c64a-4c29-8ab3-49be9a8afbdf", "name": "Create a SOAP API action", "request": { "name": "Create a SOAP API action", @@ -27277,7 +27277,7 @@ }, "response": [ { - "id": "40451625-c363-429b-96ed-6d32b7a049e5", + "id": "9243c797-12d1-4e17-a552-9b252ef35f99", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27334,7 +27334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7eaad79-bcb7-4dc1-9d34-582e41e5b910", + "id": "74299e96-ffeb-413c-9c08-79f5ee4ee727", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27391,7 +27391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beaf8b93-a02a-4c29-aedf-ae35b97ed780", + "id": "794a4b5f-4c50-41a1-872a-9fe9114e14eb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27454,7 +27454,7 @@ } }, { - "id": "48f60a89-22d7-4313-ac1e-9cb7cd7a28e2", + "id": "4f533d3b-ec1f-4ffc-b661-97f765667711", "name": "Create a status change action", "request": { "name": "Create a status change action", @@ -27498,7 +27498,7 @@ }, "response": [ { - "id": "faab2b11-cdff-433d-9839-f29f990fbc7b", + "id": "e356602a-05de-4106-8d6e-b4703b0b9cba", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27555,7 +27555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ae0786b-eb27-4658-9cd8-8a3d13d0cba2", + "id": "10a72d94-212b-44d9-bb69-9848fa940024", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27612,7 +27612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b943384-943e-4ebf-87b6-2ce2f937da65", + "id": "de10481f-7733-4554-a91a-7f8a6bd9da41", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27675,7 +27675,7 @@ } }, { - "id": "587a2054-aee9-44aa-9401-2cf8a1e6168a", + "id": "4ca538aa-8b61-4b3a-9d9b-a90abe2b7218", "name": "Create an unassign action", "request": { "name": "Create an unassign action", @@ -27719,7 +27719,7 @@ }, "response": [ { - "id": "1038b082-6d4c-4b8c-b5aa-5405afa8c0cd", + "id": "eb93c189-e980-4db5-a6db-5d28e9ce7a5f", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27776,7 +27776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "775def6c-7f16-4801-8267-7a25686b4754", + "id": "f594c7d3-3906-41a1-9b29-eff61d58bb9a", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -27833,7 +27833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fdb5df4-fb28-480d-a53a-620b36a672ae", + "id": "d0a99093-ec64-4efe-b6e7-d52fa45fff83", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -27896,7 +27896,7 @@ } }, { - "id": "66ee2b3c-a69c-4f13-a05d-a43ab629a51e", + "id": "015d4c3c-b3fb-4a47-8da0-76d246831ff0", "name": "Create an update profile action", "request": { "name": "Create an update profile action", @@ -27940,7 +27940,7 @@ }, "response": [ { - "id": "4a7fc8a1-fa5a-4825-93c4-5e220e3cff50", + "id": "73cad177-4a12-4d7c-8b95-501f45ee5dd8", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -27997,7 +27997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0452fc97-aeea-49e0-905d-b31d08bb670e", + "id": "edd94dfb-c35f-4a7a-9480-553d4cee0e97", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28054,7 +28054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "965acd68-5d2e-429a-8d13-f6dcc7223e79", + "id": "b3a21c9c-379e-4483-b65c-ad5ca866ef46", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28117,7 +28117,7 @@ } }, { - "id": "e5b95354-e094-4d62-b0f4-0f4530e703f4", + "id": "dd1ac359-fea7-4abe-8b31-07e249e24339", "name": "Create a username password action", "request": { "name": "Create a username password action", @@ -28161,7 +28161,7 @@ }, "response": [ { - "id": "02b87a36-e17c-4781-8e37-e953cb7a28b4", + "id": "52ffc9e0-5d95-4655-a7ef-c240e1598ed1", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28218,7 +28218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c37f612-eba5-444f-82c7-942cb3b7c91e", + "id": "b0155426-00fa-43a5-9a27-4b50d9fef365", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28275,7 +28275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "277656dc-11ab-44db-b01f-fd4d39121bd6", + "id": "543a6cb0-5b02-4045-9a3d-92f45c2f702f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28338,7 +28338,7 @@ } }, { - "id": "1b50ba0b-ef2f-4f30-96f5-14b4cb134215", + "id": "179e3509-7e73-4abd-baa3-1eef8f5efcb4", "name": "Get Workflow Actions", "request": { "name": "Get Workflow Actions", @@ -28378,7 +28378,7 @@ }, "response": [ { - "id": "e256157e-d1bf-450e-9e64-966046d67336", + "id": "86a881fe-7882-4174-bc9e-55f58fd4b632", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28431,7 +28431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc641c1-c719-420e-9524-5a528e7989f2", + "id": "43ae6460-ee75-4fe7-8c12-6d01fd062d66", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28484,7 +28484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b63138b0-918d-4693-94f2-9cb2a0b07429", + "id": "8ccfae9d-d06e-4251-9dde-7d58e5c9dcbb", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28549,7 +28549,7 @@ "description": "", "item": [ { - "id": "f486fdc3-0a7f-4e3a-9a96-a81f533c79ce", + "id": "14c293fd-d0b2-46ef-9ddc-34dc993bdc30", "name": "Create a workflow action performer", "request": { "name": "Create a workflow action performer", @@ -28592,7 +28592,7 @@ }, "response": [ { - "id": "3f5680f6-5829-4041-91f4-259d3b76682f", + "id": "0615c6a6-deaf-429f-8bc9-086ba796704d", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28648,7 +28648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54917a7b-521c-4cfd-8e80-b8190905b98d", + "id": "fec2fa40-210c-4b9a-a4b4-0878f2a7f67d", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -28704,7 +28704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ca0747-8c7a-4c96-b77a-9c342c3c84cf", + "id": "3f0a1d1c-4ea5-4853-b102-4e0104114295", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -28772,7 +28772,7 @@ "description": "", "item": [ { - "id": "2ecc7958-0caf-45ce-8f96-8ad94d42501c", + "id": "3cc6c9d5-4e20-4219-9ed2-569a3efc9cd3", "name": "Get workflow sessions", "request": { "name": "Get workflow sessions", @@ -28831,7 +28831,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ea magna sunt consequatfugiat Du" + "value": "exercitation aliqua pariatur con" }, { "disabled": false, @@ -28849,7 +28849,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -28858,7 +28858,7 @@ "type": "text/plain" }, "key": "status", - "value": "soap request sent" + "value": "pending trigger" }, { "disabled": false, @@ -28884,7 +28884,7 @@ }, "response": [ { - "id": "f94ef0b9-ff1d-4eec-a3ca-1a4ec1f8ae48", + "id": "b7779a69-dd29-42f3-a88b-249dad497073", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -28938,7 +28938,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ea magna sunt consequatfugiat Du" + "value": "exercitation aliqua pariatur con" }, { "disabled": false, @@ -28956,7 +28956,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -28965,7 +28965,7 @@ "type": "text/plain" }, "key": "status", - "value": "soap request sent" + "value": "pending trigger" }, { "disabled": false, @@ -29004,12 +29004,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"consequat officia sint mollitet \",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:26ff87ed-8c29-e908-c378-b409313ecbb3\",\n \"e8e3e180-ce09-1a16-5aa8-0fa64beb9a10\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"irure velitsed laboris nullaenim\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"ea80b1ab-60d2-c5d4-bd2c-c85fa7e964d5\",\n \"urn:uuid:3b41cd94-7da6-413f-93bb-d965bf33a80d\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": 1476599,\n \"offset\": -24425803,\n \"total\": -20556591,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"workflow_sessions\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in dolore consequat nonsunt null\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"ea7aab29-eb1a-dc9f-a015-c51e23972a66\",\n \"urn:uuid:c4422471-f725-9d18-eceb-9f4cec0d7567\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"labore dolor commodominim ut Ut \",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"a0f526da-5060-5c87-8e66-edf15e692210\",\n \"urn:uuid:31228f3e-3583-ef69-c52e-6512a5fb2392\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ],\n \"_metadata\": {\n \"limit\": 83653089,\n \"offset\": 91914029,\n \"total\": -899757,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cc705b73-367c-4554-af7e-1801a5cb833c", + "id": "04b140d6-a4a5-4c7a-b7bd-1b216bf4a3c1", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29063,7 +29063,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ea magna sunt consequatfugiat Du" + "value": "exercitation aliqua pariatur con" }, { "disabled": false, @@ -29081,7 +29081,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -29090,7 +29090,7 @@ "type": "text/plain" }, "key": "status", - "value": "soap request sent" + "value": "pending trigger" }, { "disabled": false, @@ -29134,7 +29134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a56be10-41cd-4ff5-9904-ca4fda71265c", + "id": "461434fa-aea4-42d8-a76e-49095fb4de6f", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29188,7 +29188,7 @@ "type": "text/plain" }, "key": "uid", - "value": "ea magna sunt consequatfugiat Du" + "value": "exercitation aliqua pariatur con" }, { "disabled": false, @@ -29206,7 +29206,7 @@ "type": "text/plain" }, "key": "requester_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -29215,7 +29215,7 @@ "type": "text/plain" }, "key": "status", - "value": "soap request sent" + "value": "pending trigger" }, { "disabled": false, @@ -29265,7 +29265,7 @@ } }, { - "id": "7492d159-872a-4bb0-9490-6126e4890ae4", + "id": "64484e0f-d94c-4f93-ac04-8d040791cc8c", "name": "Create a workflow session", "request": { "name": "Create a workflow session", @@ -29306,7 +29306,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"8e3a8cd4-2d65-a086-d6d9-49480979e562\",\n \"dd449ef7-d608-c80d-1e35-5bfc3e3e06a0\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:3b505864-6ac6-b9c6-4dce-b3210a0e35cf\",\n \"c3b7d479-17fe-704a-956a-815c5f0bafb3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29318,7 +29318,7 @@ }, "response": [ { - "id": "80deeb07-0034-4065-a636-59aa9672d87e", + "id": "1b89b503-46eb-4e34-b74f-6ba621cb3e0e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29362,7 +29362,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"8e3a8cd4-2d65-a086-d6d9-49480979e562\",\n \"dd449ef7-d608-c80d-1e35-5bfc3e3e06a0\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:3b505864-6ac6-b9c6-4dce-b3210a0e35cf\",\n \"c3b7d479-17fe-704a-956a-815c5f0bafb3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29379,12 +29379,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et sunt indolor tempor nisilabor\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:6f16d73d-c893-74cb-02b7-79e201068f15\",\n \"7ebf2f7e-7314-4eaa-4694-9105a2f2bdc2\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco idin magnaoccaecat cupid\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2c11e5ba-bea4-cd1c-9ee4-8e129da04b9a\",\n \"urn:uuid:2e48ee7b-54d5-ae15-50c2-1e52c8b629d3\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7b8ba028-bb85-437f-b05e-bd3d1c4e628f", + "id": "1b89e9cd-250b-407d-8c5c-c5ff1d1c14e6", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29428,7 +29428,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"8e3a8cd4-2d65-a086-d6d9-49480979e562\",\n \"dd449ef7-d608-c80d-1e35-5bfc3e3e06a0\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:3b505864-6ac6-b9c6-4dce-b3210a0e35cf\",\n \"c3b7d479-17fe-704a-956a-815c5f0bafb3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29450,7 +29450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90be522b-ba87-4386-baff-f1b5efb21723", + "id": "e342314f-c272-45ec-b3ab-5d4600b960d8", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29494,7 +29494,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"8e3a8cd4-2d65-a086-d6d9-49480979e562\",\n \"dd449ef7-d608-c80d-1e35-5bfc3e3e06a0\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:3b505864-6ac6-b9c6-4dce-b3210a0e35cf\",\n \"c3b7d479-17fe-704a-956a-815c5f0bafb3\"\n ],\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29522,7 +29522,7 @@ } }, { - "id": "b7457893-9153-4e7e-acfe-2a11ba1d83fd", + "id": "c8bbaef7-ceaf-49d6-9912-5401036361fc", "name": "Find workflow session by id", "request": { "name": "Find workflow session by id", @@ -29564,7 +29564,7 @@ }, "response": [ { - "id": "c7857b20-0789-4e43-9a31-38a5c186b66c", + "id": "1cf79073-11f5-487c-883d-c20f46fadf55", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29603,12 +29603,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et sunt indolor tempor nisilabor\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:6f16d73d-c893-74cb-02b7-79e201068f15\",\n \"7ebf2f7e-7314-4eaa-4694-9105a2f2bdc2\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco idin magnaoccaecat cupid\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2c11e5ba-bea4-cd1c-9ee4-8e129da04b9a\",\n \"urn:uuid:2e48ee7b-54d5-ae15-50c2-1e52c8b629d3\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3833b80a-1385-41fb-b923-5f5d29a7685b", + "id": "b2fe6e75-ff64-42e5-921a-cc97b7cada42", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29652,7 +29652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9b8d26-3811-47e9-93df-dddc01035f47", + "id": "206d3a3a-abee-4d45-9c89-a576ddf431cf", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29702,7 +29702,7 @@ } }, { - "id": "431496bd-9e0a-49ea-8832-214c8e39616f", + "id": "73624bc3-9836-4aec-9be2-52ddba96ca54", "name": "Update a workflow session by id", "request": { "name": "Update a workflow session by id", @@ -29755,7 +29755,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"1dff7b5c-86bd-8a67-862c-a9b73165d075\",\n \"dbeeeeb1-b0fd-2bbf-0015-b0e199d1653b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:eacf358a-91e0-9133-8e1b-f40763d30cfa\",\n \"4eb2ba22-17f0-bf9d-2b88-c87e2d5dc7ca\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29767,7 +29767,7 @@ }, "response": [ { - "id": "886998f5-58b6-4779-a73f-e4d5bf56273e", + "id": "e1f55734-334a-426a-88d0-e16dbacd6fd5", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -29812,7 +29812,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"1dff7b5c-86bd-8a67-862c-a9b73165d075\",\n \"dbeeeeb1-b0fd-2bbf-0015-b0e199d1653b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:eacf358a-91e0-9133-8e1b-f40763d30cfa\",\n \"4eb2ba22-17f0-bf9d-2b88-c87e2d5dc7ca\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29829,12 +29829,12 @@ "value": "application/json" } ], - "body": "{\n \"workflow_session\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"et sunt indolor tempor nisilabor\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:6f16d73d-c893-74cb-02b7-79e201068f15\",\n \"7ebf2f7e-7314-4eaa-4694-9105a2f2bdc2\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "body": "{\n \"workflow_session\": {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ullamco idin magnaoccaecat cupid\",\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"2c11e5ba-bea4-cd1c-9ee4-8e129da04b9a\",\n \"urn:uuid:2e48ee7b-54d5-ae15-50c2-1e52c8b629d3\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "438e4c57-5ebd-4126-b9ea-fe0c245b0d32", + "id": "5ebf7d35-7935-469f-baf6-451ffddcfdfa", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -29879,7 +29879,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"1dff7b5c-86bd-8a67-862c-a9b73165d075\",\n \"dbeeeeb1-b0fd-2bbf-0015-b0e199d1653b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:eacf358a-91e0-9133-8e1b-f40763d30cfa\",\n \"4eb2ba22-17f0-bf9d-2b88-c87e2d5dc7ca\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29901,7 +29901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfc37ad5-0539-4e56-b4ab-1b7b7d112d42", + "id": "6c762aa2-a2e6-4f0b-9ff5-dc3a1735a6a1", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -29946,7 +29946,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"1dff7b5c-86bd-8a67-862c-a9b73165d075\",\n \"dbeeeeb1-b0fd-2bbf-0015-b0e199d1653b\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", + "raw": "{\n \"workflow_session\": {\n \"workflow_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"requester_type\": \"User\",\n \"profile_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"profile_ids\": [\n \"urn:uuid:eacf358a-91e0-9133-8e1b-f40763d30cfa\",\n \"4eb2ba22-17f0-bf9d-2b88-c87e2d5dc7ca\"\n ],\n \"status\": \"completed\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_select_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"profile_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"multiple_profile_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"contributor_select_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"contributor_search_attribute_uid\": \"49ed1cb6-9977-4965-9bfe-f2bcc2425244\",\n \"multiple_contributor_search_attribute_uid\": \"59ed1cb6-9977-4965-9bfe-f2bcc242523e, 89ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_select_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"owner_search_attribute_uid\": \"79ed1cb6-9977-4965-9bfe-f2bcc242523e\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -29974,7 +29974,7 @@ } }, { - "id": "f7eff1e3-1716-442e-aa52-fd04b4464108", + "id": "3c440f61-5585-4dd4-9d9e-9d76600a4482", "name": "Retrieves the URL of an attachment attribute value from a workflow session", "request": { "name": "Retrieves the URL of an attachment attribute value from a workflow session", @@ -30028,7 +30028,7 @@ }, "response": [ { - "id": "d29eda52-fcd3-48de-b111-b6f4fc2c76f7", + "id": "b078e1d4-d6aa-46ee-9dcd-326328ce81c4", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30069,12 +30069,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b1dedec4-8196-4f20-a78d-da6084d0eb11", + "id": "2dbb5bc5-ab6a-41b2-b10e-481d9e3491f8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30120,7 +30120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb6bd89d-0d75-4263-a686-f06d6e6b9b51", + "id": "d6095f50-15fa-411c-aea6-1af0b664a6ee", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30172,7 +30172,7 @@ } }, { - "id": "29785f5d-9b2e-4bc1-92cc-454d98d15edd", + "id": "82fb0be3-5997-4b3e-8311-d46250670137", "name": "Uploads a new attachment attribute value to a workflow session", "request": { "name": "Uploads a new attachment attribute value to a workflow session", @@ -30242,7 +30242,7 @@ }, "response": [ { - "id": "a80f4823-d3fa-4b38-993e-c79f5351acd4", + "id": "1649317a-9be7-4591-a2c9-e35606acd89e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30299,12 +30299,12 @@ "value": "application/json" } ], - "body": "{\n \"url\": \"anim\"\n}", + "body": "{\n \"url\": \"pariatur id sit\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2fd7888-5a49-4686-a70e-5f2f719ae030", + "id": "2c993c18-8664-4e1b-911a-11243050f1b8", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -30366,7 +30366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51033bef-fb37-4cf4-99a6-6ceec60a521b", + "id": "c7d36649-7042-47fa-90a2-d4e1405c0648", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -30440,7 +30440,7 @@ "description": "", "item": [ { - "id": "891fde57-dc48-4a45-8537-eebab6e35941", + "id": "328f2445-e13c-4200-8a18-19c73a342474", "name": "Get identity proofing result data in bulk", "request": { "name": "Get identity proofing result data in bulk", @@ -30499,7 +30499,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -30534,7 +30534,7 @@ }, "response": [ { - "id": "643feb86-f69b-4405-8a15-3c0f088c7cec", + "id": "2a0deb5e-b617-49f1-aa2f-cbfd00692e69", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30588,7 +30588,7 @@ "type": "text/plain" }, "key": "workflow_session_id", - "value": "0e03da7c-6906-57b6-6a09-db5070bf51af" + "value": "urn:uuid:d76fbacc-3a11-31f0-490d-a17f7fefc67d" }, { "disabled": false, @@ -30636,7 +30636,7 @@ "value": "application/json" } ], - "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"c0af4f97-e356-4f8c-4624-1822f64feee3\",\n \"identity_proofing_action_id\": \"urn:uuid:a53c30c5-4ef8-4186-f5ec-ef5ea2b5a5f4\",\n \"workflow_session_id\": \"d19b79b2-c850-f019-925e-d50a0fc086f6\",\n \"profile_id\": \"urn:uuid:3ff7f1f5-be3b-8d97-aa61-27e3115d22cd\",\n \"proofing_workflow\": \"e31877cb-ea3d-fe7c-277a-fd3d39d6cc1c\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1960-03-31T20:17:19.013Z\",\n \"updated_at\": \"2020-11-13T09:41:41.601Z\"\n },\n {\n \"id\": \"urn:uuid:c1f7cf21-ba18-9852-9b63-f26dbdd46e29\",\n \"identity_proofing_action_id\": \"urn:uuid:0e0c3d1f-1289-b1b9-c809-3f1e0e8eb470\",\n \"workflow_session_id\": \"urn:uuid:9d5c44e0-f85d-365e-19eb-90d449a1b306\",\n \"profile_id\": \"1cbdb5cf-5499-41e7-0052-446e075842ff\",\n \"proofing_workflow\": \"5b9c45a4-798b-3672-1ce9-5c8adbf8396e\",\n \"result\": \"pending\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1955-05-16T19:39:32.526Z\",\n \"updated_at\": \"1977-11-17T11:45:12.990Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": -90423563,\n \"offset\": 21989707,\n \"total\": -74321067,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", + "body": "{\n \"identity_proofing_results\": [\n {\n \"id\": \"urn:uuid:aa7658c1-0f7e-b612-7e4e-0ece55e87fe9\",\n \"identity_proofing_action_id\": \"34e53545-c555-d56d-4660-a356cdea3970\",\n \"workflow_session_id\": \"a9319cff-afc2-0f1f-e3b7-18d597e9d169\",\n \"profile_id\": \"urn:uuid:f5f60638-80c0-6314-60b2-e5c30dc4f484\",\n \"proofing_workflow\": \"urn:uuid:06022bfb-c553-7195-6a25-759c9aa1aef4\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1989-03-02T05:45:40.067Z\",\n \"updated_at\": \"1976-05-24T16:17:09.425Z\"\n },\n {\n \"id\": \"urn:uuid:d43467f8-3b66-ed46-9201-7114be3faa66\",\n \"identity_proofing_action_id\": \"urn:uuid:1657c378-c47b-e08a-c5e4-e61c8f671489\",\n \"workflow_session_id\": \"daf19bd2-03c8-e860-e040-ca26d1416cd1\",\n \"profile_id\": \"04d3241b-fb93-9858-66ef-f26ddd2eb8b9\",\n \"proofing_workflow\": \"urn:uuid:8a9957f6-ad11-03b8-afda-e89b6a34b95d\",\n \"result\": \"fail\",\n \"proofing_attributes\": {\n \"result\": \"approve\"\n },\n \"created_at\": \"1978-01-05T16:41:44.439Z\",\n \"updated_at\": \"1945-11-19T03:15:50.511Z\"\n }\n ],\n \"_metadata\": {\n \"limit\": 55255272,\n \"offset\": -58556405,\n \"total\": 53550,\n \"next\": \"/endpoint?limit=10&offset=60\",\n \"previous\": \"/endpoint?limit=10&offset=40\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30653,7 +30653,7 @@ "description": "", "item": [ { - "id": "34146b53-15de-4017-aaef-3dbc27498613", + "id": "975e8a01-9992-484a-9dfa-68a05426bcd3", "name": "Get saved advanced search queries", "request": { "name": "Get saved advanced search queries", @@ -30683,7 +30683,7 @@ }, "response": [ { - "id": "544c88bd-dffa-4574-b848-747617ffab29", + "id": "44e135ef-3bf9-4df7-ac91-8d6d2520bd32", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30721,7 +30721,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": [\n {\n \"id\": \"4b387155-961c-2c47-5804-3d17f3b8641f\",\n \"uid\": \"culpa mollit commodolaborumin si\",\n \"label\": \"laborum \",\n \"condition_rules_attributes\": [\n {\n \"id\": \"c1961e17-f59f-f436-9926-5cd24a176bd3\",\n \"uid\": \"laborumtempor id irureeu et in u\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"b544f0f5-1b42-eeb3-0926-c3563adfa6cf\"\n },\n {\n \"id\": \"4150be7b-294c-d278-e288-3e17348d910d\",\n \"uid\": \"mollit dolor ut dolordeseruntocc\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"4caa163b-7c8d-321c-863e-e37b9f4f1a92\"\n }\n ]\n },\n {\n \"id\": \"e972011a-92c2-d358-42b3-c63e6a6eb64e\",\n \"uid\": \"ullamcoincididuntdolor amet id c\",\n \"label\": \"ipsum\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:0e253399-f6f9-1957-63a1-7b7a03c72886\",\n \"uid\": \"eu qui commodoid nostrud aliquai\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:05c7e34f-ea27-5b34-b43a-7b19d8bb6851\"\n },\n {\n \"id\": \"5e2bb021-ab72-35ae-94af-e7fea59ac958\",\n \"uid\": \"eu proident fugiatveniam laboris\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"defb25af-867c-ee9f-5276-d939c6617c15\"\n }\n ]\n }\n ]\n}", + "body": "{\n \"advanced_search\": [\n {\n \"id\": \"urn:uuid:fe5b1aea-b4ed-a641-a861-65c02eda12ae\",\n \"uid\": \"non aliquipet dolorcillum laboru\",\n \"label\": \"culpa ex quis\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:927b7a62-de88-1910-2f32-6f0e77bf2299\",\n \"uid\": \"elit tempor exercitation volupta\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"7d799207-85f0-8e35-69b6-3d3b56203875\"\n },\n {\n \"id\": \"70d8bbee-1ed7-05d7-60c8-d4a6e9699033\",\n \"uid\": \"in esse exercitation nulla cillu\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:09599d99-732d-700a-8655-a9f07c18e083\"\n }\n ]\n },\n {\n \"id\": \"5bb14cfd-89f7-82b7-c34c-70e01d3dc27a\",\n \"uid\": \"aliqua ullamco fugiatlabore ad r\",\n \"label\": \"deserunt velit\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:a1db45cc-983a-cf8e-ae52-bce4a29a116b\",\n \"uid\": \"in dolore dolor ideu veniam pari\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:6bd99671-e1fd-0187-43e7-939dc9ed06a0\"\n },\n {\n \"id\": \"urn:uuid:3f94b655-f116-d142-904d-3523346a5029\",\n \"uid\": \"officia ametlaborum Lorem deseru\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:3390e418-0b13-5134-8117-7de4e81e0e92\"\n }\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30732,7 +30732,7 @@ } }, { - "id": "db84467e-9dd4-484e-87bb-155f3fd8bf09", + "id": "c432d48d-66d5-45e7-8890-0b2ab5d05c19", "name": "Save an advanced search query for later use", "request": { "name": "Save an advanced search query for later use", @@ -30763,7 +30763,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ipsum\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"2e3593cf-2066-0ce0-cd3b-65985717bb99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"01b78d3f-3d2a-604d-6594-1a2b665a91ca\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"id veni\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:76e68ab1-da10-6eb6-1662-863ecb8f0b99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fb93d610-ac2b-797a-2b8a-ccea611bdfbe\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30775,7 +30775,7 @@ }, "response": [ { - "id": "f6e54eee-74b5-4643-bf46-3df613d00a07", + "id": "8a7d2056-f9a8-4a2e-9b32-faeac17dd3c9", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30809,7 +30809,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ipsum\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"2e3593cf-2066-0ce0-cd3b-65985717bb99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"01b78d3f-3d2a-604d-6594-1a2b665a91ca\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"id veni\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:76e68ab1-da10-6eb6-1662-863ecb8f0b99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fb93d610-ac2b-797a-2b8a-ccea611bdfbe\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30826,7 +30826,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:075ca75b-6cbc-3c20-b7d9-5b337f097c2f\",\n \"uid\": \"Duiselit voluptatetemporest fugi\",\n \"label\": \"Excepteur aute Duis consequat\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:40256c7e-a0cf-b5b2-0bf5-f0c425a29d89\",\n \"uid\": \"commodo ut proident laborumincid\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:390ecf3c-ffc0-38bb-3605-ddbfbdbdb355\"\n },\n {\n \"id\": \"urn:uuid:401d174e-bbd4-4816-56b0-a5bb69cb6458\",\n \"uid\": \"nostrud tempor anim consectetur \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"44282e80-8784-6d59-9812-568ba3412903\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:6fc79897-6891-7818-8caf-7f4097a6a141\",\n \"uid\": \"deserunt elit dolor sed suntcomm\",\n \"label\": \"id\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:db7b1d8a-7cdf-8d75-1cd6-b468a48dbfa5\",\n \"uid\": \"sit veniam deseruntcupidatat eu \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"5fded1f2-1841-1f9e-e1dd-4fa2672bea9d\"\n },\n {\n \"id\": \"d6beb1ba-3cc2-9833-7924-c23474b2b4a6\",\n \"uid\": \"aute consequatdolor Lorem est Du\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:ecd62fb2-3154-a9d9-0e06-bb24a958acd9\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -30837,7 +30837,7 @@ } }, { - "id": "8ad2c45b-5205-479b-87b2-1f93bcc5f88b", + "id": "2af8a983-9d45-49b5-875e-1227eab4e3c6", "name": "Run an advanced search for profiles, without saving the query", "request": { "name": "Run an advanced search for profiles, without saving the query", @@ -30897,7 +30897,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ipsum\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"2e3593cf-2066-0ce0-cd3b-65985717bb99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"01b78d3f-3d2a-604d-6594-1a2b665a91ca\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"id veni\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:76e68ab1-da10-6eb6-1662-863ecb8f0b99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fb93d610-ac2b-797a-2b8a-ccea611bdfbe\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30909,7 +30909,7 @@ }, "response": [ { - "id": "23bf84b4-53cd-4a60-a5e8-c369e4129c56", + "id": "d839ed43-54e8-4601-86d9-83ec9531dafc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -30972,7 +30972,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"label\": \"ipsum\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"2e3593cf-2066-0ce0-cd3b-65985717bb99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"01b78d3f-3d2a-604d-6594-1a2b665a91ca\"\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"label\": \"id veni\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:76e68ab1-da10-6eb6-1662-863ecb8f0b99\"\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"fb93d610-ac2b-797a-2b8a-ccea611bdfbe\"\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -30989,7 +30989,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in occaecat in dolorDuis reprehe\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis deseruntsint occaecat labor\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ipsumaliquipdolor animdolore cil\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui consequat Excepteur cupidata\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -31000,7 +31000,7 @@ } }, { - "id": "002f1ce0-dbc5-49c1-9eae-c24f08d7e5ec", + "id": "8d4a9a86-2242-4db2-9694-606101b4ec1a", "name": "Update a saved advanced search query", "request": { "name": "Update a saved advanced search query", @@ -31043,7 +31043,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"8907f8d4-c591-8032-b6c0-27817b3f783b\",\n \"label\": \"officia elit eu\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"1953e168-d232-81f8-66db-45f6df544732\",\n \"_destroy\": false\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f2b8c55a-daa1-4b69-9ab4-25322d8086b6\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"2884e956-b5c9-af82-bccf-4facefc24c36\",\n \"label\": \"exercitation elit\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"86198fe0-68d9-de59-4907-926b815cdf42\",\n \"_destroy\": false\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f57400a8-f9e1-4034-23f8-ca66f3206074\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -31055,7 +31055,7 @@ }, "response": [ { - "id": "d898da31-ad37-4658-aa6c-1f95591d720f", + "id": "d426170c-d19a-4c0f-82d0-c0786bf749cc", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -31090,7 +31090,7 @@ "method": "PATCH", "body": { "mode": "raw", - "raw": "{\n \"advanced_search\": {\n \"id\": \"8907f8d4-c591-8032-b6c0-27817b3f783b\",\n \"label\": \"officia elit eu\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"1953e168-d232-81f8-66db-45f6df544732\",\n \"_destroy\": false\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f2b8c55a-daa1-4b69-9ab4-25322d8086b6\",\n \"_destroy\": false\n }\n ]\n }\n}", + "raw": "{\n \"advanced_search\": {\n \"id\": \"2884e956-b5c9-af82-bccf-4facefc24c36\",\n \"label\": \"exercitation elit\",\n \"condition_rules_attributes\": [\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"86198fe0-68d9-de59-4907-926b815cdf42\",\n \"_destroy\": false\n },\n {\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:f57400a8-f9e1-4034-23f8-ca66f3206074\",\n \"_destroy\": false\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -31107,7 +31107,7 @@ "value": "application/json" } ], - "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:075ca75b-6cbc-3c20-b7d9-5b337f097c2f\",\n \"uid\": \"Duiselit voluptatetemporest fugi\",\n \"label\": \"Excepteur aute Duis consequat\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:40256c7e-a0cf-b5b2-0bf5-f0c425a29d89\",\n \"uid\": \"commodo ut proident laborumincid\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"urn:uuid:390ecf3c-ffc0-38bb-3605-ddbfbdbdb355\"\n },\n {\n \"id\": \"urn:uuid:401d174e-bbd4-4816-56b0-a5bb69cb6458\",\n \"uid\": \"nostrud tempor anim consectetur \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"44282e80-8784-6d59-9812-568ba3412903\"\n }\n ]\n }\n}", + "body": "{\n \"advanced_search\": {\n \"id\": \"urn:uuid:6fc79897-6891-7818-8caf-7f4097a6a141\",\n \"uid\": \"deserunt elit dolor sed suntcomm\",\n \"label\": \"id\",\n \"condition_rules_attributes\": [\n {\n \"id\": \"urn:uuid:db7b1d8a-7cdf-8d75-1cd6-b468a48dbfa5\",\n \"uid\": \"sit veniam deseruntcupidatat eu \",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"!=\",\n \"value\": \"5fded1f2-1841-1f9e-e1dd-4fa2672bea9d\"\n },\n {\n \"id\": \"d6beb1ba-3cc2-9833-7924-c23474b2b4a6\",\n \"uid\": \"aute consequatdolor Lorem est Du\",\n \"type\": \"ProfileTypeRule\",\n \"comparison_operator\": \"==\",\n \"value\": \"urn:uuid:ecd62fb2-3154-a9d9-0e06-bb24a958acd9\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -31118,7 +31118,7 @@ } }, { - "id": "afc2deca-037d-4ece-9704-d30e5da70dad", + "id": "7c5a89af-7463-49da-b4b0-917e30ba44fd", "name": "Run a saved advanced search query", "request": { "name": "Run a saved advanced search query", @@ -31189,7 +31189,7 @@ }, "response": [ { - "id": "17a310f8-2c8a-40a2-a842-85dcb0103780", + "id": "84a60397-bd21-4f78-b3f2-955223f19c2e", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -31257,7 +31257,7 @@ "value": "application/json" } ], - "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"in occaecat in dolorDuis reprehe\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"quis deseruntsint occaecat labor\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", + "body": "{\n \"profiles\": [\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"ipsumaliquipdolor animdolore cil\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n },\n {\n \"id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"uid\": \"qui consequat Excepteur cupidata\",\n \"name\": \"Profile Name\",\n \"profile_type_id\": \"33f072dd-13b4-41e1-8ea0-16f2a59b57c8\",\n \"status\": \"Active\",\n \"id_proofing_status\": \"pending\",\n \"created_at\": \"2023-11-21T19:23:54.256Z\",\n \"updated_at\": \"2023-11-21T19:23:54.256Z\",\n \"attributes\": {\n \"text_attribute_uid\": \"static text\",\n \"date_attribute_uid\": \"01/15/2020\",\n \"profile_select_attribute_uid\": \"Profile Name\",\n \"profile_search_attribute_uid\": \"Profile Name\",\n \"multiple_profile_search_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"multiple_profile_select_attribute_uid\": \"Profile Name,Second Profile Name,Third Profile Name\",\n \"contributor_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"contributor_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"multiple_contributor_search_attribute_uid\": \"User Name (user_email@test.com),Second User Name (user_email@test.com),Third User Name (user_email@test.com)\",\n \"owner_select_attribute_uid\": \"User Name (user_email@test.com)\",\n \"owner_search_attribute_uid\": \"User Name (user_email@test.com)\",\n \"dropdown_attribute_uid\": \"yes, no\",\n \"tags_attribute_uid\": \"yes, no\",\n \"checkbox_attribute_uid\": \"yes, no\",\n \"text_area_uid\": \"static text\",\n \"radio_attribute_uid\": \"yes, no\"\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -31274,7 +31274,7 @@ "description": "", "item": [ { - "id": "3d3241d4-fe65-4a84-8495-7627177a03d6", + "id": "6736c8b3-b20b-40aa-a442-7fa764e9094e", "name": "Get the status of a bulk job", "request": { "name": "Get the status of a bulk job", @@ -31297,7 +31297,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" } ], "variable": [] @@ -31314,7 +31314,7 @@ }, "response": [ { - "id": "db9824f6-b7d9-4ff4-ba30-ef517c114c86", + "id": "74430c4e-2580-4fe6-bb15-dfd8cbed2d23", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -31332,7 +31332,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" } ], "variable": [] @@ -31362,12 +31362,12 @@ "value": "application/json" } ], - "body": "{\n \"uid\": \"e9497551-2ce3-a485-87f0-1c8f760cd5ff\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"abdf240e-ae90-16b4-376e-be5dbf28550d\",\n \"manager_id\": \"e15fa4d8-df0b-abf0-fb47-b083b80169d5\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"c7e4579c-d2dd-efb6-c606-bc0b61d68fa2\",\n \"manager_id\": \"urn:uuid:c77e8f4c-ff41-9002-71fd-cb92398b53d2\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", + "body": "{\n \"uid\": \"urn:uuid:4f47916d-fb39-2155-381a-fdf6097702ab\",\n \"status\": \"complete\",\n \"job_type\": \"import\",\n \"job_data\": [\n {\n \"user_id\": \"urn:uuid:c8d1b9f1-b89f-2d3e-0663-38e901718267\",\n \"manager_id\": \"fafaf039-0510-8f7a-ecc6-abca747d1107\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n },\n {\n \"user_id\": \"dc3609a5-c660-1505-1606-17d0d41eb236\",\n \"manager_id\": \"urn:uuid:7d30b9cf-89db-ef59-ab71-fa37e5522e73\",\n \"errors\": [\n \"Validation error for record in job\",\n \"Validation error for record in job\"\n ]\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8e864a07-59c1-409e-beb8-0bf9ee6b45d0", + "id": "ec5ff2e9-b2eb-450a-b5d7-339d945162fd", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -31385,7 +31385,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" } ], "variable": [] @@ -31420,7 +31420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3f3e9e8-de6d-4a00-9d35-e3bf8a0ca20f", + "id": "432c36dd-b7eb-4c73-b3a3-7e3102f5a373", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -31438,7 +31438,7 @@ "type": "text/plain" }, "key": "job_id", - "value": "voluptate in" + "value": "Excepteur aliquip exercitation" } ], "variable": [] @@ -31485,7 +31485,7 @@ "description": "", "item": [ { - "id": "ea939a13-4a7f-4e07-8b3b-effcd540ccfb", + "id": "f5194ad4-1055-45b5-8ea1-2388e22d8302", "name": "Create a form", "request": { "name": "Create a form", @@ -31528,7 +31528,7 @@ }, "response": [ { - "id": "10b86bed-2987-4da2-ba02-6fee6bda57f2", + "id": "8045d5f9-35f0-48f3-aca8-e97f427ca075", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -31584,7 +31584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6abda99e-4df5-46b3-b0be-cdb1357011aa", + "id": "e401416d-fbd3-48f6-97fe-b081e7b5267f", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -31640,7 +31640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dda323fb-f7d4-4db4-a7db-ce92e5b23d4a", + "id": "e492b835-1757-4552-9c41-4ce35c116b63", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -31708,7 +31708,7 @@ "description": "", "item": [ { - "id": "328a52b9-23de-4167-856b-b871e55f6b95", + "id": "63921cf9-f20e-420b-adb7-cd252673d5af", "name": "Reassign data record", "request": { "name": "Reassign data record", @@ -31765,7 +31765,7 @@ }, "response": [ { - "id": "f60abd0b-8446-42af-896d-365200506c68", + "id": "59db12bc-5ce5-43f5-915d-c5459be8db8e", "name": "The data record has been reassigned.", "originalRequest": { "url": { @@ -31814,7 +31814,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aeada4b6-1e03-4cd9-8420-60afa08ad546", + "id": "c343e81c-86f1-494c-b99a-7d70499de226", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -31873,7 +31873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2ad91cd-bd0b-4985-b927-aeb043c607ee", + "id": "add39525-54d9-4a0a-87b1-f67d521eac2d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -31938,7 +31938,7 @@ } }, { - "id": "ffdc9b8f-3447-40ae-a1b2-06f1fe25bf5b", + "id": "f9c1e8fd-6579-4e94-9607-eab63fe44aa9", "name": "Delete a master record", "request": { "name": "Delete a master record", @@ -31981,7 +31981,7 @@ }, "response": [ { - "id": "0f8f83b0-4e8a-4027-851d-decdc683b89a", + "id": "60b57ffd-9b2a-46b5-b406-fb4561ed2b9b", "name": "Master record deleted.", "originalRequest": { "url": { @@ -32016,7 +32016,7 @@ "_postman_previewlanguage": "text" }, { - "id": "443dffc7-9911-42e0-bee9-a07a011d1ea0", + "id": "9d7c5561-5ef1-4c2d-976f-1864e41fe656", "name": "Error deleting master record", "originalRequest": { "url": { @@ -32056,12 +32056,12 @@ "value": "application/json" } ], - "body": "{\n \"error\": \"in aute anim exercitation do\"\n}", + "body": "{\n \"error\": \"ut ullamco eiusmod quis\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff9045ee-a309-4c65-9eec-fc8db47fab50", + "id": "5c2ec679-bac6-48e3-b521-a27410a5337d", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -32118,7 +32118,7 @@ "description": "", "item": [ { - "id": "abf3bbe3-a14a-4ac1-a10e-ae0d887f9ab4", + "id": "39a4d1d2-c56a-44d8-821f-7c152fff621f", "name": "Create a form attribute", "request": { "name": "Create a form attribute", @@ -32161,7 +32161,7 @@ }, "response": [ { - "id": "991617be-58ed-4e48-8970-fcd20fc81e3c", + "id": "dd6a0ab0-2e8b-407c-b05b-43f54e543a24", "name": "Expected response to a valid request", "originalRequest": { "url": { @@ -32217,7 +32217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d796d9ff-d1d0-42b8-8c97-ed04e4e9245d", + "id": "d2723af2-9aa1-4cd9-b703-bda746a95f31", "name": "Bad Request - unable to complete.", "originalRequest": { "url": { @@ -32273,7 +32273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6d0d0b-2ead-43c2-88f2-2cb3ddb792fc", + "id": "8519f629-1965-41d2-acd0-e3a6fbae2e47", "name": "Internal Server Error - returned on unhandled exceptions.", "originalRequest": { "url": { @@ -32359,7 +32359,7 @@ } ], "info": { - "_postman_id": "007de496-13d2-42c6-b2d8-7b8d726f6088", + "_postman_id": "f6c2ab1c-8cb6-429f-afa7-29c15073870b", "name": "NERM API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/postman/collections/sailpoint-api-v2024.json b/postman/collections/sailpoint-api-v2024.json index a0494db0..78f92ca5 100644 --- a/postman/collections/sailpoint-api-v2024.json +++ b/postman/collections/sailpoint-api-v2024.json @@ -5,7 +5,7 @@ "description": "Use this API to create and manage metadata attributes for your Access Model.\nAccess Model Metadata allows you to add contextual information to your ISC Access Model items using pre-defined metadata for risk, regulations, privacy levels, etc., or by creating your own metadata attributes to reflect the unique needs of your organization. This release of the API includes support for entitlement metadata. Support for role and access profile metadata will be introduced in a subsequent release.\n\nCommon usages for Access Model metadata include:\n\n- Organizing and categorizing access items to make it easier for your users to search for and find the access rights they want to request, certify, or manage.\n\n- Providing richer information about access that is being acted on to allow stakeholders to make better decisions when approving, certifying, or managing access rights.\n\n- Identifying access that may requires additional approval requirements or be subject to more frequent review.\n", "item": [ { - "id": "af6bcebc-81fa-4a37-9139-33f60cd04f28", + "id": "466753c2-1fe1-4038-ab1c-0b0111d83256", "name": "List Access Model Metadata Attributes", "request": { "name": "List Access Model Metadata Attributes", @@ -54,7 +54,7 @@ }, "response": [ { - "id": "102386e7-961a-4d5e-9478-cebf6170e0c3", + "id": "94f4f8ce-c601-4f0e-8778-24fd887c2028", "name": "OK", "originalRequest": { "url": { @@ -117,7 +117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67556523-e37c-48f9-9a09-3a992b64b207", + "id": "7c693ec0-ec9f-4887-901f-aa230e0bcae3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180,7 +180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702e1a29-ac04-40df-bdba-2cc4745d6b46", + "id": "b080c590-f9a8-40b8-92fb-24649db2b652", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -243,7 +243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4be448fa-12f5-4913-89bd-ef6e1d294fd1", + "id": "a68d04e6-727f-4cb6-9212-e2110fe19b57", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -306,7 +306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6607db17-406d-44a0-adef-e3dab4c6f9a0", + "id": "2c01e32c-6983-433f-9b50-b728ee5374de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -369,7 +369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b128206a-31de-482d-9b7a-12e70e8a08ff", + "id": "11333136-ec40-4dd7-b611-90ace70cae65", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -438,7 +438,7 @@ } }, { - "id": "a3dd4cff-b374-4257-b3be-6de396208e05", + "id": "1bd9606a-c58b-42e2-b151-ed25be3fd8bc", "name": "Get Access Model Metadata Attribute", "request": { "name": "Get Access Model Metadata Attribute", @@ -489,7 +489,7 @@ }, "response": [ { - "id": "772525dc-cb0a-4075-ab9e-f96300357434", + "id": "99370375-7112-473d-862c-37093487d3d8", "name": "OK", "originalRequest": { "url": { @@ -543,7 +543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4bdc17-c095-4061-842d-a2903e376642", + "id": "9d1f5992-5d38-44db-90d7-1b6ee7dbccc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -597,7 +597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce4d0ba-1e26-4068-80a5-91f1519dd2ad", + "id": "1967c800-141b-432d-8b72-ebf02a64e1f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -651,7 +651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45e830a4-069f-4403-b55c-410d1f1ffc9f", + "id": "f0de81e8-6f39-47c6-90cf-aa9217cb47ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -705,7 +705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fffb8c4-ff59-4b4e-8f27-0da0cfa00727", + "id": "ac16c81c-e88c-4855-99e3-f618d7bce89b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -759,7 +759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e211006-5fcf-4eda-84c2-7d94a96db6ad", + "id": "9b56f327-99ea-4e78-a55c-17a79f6e88be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -819,7 +819,7 @@ } }, { - "id": "31c189d8-1146-4a60-9550-ed349bb13126", + "id": "2d71100f-79ae-4683-aa91-967fb3073b42", "name": "List Access Model Metadata Values", "request": { "name": "List Access Model Metadata Values", @@ -871,7 +871,7 @@ }, "response": [ { - "id": "685513b2-fd77-4fa7-9d75-6c2381e50ee4", + "id": "d686fc0b-23fa-46bf-b591-ff235dde3c4f", "name": "OK", "originalRequest": { "url": { @@ -926,7 +926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ffbeae5-23bb-4ac5-8777-62e6536f7940", + "id": "208b0d76-2421-4bec-8345-0c44eb4196f8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -981,7 +981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bf4858a-b191-4732-8ef1-2bda044b2318", + "id": "764ae632-e71e-4cee-a381-6e77f7a1b96e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1036,7 +1036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "863f2dc1-ab75-4abe-8ca4-a0094de6418b", + "id": "582be9f1-3aa9-4191-ae30-a17ee75185d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1091,7 +1091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7d60def-aa63-44f9-8ac3-7a39c2dc40e6", + "id": "f023cdd7-cd73-4cb4-b4b7-c67da98fef4d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1146,7 +1146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a7e3205-1ee3-4390-b037-6b625b6d36e9", + "id": "a665a6d0-4e1e-480c-a441-cd4bfee17917", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1207,7 +1207,7 @@ } }, { - "id": "d5407246-75e2-4740-bbab-ad3b78e9e5c7", + "id": "6940613c-2e6c-444c-ba85-7f141e0dee9c", "name": "Get Access Model Metadata Value", "request": { "name": "Get Access Model Metadata Value", @@ -1270,7 +1270,7 @@ }, "response": [ { - "id": "fd15bdf9-47d5-4806-84cb-2aa866f629a6", + "id": "b2d77f35-2a73-431e-9d67-86066b188de2", "name": "OK", "originalRequest": { "url": { @@ -1326,7 +1326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "173b046a-0b47-4196-aa9d-87f92035c326", + "id": "47588448-3766-4657-96f0-395cd7333f0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1382,7 +1382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbe5854-4bdc-483b-bfe0-0dc8060ea729", + "id": "5a171921-2ed3-49a7-b7eb-d8b5261649c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1438,7 +1438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6073c563-235a-4d8d-a918-a5e337e3f402", + "id": "b090f0f6-897a-4903-b6fc-ba7c36036979", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1494,7 +1494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45290fc8-9de4-45f4-8486-b89be1914ee5", + "id": "632b541a-f973-47e7-81db-8c482bf8d784", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1550,7 +1550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92a49d94-eec1-48ce-8e0b-502c15abaacb", + "id": "2ef7aecc-8adb-47d2-b6ed-1ce3db08e115", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1618,7 +1618,7 @@ "description": "Use this API to implement and customize access profile functionality. \nWith this functionality in place, administrators can create access profiles and configure them for use throughout Identity Security Cloud, enabling users to get the access they need quickly and securely.\n\nAccess profiles group entitlements, which represent access rights on sources. \n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nAccess profiles are the most important units of access in Identity Security Cloud. Identity Security Cloud uses access profiles in many features, including the following:\n\n- Provisioning: When you use the Provisioning Service, lifecycle states and roles both grant access to users in the form of access profiles.\n\n- Certifications: You can approve or revoke access profiles in certification campaigns, just like entitlements. \n\n- Access Requests: You can assign access profiles to applications, and when a user requests access to the app associated with an access profile and someone approves the request, access is granted to both the application and its associated access profile.\n\n- Roles: You can group one or more access profiles into a role to quickly assign access items based on an identity's role. \n\nIn Identity Security Cloud, administrators can use the Access drop-down menu and select Access Profiles to view, configure, and delete existing access profiles, as well as create new ones. \nAdministrators can enable and disable an access profile, and they can also make the following configurations: \n\n- Manage Entitlements: Manage the profile's access by adding and removing entitlements. \n\n- Access Requests: Configure access profiles to be requestable and establish an approval process for any requests that the access profile be granted or revoked. \nDo not configure an access profile to be requestable without first establishing a secure access request approval process for the access profile.\n\n- Multiple Account Options: Define the logic Identity Security Cloud uses to provision access to an identity with multiple accounts on the source. \n\nRefer to [Managing Access Profiles](https://documentation.sailpoint.com/saas/help/access/access-profiles.html) for more information about access profiles.\n", "item": [ { - "id": "54fbeceb-bba1-4292-a581-380211d33172", + "id": "1aeffa71-fbca-4f0c-9f5e-783f6c71a25d", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -1720,7 +1720,7 @@ }, "response": [ { - "id": "bd6aedcf-4de4-4431-8587-3afa2d3dc6f0", + "id": "a2ad9799-3bda-4516-9cc7-a2e828101412", "name": "List of access profiles.", "originalRequest": { "url": { @@ -1836,7 +1836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fd4e106-e0cf-4344-b9b0-f32ed4d5bebd", + "id": "b0dbd8fb-b744-4cec-a909-4a18f275a32e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1952,7 +1952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "937e4236-f8e5-4257-a986-8deec4df0e67", + "id": "87e239e9-1e99-406f-b8e0-333c64cedf06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2068,7 +2068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f309dca5-8d2f-419c-b0ff-f2217568b6ad", + "id": "eea5442a-61de-4c58-ba10-00b0a3617797", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2184,7 +2184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30bb0d65-9fa1-4a10-82a2-eacdc22aa5ee", + "id": "af56523a-cba1-4994-b20f-18f44916a828", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2300,7 +2300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87787b6e-d5ba-462d-b991-10ec727c128b", + "id": "3b7abc2d-fa9a-4753-9ae5-1a9bcab77ea9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2422,7 +2422,7 @@ } }, { - "id": "647b295e-2aaa-4254-96b3-554e4c5066f9", + "id": "1e6db470-b0de-4094-9371-4a074cab614c", "name": "Create Access Profile", "request": { "name": "Create Access Profile", @@ -2464,7 +2464,7 @@ }, "response": [ { - "id": "15138c66-1380-44c4-8b0d-eb5f8e75ddcb", + "id": "694c152f-7b7d-4590-8166-3b1df8473cf2", "name": "Access profile created.", "originalRequest": { "url": { @@ -2520,7 +2520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "234f9afc-5a07-474c-a5ce-83bcdafe513d", + "id": "29019fc7-2dee-463d-8617-2b8400d48224", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2576,7 +2576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f54d9464-bc72-4baa-a8b7-e3f362aa1e0f", + "id": "a229a7aa-4966-416e-92cd-f3472df7ac31", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2632,7 +2632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2ce277a-9a7c-4a3c-8cea-133befe9f29c", + "id": "d5ca109c-2601-4d3d-b626-c4a13539458f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -2688,7 +2688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c03fc853-581e-40c7-81f0-bd1bef5bbece", + "id": "85479be3-ea69-481a-ab97-ccac66e88162", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -2744,7 +2744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b56df01f-91f0-43e9-a2b4-3710736bc54c", + "id": "6619e203-4071-4c3a-aba9-f0da02729fb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -2806,7 +2806,7 @@ } }, { - "id": "cd9c32c6-f7b4-4c1f-947a-2de685bfae2f", + "id": "70176e18-ed92-4319-8d1d-3ef6dad75e41", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -2847,7 +2847,7 @@ }, "response": [ { - "id": "d7d60622-ef7c-457e-b3f1-eff651ca5b1b", + "id": "0dc5ac68-1cc0-417a-9685-d27d04877cb5", "name": "An AccessProfile", "originalRequest": { "url": { @@ -2891,7 +2891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b42311a-80c6-49cc-9260-3ba5d85cf532", + "id": "f62d5d62-652f-4e61-a377-600ae7bc7150", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -2935,7 +2935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6fc3429-ba89-49c4-bb3a-ddd6c3324a08", + "id": "3bb23764-f230-426d-a8e9-baaa7a2b051b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -2979,7 +2979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dde9e97b-85ed-4734-9c5d-262328577e49", + "id": "a7490b9e-4db7-4164-96c9-205f021865ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3023,7 +3023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94580756-ca5b-4ee9-a0dc-6bcd52e23616", + "id": "373f0b0f-b5b7-4011-b265-143bda049da8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3067,7 +3067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99f0506d-9115-4d34-b029-c229233687b6", + "id": "4dff895d-f557-4e0f-bd0c-fcda1d89858f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3117,7 +3117,7 @@ } }, { - "id": "c720c284-ea13-4f73-b06e-efd635fc6996", + "id": "2c98e786-a233-480e-aa81-f895c8dc830b", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -3171,7 +3171,7 @@ }, "response": [ { - "id": "860c17ea-b5da-409c-9d6c-cd48db9bfc94", + "id": "703da61a-e04b-489e-b27d-cc0f2c1a7649", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3228,7 +3228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a1aa999-c3c1-4fc1-9e1c-a2ccf8a0017a", + "id": "a725e207-58d4-41a6-a96d-bf6dea104b21", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3285,7 +3285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b49152d1-d1cb-4cfe-a124-6284a5508188", + "id": "1b5a0383-7c47-47e0-b1b6-00fba296dfee", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3342,7 +3342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11477113-68fe-4fe7-89b6-f93f23b282e8", + "id": "27c13169-c1c4-4e49-b0d2-cc8eae3ff61b", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3399,7 +3399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3faac7f2-74ba-4b98-aec5-bbd2cac1a7f2", + "id": "7f0f977d-5ff1-423c-be34-736a3757de3b", "name": "Replace Source", "originalRequest": { "url": { @@ -3456,7 +3456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54802596-00fc-4b62-8165-6d8a7bca51cc", + "id": "f82a5901-d9c6-4f81-b2e9-b0220e0f77a8", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3513,7 +3513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41380746-6cf7-4d70-9ab7-2984fbfbb4f6", + "id": "5882c01b-7b59-4d1d-9ccd-5ed0304af22e", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3570,7 +3570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92ecff81-ce1a-4b65-911d-7d8efaf7cf09", + "id": "31a298cc-6db4-4e50-a4c6-2c9601218d05", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3627,7 +3627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85980f92-ec94-4614-91e5-90ab6ebec1c0", + "id": "4fe412ec-362c-4f3b-9c7a-fc2f1c4d92c7", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3684,7 +3684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b971c2fe-8006-4610-a37b-e5c0a752b587", + "id": "4559d0a3-02e4-4337-9793-e8fa40f11308", "name": "Replace Source", "originalRequest": { "url": { @@ -3741,7 +3741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27247498-d019-486c-b16b-c39bb1856392", + "id": "4143c043-b4e0-4391-a609-0b29e16e44a2", "name": "Add Entitlements", "originalRequest": { "url": { @@ -3798,7 +3798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e71aa764-7635-415d-a7fb-b4e47b6dcb9d", + "id": "9ec2e01c-0c6f-4b06-94e6-a4a660e8eaf7", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3855,7 +3855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "807bc6f9-c007-4eea-bf2e-b064e8237445", + "id": "5f338a93-cf46-4259-90b9-a71c182df6f7", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3912,7 +3912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d58c6768-c9a1-488f-ad84-b1acc78089fb", + "id": "229ede44-4a0a-49c6-9900-ad8063ad1ba3", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3969,7 +3969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa920e2a-7604-49a1-ab32-f8435a101484", + "id": "9ae56416-089b-48ad-9427-9721420cc7e6", "name": "Replace Source", "originalRequest": { "url": { @@ -4026,7 +4026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "832ba2b9-84fd-4690-8c9b-36356b07daf7", + "id": "e7875873-6504-4272-8810-de1cacf2dbed", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -4083,7 +4083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c3df07-f80a-4c5c-a5f3-24fdd357ee6b", + "id": "d4224852-fca0-4256-8c5b-b48e8469a3dd", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -4140,7 +4140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1afd019d-98ca-4df8-aba0-10fde271b98f", + "id": "1f65b99f-1d85-4425-96cf-c8beff83844e", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4197,7 +4197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f03dde57-70f4-4f36-8d79-b708d980c08f", + "id": "99ea6cdc-a43f-4178-b344-80aaf4fd8835", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4254,7 +4254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07e9c879-b58a-473d-90f5-6ae443e58bbf", + "id": "ec8026a0-e344-402f-86ea-d0c94c04ca0c", "name": "Replace Source", "originalRequest": { "url": { @@ -4311,7 +4311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28114ac3-2ddf-403c-8e4a-85fd7ce759e0", + "id": "42e3c022-1980-4a58-b5c3-f6a0aa6145f5", "name": "Add Entitlements", "originalRequest": { "url": { @@ -4368,7 +4368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4ef444c-66e7-4611-8000-debb80fce94c", + "id": "437b26e6-6b35-40f4-ad0e-24d7198755e7", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -4425,7 +4425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f2c3f7b-59ad-4ef1-8992-f9195b24167b", + "id": "a0ca943d-12a7-4f60-8e38-4cd0888b45f8", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4482,7 +4482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eb5d28a-67aa-4821-b297-b2db6e543244", + "id": "8a1bc60c-5abb-4ae7-9e2d-c77b3d3f659e", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4539,7 +4539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce0d5226-6bb4-4ac9-b0d2-72ebd7ebe7d2", + "id": "db545e85-6cdc-4a03-be4f-1ab1199e94a1", "name": "Replace Source", "originalRequest": { "url": { @@ -4596,7 +4596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7832238b-fabc-4011-b896-85ba5f765035", + "id": "1d0f2687-20f1-41ec-b044-f4ee8b9113f1", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -4653,7 +4653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22b8c209-c175-4a7c-abe3-c6a6f718841d", + "id": "0139225b-8016-44b3-96e5-f43f7e53f0eb", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -4710,7 +4710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2af77f29-9218-4e0c-bbc9-76478dce70c6", + "id": "5e44a902-b507-4836-949e-efb0fe260792", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -4767,7 +4767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "662685d2-fd69-4c9a-a3f1-647a61eee9fa", + "id": "fbf26394-7770-44d6-b8a8-98710abbc163", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -4824,7 +4824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b8a0de8-4d7f-42a9-a3d0-957baffca96d", + "id": "288bb7a1-079c-4478-8019-94ad15d0aa93", "name": "Replace Source", "originalRequest": { "url": { @@ -4887,7 +4887,7 @@ } }, { - "id": "d0aa4cfe-bb32-4cf2-b23d-8a8e1513a985", + "id": "1212170a-0dde-48cb-8d99-9b14da1cb068", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -4928,7 +4928,7 @@ }, "response": [ { - "id": "fa3dae65-16ae-40de-b4ae-fd02897c236b", + "id": "0243c539-14b9-491c-af2f-1599da34180b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -4962,7 +4962,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c5e0ed27-33dd-416c-92da-fa7178913493", + "id": "d0d6747a-9d88-468b-a8c2-bf1b4dd821fd", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -5006,7 +5006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "489d186b-829a-4670-9fd9-9ac4610747c5", + "id": "8e6065c8-59df-4919-ad06-e6385fe46d72", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5050,7 +5050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad3584ab-b274-4ac1-bd83-90ebd556c75c", + "id": "fc8cb705-5c24-4bc2-ae3b-9ef4cfd6a232", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5094,7 +5094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4e0260-1ee7-4f4a-b0e5-66c0f3df8f47", + "id": "d5634e1b-6b00-4fe6-9674-2a3df83c6c9c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5138,7 +5138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbac73c3-c555-4fa5-b18b-c529906a00e3", + "id": "06b627fe-cdf4-462b-b1fa-9c26bd09401e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5188,7 +5188,7 @@ } }, { - "id": "1d2abc74-d083-430e-9f83-4adfbfe6ede5", + "id": "c68e35fe-82a8-4e53-89ee-71ebe591a25d", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -5231,7 +5231,7 @@ }, "response": [ { - "id": "ad5ae000-06ef-46aa-ba6f-b8b386a429c5", + "id": "95d6ee1d-ea4a-45ec-9d9f-d7e528eacd8e", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -5288,7 +5288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1057a410-da32-4c53-8274-d6c183c9cbc4", + "id": "f8081fa9-1cb6-465c-bb93-35820e80d2ef", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -5345,7 +5345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d921eea-49c6-4353-97bc-0c105162ec00", + "id": "1bd26704-f6ba-4002-b89d-d7cb7665ef84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5402,7 +5402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f465d337-b77b-4b28-81c5-8ef48af63d51", + "id": "0afa9bdc-307b-4eb7-9dbc-cb5526dc6683", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5459,7 +5459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66e7d533-885c-418d-948a-a81d1c3ae53f", + "id": "543e50af-8053-4f23-b42a-41b385efe5bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5516,7 +5516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf07a68e-d696-4163-a8d7-91363da9244c", + "id": "0c9abd69-85b3-4190-b190-4470712da207", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5573,7 +5573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b3e6a20-cbf9-42fd-9650-3ff5a98eb9f8", + "id": "431bd54f-9f95-433d-84a2-30a23bd3946f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5636,7 +5636,7 @@ } }, { - "id": "61fd33c2-3944-4362-b955-7a18a43a5e88", + "id": "e6d48e47-c0e8-46bf-b16e-0ea7d5750bc3", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -5724,7 +5724,7 @@ }, "response": [ { - "id": "ede24a02-69b5-4de6-b359-dfc7c1661592", + "id": "8bbbfd3c-0051-4c73-acca-810c0c8fb003", "name": "List of entitlements.", "originalRequest": { "url": { @@ -5815,7 +5815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f73a7a-ecf0-423d-b671-92539e64e796", + "id": "a8c769d2-4d0d-4a54-8cc9-52dd7aa3a4b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5906,7 +5906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5622b49-c94b-4eba-b886-5af0c136f9a5", + "id": "2ab48708-2d6a-4f45-bb30-e9eb3c8b1c01", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5997,7 +5997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbf24a4d-ca4d-4260-838f-d3c7e2157504", + "id": "e779f51a-180a-440f-901f-a39c33e15981", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6088,7 +6088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab618795-089f-48db-a441-bfc37fcacc66", + "id": "7c6160f7-1dba-4c4a-935e-7eb7079846c3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6179,7 +6179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1638fa79-2c87-42c8-be12-70ceb7c88023", + "id": "b1cf096e-5e26-4152-967a-977a8c4e40b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6276,7 +6276,7 @@ } }, { - "id": "72fb6e52-9c76-44e9-baac-ff8cbceec684", + "id": "ddef69d7-c5da-450b-a672-ca805cd1c089", "name": "Update Access Profile(s) requestable field.", "request": { "name": "Update Access Profile(s) requestable field.", @@ -6328,7 +6328,7 @@ }, "response": [ { - "id": "a267d781-32d7-485d-8872-7333e019db6e", + "id": "c6ba9594-2909-4be9-b135-aabaa5841242", "name": "List of updated and not updated Access Profiles.", "originalRequest": { "url": { @@ -6394,7 +6394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "050c2a76-4f84-491f-b535-c2d21d164ec4", + "id": "a49dbfcb-9ae2-48b5-842f-f7858756bfad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6460,7 +6460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed969d6-c6c8-45fe-a140-0a1c8f817478", + "id": "ceeed204-3ea8-4dca-8846-eb28faf49de4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6526,7 +6526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58afb35f-e824-453a-9e21-a9935c78ae9b", + "id": "86857e11-c35a-4441-ac34-58729a49ec4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6592,7 +6592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fca385c-4aac-48ad-b6e3-4e392692d6d7", + "id": "675f41a2-e21c-4b87-a9ca-e588cd35806f", "name": "Precondition Failed - Returned in response if API/Feature not enabled for an organization.", "originalRequest": { "url": { @@ -6658,7 +6658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e9590f-0678-496d-b578-c3b3e36878e3", + "id": "01c8fe1e-538d-47ba-b14a-4e284fa9c01e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6724,7 +6724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a860ec-55e3-4c17-823e-06a7d07a4cdd", + "id": "36678399-e2ba-4fa6-a5f2-a3b14835efd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6802,7 +6802,7 @@ "description": "Use this API to implement and customize access request approval functionality. \nWith this functionality in place, administrators can delegate qualified users to review users' requests for access or managers' requests to revoke team members' access to applications, entitlements, or roles. \nThis enables more qualified users to review access requests and the others to spend their time on other tasks. \n\nIn Identity Security Cloud, users can request access to applications, entitlements, and roles, and managers can request that team members' access be revoked. \nFor applications and entitlements, administrators can set access profiles to require approval from the access profile owner, the application owner, the source owner, the requesting user's manager, or a governance group for access to be granted or revoked. \nFor roles, administrators can also set roles to allow access requests and require approval from the role owner, the requesting user's manager, or a governance group for access to be granted or revoked. \nIf the administrator designates a governance group as the required approver, any governance group member can approve the requests.\n \nWhen a user submits an access request, Identity Security Cloud sends the first required approver in the queue an email notification, based on the access request configuration's approval and reminder escalation configuration.\n\nIn Approvals in Identity Security Cloud, required approvers can view pending access requests under the Requested tab and approve or deny them, or the approvers can reassign the requests to different reviewers for approval. \nIf the required approver approves the request and is the only reviewer required, Identity Security Cloud grants or revokes access, based on the request. \nIf multiple reviewers are required, Identity Security Cloud sends the request to the next reviewer in the queue, based on the access request configuration's approval reminder and escalation configuration. \nThe required approver can then view any completed access requests under the Reviewed tab. \n\nRefer to [Access Requests](https://documentation.sailpoint.com/saas/help/requests/index.html) for more information about access request approvals.\n", "item": [ { - "id": "ae0f5856-29de-4e49-bd84-2bbe6940e458", + "id": "cfb8054b-09ff-43f3-8009-0dd56b2a5026", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -6887,7 +6887,7 @@ }, "response": [ { - "id": "415c9811-de85-4924-91b0-21bf86e15605", + "id": "2ae9387e-8f0c-42a1-b9a1-11e8357b02ab", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -6986,7 +6986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f7f2325-3636-4b80-bc83-ebfbec9bebe5", + "id": "687e8c90-4d53-4d40-a93b-a18607ad8e1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7085,7 +7085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f2a03d4-95b3-461e-aae8-5eb8c5a7c1c8", + "id": "dc9f5682-5d28-4470-a376-08faf5a59dff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7184,7 +7184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc5018a-b235-49ac-923b-ecfd4ec00e51", + "id": "4dee85d3-dfd2-4ba1-bef2-c87221c8aa23", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7283,7 +7283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca494c4-817d-4b57-8713-612bef7cd0d5", + "id": "d498ffad-916f-45de-8921-c545deab056a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7382,7 +7382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5839b7b9-7516-4a39-abe7-120ff9b4acb0", + "id": "deddf5b0-846b-469b-a3a1-b90e4e472ed3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7487,7 +7487,7 @@ } }, { - "id": "24fc4a92-d003-46d9-826f-5c0b393fa454", + "id": "714e7340-cdd5-4cbf-9156-55ec5e58790b", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -7572,7 +7572,7 @@ }, "response": [ { - "id": "3510ccd4-4f4b-42df-9e85-7ead0003f0a6", + "id": "28a4e358-1698-4e76-8f76-3c31ee03a014", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -7671,7 +7671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56abb55c-0f92-4454-87ba-4862c031baeb", + "id": "c41b6a89-785e-4fc8-8938-bcaf90a1b6d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7770,7 +7770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77831161-6083-4161-a9ca-cfd52f66112a", + "id": "ffe801d3-248b-4336-93d7-109590b5bf24", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7869,7 +7869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be4764fa-b77f-4117-a1d3-2165c539aab3", + "id": "99854cee-b100-4ed8-b95b-aee92336b1ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7968,7 +7968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cc92178-18c1-497e-9a57-4fa8ce7f35d9", + "id": "ec61328e-4eda-40ee-8ab9-f90c353e8164", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8067,7 +8067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41dcd01b-e258-4254-9f4b-b9a99d01c8f3", + "id": "a097be43-08d8-4117-a21f-3c38ab1e8ec5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8172,7 +8172,7 @@ } }, { - "id": "f6158f71-c799-4801-862e-ab6b4c94ac70", + "id": "2f42116d-c13a-46ca-9615-dd5f4135f8c4", "name": "Approve Access Request Approval", "request": { "name": "Approve Access Request Approval", @@ -8227,7 +8227,7 @@ }, "response": [ { - "id": "d7902c3d-d8dc-4c99-a0db-4c18a63a917a", + "id": "089bf557-be87-4496-b6c9-86ebb9cf65dc", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -8285,7 +8285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17b39045-9e53-4fb6-9215-5fa1ee7149e6", + "id": "4509b966-031e-476f-ae91-a3f38d980dc6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8343,7 +8343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c72f6c3-4a67-4332-a96e-612994a9ebd2", + "id": "89545063-fe0a-48cd-bacd-c67f559ae87f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8401,7 +8401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eeb3fec-d5ed-4da0-8f92-def750220c4e", + "id": "1fcb8a4d-05bd-4b34-b130-3bc7ab779658", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8459,7 +8459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da5e2e0d-561b-4ef0-88a4-0f07624a8066", + "id": "d5ce9b27-bdfc-49ac-ae4a-05bc553e7490", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -8517,7 +8517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6657fbcb-ece6-4ea9-b73c-5c32f0120b17", + "id": "49dc73dd-5f40-46ff-8661-f3fd5d90e696", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8575,7 +8575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20d2d23d-38d3-4a19-89c9-9b21ca9a585e", + "id": "b243ab25-2fce-4392-8313-b018ff2ec133", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8639,7 +8639,7 @@ } }, { - "id": "a820926c-5218-49de-8e3c-e2b156848989", + "id": "21b02aa5-d87e-47bb-a4be-0dc09cb3bfef", "name": "Reject Access Request Approval", "request": { "name": "Reject Access Request Approval", @@ -8694,7 +8694,7 @@ }, "response": [ { - "id": "9ba46ecd-04af-4a69-8c13-b9f7a1a0d292", + "id": "4580ae77-3d0f-45ee-a1de-fb7422419d7b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -8752,7 +8752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a093d458-73c1-4fca-ac62-cdd2ba10c045", + "id": "06056e4c-1799-4e3a-a2f5-b6e174d79c1f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8810,7 +8810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b2ff66f-3c3f-442f-917e-d894b0052e24", + "id": "3698f161-e150-4eb8-9949-33a5e948c771", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8868,7 +8868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "614269a5-c32b-40b9-9cf3-cfd187a8d2aa", + "id": "2b8a60be-4fb1-46f7-9963-f543540b38f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8926,7 +8926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2abda905-c9ff-461f-82a1-c96a82ab1cad", + "id": "ec7476bd-8aea-41c4-92ab-e9fe2a63fdab", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -8984,7 +8984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65dac203-92af-400f-93ab-01663aeac401", + "id": "d1ef5092-f893-442a-b640-19fe179a37b6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9042,7 +9042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18a7ec6b-09bc-4614-8afb-8489bc486920", + "id": "afaeb5e0-23b6-4e70-9690-afe620e864fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9106,7 +9106,7 @@ } }, { - "id": "d3c4b621-8caf-46ca-99fb-fe8e897a74b6", + "id": "38eb2378-8737-4b52-a695-48b1deb2039a", "name": "Forward Access Request Approval", "request": { "name": "Forward Access Request Approval", @@ -9161,7 +9161,7 @@ }, "response": [ { - "id": "49028691-6ddd-4ebe-9962-ef4dc1f12e0d", + "id": "023b2aa8-a4e4-42cb-b510-2cc1ce190d0f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -9219,7 +9219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d14fb29-93c4-4c14-af60-8a149926b331", + "id": "b4acddd7-2bc4-499c-85a7-4037ad6976da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9277,7 +9277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70d4ee96-6896-4bb0-895b-9eaebee17e6d", + "id": "73a30ce6-20b6-4182-9b69-794422a4f565", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9335,7 +9335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c817136-9cfe-49a4-859c-564a8fd15b1e", + "id": "dbbf66a9-8303-41da-b1ed-e159078337b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9393,7 +9393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "247b1904-2479-446c-80b5-3d817a25020c", + "id": "12657545-9322-4b87-8245-5f24032f3950", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -9451,7 +9451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29b051f2-1b06-4294-82dc-1e48e0d66d8a", + "id": "7a2aafe5-afce-47d4-a407-65e8cc06252f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9509,7 +9509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce117b2-e2f2-42bc-9ae2-f7d11dd188eb", + "id": "2960a6d5-a960-4ff7-9c59-683f1926bc24", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9573,7 +9573,7 @@ } }, { - "id": "98034c91-3061-4ec2-a3fc-762243b8dff5", + "id": "b72c4351-f3e7-43fb-bbd6-93a9cc654094", "name": "Get Access Requests Approvals Number", "request": { "name": "Get Access Requests Approvals Number", @@ -9622,7 +9622,7 @@ }, "response": [ { - "id": "c85c0449-2456-4b32-ba19-9ddd27a96271", + "id": "32be2208-e63e-46f8-999d-8136009fdcdc", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -9685,7 +9685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3426a417-058f-4040-af10-909ec4dae0fb", + "id": "35a9fcdb-f67d-440c-93a5-aacf7a43be92", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -9748,7 +9748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bad8f968-8f4c-47ba-b047-7da665950841", + "id": "98aab0b4-9cf5-4676-8a91-cefff0054a0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9811,7 +9811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a93302aa-afb5-4743-b9ca-6ec878754bde", + "id": "3bcff896-ab44-4f75-84e6-f4227e374941", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9874,7 +9874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08ad748b-192c-48d1-a536-bbe1b6e80502", + "id": "e226c40f-865a-45f0-9ac3-0b30be917c13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9937,7 +9937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c05ee9d7-346e-46f0-8bee-832f64fa999c", + "id": "9b3b3681-eb5c-4c8e-be3a-2007291c2002", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10012,7 +10012,7 @@ "description": "Use this API to implement access request identity metrics functionality.\nWith this functionality in place, access request reviewers can see relevant details about the requested access item and associated source activity. \nThis allows reviewers to see how many of the identities who share a manager with the access requester have this same type of access and how many of them have had activity in the related source. \nThis additional context about whether the access has been granted before and how often it has been used can help those approving access requests make more informed decisions.\n", "item": [ { - "id": "b05af801-ade4-45a5-9363-1fc8cf9927dd", + "id": "1d7df923-b465-4b66-a90b-c118bf86bd19", "name": "Return access request identity metrics", "request": { "name": "Return access request identity metrics", @@ -10086,7 +10086,7 @@ }, "response": [ { - "id": "65d4756d-f682-4b01-b617-1940eacafb19", + "id": "8350ef62-5d22-4ea6-8d13-8ef9420d8104", "name": "Summary of the resource access and source activity for the direct reports of the provided manager.", "originalRequest": { "url": { @@ -10143,7 +10143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0fef333-1812-494d-893e-6ef1b8b1d469", + "id": "f418842b-e5fd-4f85-aec0-ea41d0f9814a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10200,7 +10200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05a77ed6-e229-418c-8b55-eb37108d2bba", + "id": "e39fa7a2-bd34-4b8b-a543-60606b35f3eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10257,7 +10257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9736a28-3aad-4d39-a38f-8d4358d6586d", + "id": "27214f54-6196-490e-b11a-577fa695fa91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10314,7 +10314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "489849bd-d788-42b9-8a35-8b6c3eed5b84", + "id": "63f2ccbe-cfac-4151-9197-82e4c26f20df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10371,7 +10371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd7401fe-a939-467c-b98c-11356bc7b2e0", + "id": "d36d4a03-d122-4996-9cfc-04de5eaf7fab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10440,7 +10440,7 @@ "description": "Use this API to implement and customize access request functionality. \nWith this functionality in place, users can request access to applications, entitlements, or roles, and managers can request that team members' access be revoked.\nThis allows users to get access to the tools they need quickly and securely, and it allows managers to take away access to those tools. \n\nIdentity Security Cloud's Access Request service allows end users to request access that requires approval before it can be granted to users and enables qualified users to review those requests and approve or deny them.\n\nIn the Request Center in Identity Security Cloud, users can view available applications, roles, and entitlements and request access to them. \nIf the requested tools requires approval, the requests appear as 'Pending' under the My Requests tab until the required approver approves, rejects, or cancels them. \n\nUsers can use My Requests to track and/or cancel the requests.\n\nIn My Team on the Identity Security Cloud Home, managers can submit requests to revoke their team members' access. \nThey can use the My Requests tab under Request Center to track and/or cancel the requests.\n\nRefer to [Requesting Access](https://documentation.sailpoint.com/saas/user-help/requests/requesting_access.html) for more information about access requests.\n", "item": [ { - "id": "b0cae09b-0079-46dc-b797-cd1748c6a8bd", + "id": "d5cf171a-c76f-4fc5-bc56-eeb31d6c8cd7", "name": "Submit Access Request", "request": { "name": "Submit Access Request", @@ -10482,7 +10482,7 @@ }, "response": [ { - "id": "e17f6d03-2635-4a7f-91cd-ae36276398cd", + "id": "671f0748-4e7b-4136-9fd7-5d7af6bedf09", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -10538,7 +10538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90d8bb8c-dbd7-46af-8a07-47642625e1fa", + "id": "b128a4a5-79f1-4bb4-ad28-81555a700993", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10594,7 +10594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "027922e4-5e08-4844-a6fc-24e424b1666e", + "id": "37aa53c1-61da-4eb0-a999-69b9131da841", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10650,7 +10650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45224773-18ce-421a-a39e-afbeb66f07e0", + "id": "48ba5205-3764-4bbc-964f-96f78c210dbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10706,7 +10706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6be41d4-6846-42aa-ae5f-0640d6e49088", + "id": "ec40e391-dea3-42d8-862e-53ab6657d7dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10762,7 +10762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7659ca90-f972-4ddf-9313-ea019261625b", + "id": "0f230c5d-118b-45eb-9418-42a4fc970874", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10824,7 +10824,7 @@ } }, { - "id": "f53e225a-b0bc-426b-be81-ad695d3b960f", + "id": "6b77002d-7788-4074-84de-d2ff36489a53", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -10867,7 +10867,7 @@ }, "response": [ { - "id": "a32e2db2-08d9-4a50-bfcf-5d3862d48025", + "id": "f55e0301-1678-4e08-bcf3-ef1cc4b52bbb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -10924,7 +10924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33315c42-339c-4f27-ae00-206caa170dd9", + "id": "0b81c556-5060-4518-9cd4-89e37b5f3192", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10981,7 +10981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ccc9166-cc06-41b4-8155-532a2252dd63", + "id": "75994998-021f-4831-80dd-b56366826cf0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11038,7 +11038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "139471ed-bec0-4fee-9872-ca241c2705d4", + "id": "82b9c341-f3b6-4d91-9ffd-578e2ad324ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11095,7 +11095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ee009da-2d0a-4a92-9234-2642434fe5c1", + "id": "747613e9-4948-4332-a50c-05131dd7da85", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11152,7 +11152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92c625b6-cc60-48cd-ac94-5d4d965ee175", + "id": "f70aaf47-6d5f-4897-8661-63a64f146e39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11209,7 +11209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47dca20d-9573-4fb9-b5ed-feb48a272f69", + "id": "745b6ea8-0fc3-430d-839f-f165e41b07f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11272,7 +11272,7 @@ } }, { - "id": "d8ef6626-d833-4f73-91b1-b850782d6ab6", + "id": "55074419-088a-4cce-be32-61596620d44d", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -11301,7 +11301,7 @@ }, "response": [ { - "id": "ff6b25e0-7a94-4fec-a2c8-80245a73ae86", + "id": "fbc4baca-7d61-4c01-b80b-adb10db2cff5", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -11344,7 +11344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "263ce7c6-362f-421d-963e-b4deb325957a", + "id": "a75cbb64-db02-48c0-adce-ac25bed7052d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11387,7 +11387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2d8b0ab-614f-4e48-8e8f-c7db49006e0b", + "id": "e3d13bc6-4cab-4051-b7d6-57bfcc2600cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11430,7 +11430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5203ab96-cfe9-4103-87b2-e8381ba8acff", + "id": "311d147d-6eca-458f-bf00-a435ec161cb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11473,7 +11473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d81382c-c18e-4113-a79f-be2f55aa23c3", + "id": "a25ac402-4849-4d0b-b9fb-3733e46ce91d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11516,7 +11516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33b9a586-a2d4-4ce1-965d-13e3b383f225", + "id": "1eef3928-f6ce-4797-8c57-ef916dbf4e3c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11565,7 +11565,7 @@ } }, { - "id": "3815baa8-7c6e-4b56-ac5b-f378b514e475", + "id": "697902ba-ff51-4dc1-8af7-d4055d65ea39", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -11607,7 +11607,7 @@ }, "response": [ { - "id": "ecb5bfb9-9c03-4fa0-8f62-5408a73ad4e6", + "id": "7dd38ff0-345b-421b-92de-5fc7a07fb03e", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -11663,7 +11663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c153476-eb64-41d6-b119-e7f1dec36df5", + "id": "ae33c146-dbd4-4b9c-8749-0e0f22dcadcd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11719,7 +11719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7860bce8-111d-4696-ada8-9ce93572053f", + "id": "07d38255-5dbb-47f4-80e3-0c6a7135448e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11775,7 +11775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa98d79c-3cc8-430a-985e-e5d9a53f0a42", + "id": "e5b055d5-2b6a-45be-907d-7f2d25fe3a1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11831,7 +11831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57ffb61a-e780-4b35-8d2d-905d0c241336", + "id": "6629a9e0-3b1b-4dc7-abb5-466777c1a148", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11887,7 +11887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8688a93-31cc-433c-8a4a-dafedc10dad6", + "id": "a8f14af3-d32e-4dc5-a1e8-20e903f8e674", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11949,7 +11949,7 @@ } }, { - "id": "cba87aaa-eb29-4dda-bf1a-79464b63c1d4", + "id": "0ca527a3-43dc-473f-9eb8-c713d0e43d1f", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -12069,7 +12069,7 @@ }, "response": [ { - "id": "4dba9641-64ff-4e1e-bc3a-3c8b46cb0948", + "id": "06eb9a68-46b0-4f33-8823-ebebc0c12734", "name": "List of requested item statuses.", "originalRequest": { "url": { @@ -12203,7 +12203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f8ce201-544d-44bf-b9f5-9b99cd708228", + "id": "a1f3daff-5e21-43d2-a1cd-1df61ebf9de5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12337,7 +12337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e558e905-cc40-4f85-b518-e8e5829ae94e", + "id": "bff5a330-24b2-465e-b396-6ae21515f401", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12471,7 +12471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01c4f5f3-7201-4434-8604-deb5b7402a22", + "id": "37ff7836-37ae-4b8d-99b3-ea183fa9a619", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12605,7 +12605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cf089de-e4ed-475b-a13c-545e96095ab7", + "id": "f1822fc6-33fb-4160-9c97-5b135d551689", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12739,7 +12739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8727c5fa-9b6b-41ec-8313-768f5e4532e5", + "id": "720327c1-d6c4-43d7-bc97-82732c8e8f5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12879,7 +12879,7 @@ } }, { - "id": "3b3c49ea-860d-4007-9316-0298629faa37", + "id": "95170a80-af35-41e4-a04c-d57016c6613a", "name": "Close Access Request", "request": { "name": "Close Access Request", @@ -12931,7 +12931,7 @@ }, "response": [ { - "id": "4b75a1c9-80f1-49ec-a357-16f289d8e0a6", + "id": "f8280609-72fe-4abc-b510-f09ce8d0db9b", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -12997,7 +12997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65f461f7-80c9-4a1d-bd81-ddeaad783ba7", + "id": "e158826a-fcbb-4d25-87bb-5b9febb437e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13063,7 +13063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f202dce4-4ae3-46fe-af29-689c2d428a51", + "id": "96c66b69-d595-4f51-8d4a-0fc2fb954334", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13129,7 +13129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb770a6-fcda-49b7-9837-537783cd9e2d", + "id": "4a09f2d9-eb3f-4460-a50c-c1813b627ab0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13195,7 +13195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f829eb2-dccc-4837-ab8a-d783ee99145f", + "id": "30af1ffa-6728-42a0-886e-ed0e8b58e8fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13261,7 +13261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "857e1cee-e0a1-458c-ad6d-13e1b67f5863", + "id": "39733407-f197-488c-962f-c673d255ad05", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13339,7 +13339,7 @@ "description": "Use this API to implement account activity tracking functionality.\nWith this functionality in place, users can track source account activity in Identity Security Cloud, which greatly improves traceability in the system. \n\nAn account activity refers to a log of each action performed on a source account. This is useful for auditing the changes performed on an account throughout its life. \nIn Identity Security Cloud's Search, users can search for account activities and select the activity's row to get an overview of the activity's account action and view its progress, its involved sources, and its most basic metadata, such as the identity requesting the option and the recipient. \n\nAccount activity includes most actions Identity Security Cloud completes on source accounts. Users can search in Identity Security Cloud for the following account action types: \n\n- Access Request: These include any access requests the source account is involved in. \n\n- Account Attribute Updates: These include updates to a single attribute on an account on a source. \n\n- Account State Update: These include locking or unlocking actions on an account on a source. \n\n- Certification: These include actions removing an entitlement from an account on a source as a result of the entitlement's revocation during a certification.\n\n- Cloud Automated `Lifecyclestate`: These include automated lifecycle state changes that result in a source account's correlated identity being assigned to a different lifecycle state. \nIdentity Security Cloud replaces the `Lifecyclestate` variable with the name of the lifecycle state it has moved the account's identity to. \n\n- Identity Attribute Update: These include updates to a source account's correlated identity attributes as the result of a provisioning action. \nWhen you update an identity attribute that also updates an identity's lifecycle state, the cloud automated `Lifecyclestate` event also displays.\nAccount Activity does not include attribute updates that occur as a result of aggregation.\n\n- Identity Refresh: These include correlated identity refreshes that occur for an account on a source whenever the account's correlated identity profile gets a new role or updates. \nThese also include refreshes that occur whenever Identity Security Cloud assigns an application to the account's correlated identity based on the application's being assigned to All Users From Source or Specific Users From Source. \n\n- Lifecycle State Refresh: These include the actions that took place when a lifecycle state changed. This event only occurs after a cloud automated `Lifecyclestate` change or a lifecycle state change. \n\n- Lifecycle State Change: These include the account activities that result from an identity's manual assignment to a null lifecycle state.\n\n- Password Change: These include password changes on sources.\n\nRefer to [Account Activity](https://documentation.sailpoint.com/saas/help/search/index.html#account-activity) for more information about account activities.\n", "item": [ { - "id": "39549c00-3177-459c-88d8-240524e5acf4", + "id": "eadd5145-1a3f-4473-8e23-2278a66da051", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -13441,7 +13441,7 @@ }, "response": [ { - "id": "06a6fbc8-9ff2-4345-8a48-7ff121d42b1b", + "id": "bedf5146-999a-444a-883b-15ef56bd5b6d", "name": "List of account activities", "originalRequest": { "url": { @@ -13557,7 +13557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c4238f0-91a7-43b9-b6f8-a3fce4fd4d56", + "id": "8b2e2bf8-674a-47cc-82f8-8950eeb597e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13673,7 +13673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e7158f8-90fd-431a-b3ed-9d343a568a40", + "id": "32a54e33-9d00-4e35-9c9a-1d2d3c8810b9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13789,7 +13789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b33966d9-f0b5-47a1-a659-703f03245df1", + "id": "bac3a593-d41d-4ddc-9d4f-cd8e51ec5634", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13905,7 +13905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bda4ece-faa9-4458-a2cf-972fd003d1a5", + "id": "56ded463-8764-477a-bbf0-4361ba951874", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14021,7 +14021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b65edb6e-40e0-47f7-b9b6-de4d400d0691", + "id": "776346b0-c6af-40d7-99c9-173f91c33d57", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14143,7 +14143,7 @@ } }, { - "id": "d5648e23-a86f-44b3-9ecb-44500930010d", + "id": "0aee99b4-cc61-4b04-9130-cb2dc6f2e24e", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -14184,7 +14184,7 @@ }, "response": [ { - "id": "01255d4f-a7f9-49ce-a9fb-0ace7a3a1112", + "id": "36211d3e-e365-43a1-8494-77fa06d88f3f", "name": "An account activity object", "originalRequest": { "url": { @@ -14228,7 +14228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8876676-39c2-4ceb-8b30-abd394e53c14", + "id": "c07caa5d-e778-46c6-ba09-15ba86b33e76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -14272,7 +14272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1531b15-42f4-4176-926a-0f136664ca15", + "id": "88286da2-7438-42cc-863e-a520f2da8bf5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14316,7 +14316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8079e5b5-05b0-4ea8-bed8-1ac64b51ab3f", + "id": "15490e9e-3919-4d89-9960-5e2150f046a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14360,7 +14360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d2edb6f-78e1-472e-b7b8-1ced3ad7b336", + "id": "d542de86-9f44-4885-a3c4-626b808fc807", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14404,7 +14404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2db04752-5e65-4683-8168-bb05c7052cdb", + "id": "e8767137-d1d1-403d-a89d-07cf5d0422ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14448,7 +14448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc119997-4be6-49d2-a633-d2825e571f92", + "id": "a6120ae6-83ee-4d0a-a9b5-8133604828ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14504,7 +14504,7 @@ "description": "Use this API to implement account aggregation progress tracking functionality.\nWith this functionality in place, administrators can view in-progress account aggregations, their statuses, and their relevant details.\n\nAn account aggregation refers to the process Identity Security Cloud uses to gather and load account data from a source into Identity Security Cloud.\n\nWhenever Identity Security Cloud is in the process of aggregating a source, it adds an entry to the Aggregation Activity Log, along with its relevant details.\nTo view aggregation activity, administrators can select the Connections drop-down menu, select Sources, and select the relevant source, select its Import Data tab, and select Account Aggregation.\nIn Account Aggregation, administrators can view the account aggregations' statuses and details in the Account Activity Log.\n\nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about account aggregations.\n", "item": [ { - "id": "21493a31-e7eb-4fdc-be35-556e0838b819", + "id": "1a13f43f-1ca0-4ace-9aef-e8b6b0930865", "name": "In-progress Account Aggregation status", "request": { "name": "In-progress Account Aggregation status", @@ -14555,7 +14555,7 @@ }, "response": [ { - "id": "8c17a876-ee82-44b9-8bbc-080e1e96b957", + "id": "47785e54-02d4-46ba-a896-6870e40fc828", "name": "An account aggregation status object", "originalRequest": { "url": { @@ -14609,7 +14609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a16f3e1-a49d-4239-b55f-19f7b97a1504", + "id": "17f411cb-d12f-4d4f-ac9b-9a2ccf7c4c8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -14663,7 +14663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a4cf3f3-3e19-4bee-8577-1939db546b8c", + "id": "f75e2635-901d-419c-b047-89c4e6295eed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -14717,7 +14717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990e0714-6c90-47be-8b8e-850fc1734a8c", + "id": "826c5351-8846-4c3d-9f8c-8f5128c023e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -14771,7 +14771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7713e065-d9ac-4854-a662-12893351a527", + "id": "f2987b35-7c9b-482c-bec3-1b6649ed81ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -14825,7 +14825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb6b5d9-17ce-46a0-9360-3bff99a19977", + "id": "8feab305-7c9f-4ef0-82e2-d489bf31d645", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -14891,7 +14891,7 @@ "description": "Use this API to implement account usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.\nThis allows organizations to get the information they need to start optimizing and securing source account usage.\n", "item": [ { - "id": "b1ce5183-103e-4af4-a568-77cd02a515ea", + "id": "acd45e5c-abca-472c-9921-b3ef49d39bde", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -14970,7 +14970,7 @@ }, "response": [ { - "id": "8dc088a6-c7f6-4dd2-8b07-20de57c93458", + "id": "17e1c1b0-f10f-4089-a298-17ab858206ff", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -15052,7 +15052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3fe0303-0759-466c-bf04-3770e8de3968", + "id": "b3feb0b1-44d1-4982-a23b-60717b292fbf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15134,7 +15134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79bdc48e-33c6-4456-bc7d-36c37d4a37b4", + "id": "30d9f22d-8eb4-451a-8ff7-a099ebfbfc9a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15216,7 +15216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523dd352-f8da-4107-99e1-3d188b57e352", + "id": "28db0e3e-4dda-44db-8b16-1857d2cee157", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15298,7 +15298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "774cbf9a-0f4f-47ea-9a5e-75048544a57f", + "id": "a85481ba-bf81-47fd-bd36-18bf886690a3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15380,7 +15380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c4701e4-f7e1-453d-8036-5ddc06c0798b", + "id": "491740da-f329-4d92-8c0c-b90b028f03b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15474,7 +15474,7 @@ "description": "Use this API to implement and customize account functionality.\nWith this functionality in place, administrators can manage users' access across sources in Identity Security Cloud. \n\nIn Identity Security Cloud, an account refers to a user's account on a supported source.\nThis typically includes a unique identifier for the user, a unique password, a set of permissions associated with the source and a set of attributes. Identity Security Cloud loads accounts through the creation of sources in Identity Security Cloud.\n\nAdministrators can correlate users' identities with the users' accounts on the different sources they use. \nThis allows Identity Security Cloud to govern the access of identities and all their correlated accounts securely and cohesively. \n\nTo view the accounts on a source and their correlated identities, administrators can use the Connections drop-down menu, select Sources, select the relevant source, and select its Account tab. \n\nTo view and edit source account statuses for an identity in Identity Security Cloud, administrators can use the Identities drop-down menu, select Identity List, select the relevant identity, and select its Accounts tab. \nAdministrators can toggle an account's Actions to aggregate the account, enable/disable it, unlock it, or remove it from the identity. \n\nAccounts can have the following statuses: \n\n- Enabled: The account is enabled. The user can access it.\n\n- Disabled: The account is disabled, and the user cannot access it, but the identity is not disabled in Identity Security Cloud. This can occur when an administrator disables the account or when the user's lifecycle state changes. \n\n- Locked: The account is locked. This may occur when someone has entered an incorrect password for the account too many times.\n\n- Pending: The account is currently updating. This status typically lasts seconds. \n\nAdministrators can select the source account to view its attributes, entitlements, and the last time the account's password was changed.\n\nRefer to [Managing User Accounts](https://documentation.sailpoint.com/saas/help/common/users/user_access.html#managing-user-accounts) for more information about accounts.\n", "item": [ { - "id": "1e7de469-542f-4839-88df-120ced33de28", + "id": "2a4fb2ff-4414-4ef8-8782-d66352f4c5b2", "name": "Accounts List", "request": { "name": "Accounts List", @@ -15549,7 +15549,7 @@ }, "response": [ { - "id": "42984fcd-140b-4e1a-aef4-25e72bbb8820", + "id": "a3187a40-1733-486a-ac84-9c78fddd0798", "name": "List of account objects", "originalRequest": { "url": { @@ -15638,7 +15638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "255b8096-ae6c-4e32-bc07-71996a8115da", + "id": "823d6f36-ffcd-4289-bab9-0b4cb0baaeb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15727,7 +15727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4fd3e16-1029-43c0-8eae-64d7c3c2c3fa", + "id": "1790660a-ee9a-457f-aed2-85bfdac7a821", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15816,7 +15816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e2e28c-0e04-4eb6-8450-151d93cd79ed", + "id": "fe4f2c8a-71e3-4fa2-b7bc-18317453ed6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15905,7 +15905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2526ef10-2022-4cfc-9c18-aa5e272d591e", + "id": "d15c31e4-b466-484e-b32f-48ef6c6f443f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15994,7 +15994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f774caa-0e1f-4572-b285-8f11de9a1bb2", + "id": "c668c73e-967e-4961-9447-a417a070643d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16089,7 +16089,7 @@ } }, { - "id": "4759bcfc-a951-4ee0-a1dd-2302b86e72fe", + "id": "4d607f8f-aea0-42ff-a228-cc5eb4633ce9", "name": "Create Account", "request": { "name": "Create Account", @@ -16131,7 +16131,7 @@ }, "response": [ { - "id": "40e18d44-8234-45c6-84a2-6d74d654f361", + "id": "a71f20c2-2641-43cf-b887-8f92e6170f39", "name": "Async task details", "originalRequest": { "url": { @@ -16187,7 +16187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "191837ba-e906-4c07-9e1e-25e7ef607326", + "id": "33424349-b620-4532-b044-395a3ea7c6c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16243,7 +16243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bff12924-d5cb-4c39-937c-32c7dad7b7e6", + "id": "90627600-1cb1-4041-be00-fe8182c07446", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16299,7 +16299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8dd5f4-4f40-4681-b79c-46f164189dc4", + "id": "b75b6f22-31e9-4232-bf23-43028ed18372", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16355,7 +16355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0304905-b377-44f3-93df-bfb077d4ea58", + "id": "78652fed-8a4d-4ef3-a33a-032134235202", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16411,7 +16411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5e5546c-b975-493b-84bd-e034e6b58477", + "id": "349863b8-cd90-420e-b813-9faf180ac640", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16473,7 +16473,7 @@ } }, { - "id": "e50d9296-38a4-4d33-87ec-1dd561233379", + "id": "8db74a55-ea72-4545-b704-c32736168d05", "name": "Account Details", "request": { "name": "Account Details", @@ -16514,7 +16514,7 @@ }, "response": [ { - "id": "0c6df633-cc79-42c2-be12-ee2bbd2fbc17", + "id": "8133b70a-9238-4e2d-8cee-9b6ea5c7b396", "name": "Account object.", "originalRequest": { "url": { @@ -16558,7 +16558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b070aa1d-ad43-4df5-aa9d-9df34fb0b79c", + "id": "5f720c33-effa-45c5-a21b-fef3b995adde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16602,7 +16602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b0aad61-02e8-44f8-9061-fff741eefbc6", + "id": "c52c95a8-d05c-4499-90b3-06492b04c2e7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16646,7 +16646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41e7fd9c-d74f-47b3-9d6e-7bd498f4b979", + "id": "c2322b37-d45e-4289-bff1-4b8138bf2d7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16690,7 +16690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f210052-8f73-451b-926d-129ded9f26e4", + "id": "67735156-4185-4c77-b3af-2c7caf4a05a5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16734,7 +16734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c7d58ce-3689-464b-97c5-19bc2ece80e8", + "id": "7db88fce-c3a1-4d6a-9a9a-e065eae6d8fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16778,7 +16778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22cc81dd-6297-4d0f-857a-684e86aa038b", + "id": "e8e72d79-dab9-41c3-a62c-2332f42b325e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16828,7 +16828,7 @@ } }, { - "id": "c115db18-6cf4-4400-bb44-1bbc503fd8d7", + "id": "9de159e0-2d6e-4ea6-abf3-a4c1fe42670f", "name": "Update Account", "request": { "name": "Update Account", @@ -16882,7 +16882,7 @@ }, "response": [ { - "id": "f04a7b9c-316c-498f-ac49-ad54ed96d20f", + "id": "c00edc85-2d58-4d7e-8fd2-e1c3c646af0e", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -16939,7 +16939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13196a04-0785-4739-b8b9-bfb16fe1561f", + "id": "8766cbfb-829c-4acf-bc67-2a0c820df48b", "name": "Reassign account", "originalRequest": { "url": { @@ -16996,7 +16996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31b2b137-8e95-49ad-a3a2-1a0a927433f6", + "id": "7e10520b-09b1-4dbb-bec5-48cc6cb6c5fe", "name": "Add account attribute", "originalRequest": { "url": { @@ -17053,7 +17053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20bf8c80-85d1-4a3f-8b1a-01282da1ea66", + "id": "5abe318f-b63e-4389-ab20-19bfb885306d", "name": "Replace account attribute", "originalRequest": { "url": { @@ -17110,7 +17110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3b5c92e-71d4-4c5a-9d11-87042fca68d1", + "id": "029fb544-acf5-483c-bbb2-0651f7347f3c", "name": "Remove account attribute", "originalRequest": { "url": { @@ -17167,7 +17167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d750f4c-2d47-4f24-b696-cc70286fe3d6", + "id": "267b695a-d5ce-42ae-ba4e-4190a699fe5f", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -17224,7 +17224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da46d592-650e-46ef-b829-cd146825c0ca", + "id": "7c60c6f8-2d67-4693-b3fb-43aa8f692a86", "name": "Reassign account", "originalRequest": { "url": { @@ -17281,7 +17281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dea6f9ca-0309-47e9-9833-787f07180843", + "id": "51421cd1-82ef-4ed4-902d-7be6c81770b0", "name": "Add account attribute", "originalRequest": { "url": { @@ -17338,7 +17338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "531dd547-e944-4518-9903-bf3fbb574d46", + "id": "8b2c63dc-2802-44d9-b797-7326646149cc", "name": "Replace account attribute", "originalRequest": { "url": { @@ -17395,7 +17395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e95f7ba-f80f-42ea-8b23-4348cffd5fdd", + "id": "5d1f5c40-1049-4b0f-91e7-152e588cd7d4", "name": "Remove account attribute", "originalRequest": { "url": { @@ -17452,7 +17452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81fff52e-443e-4eba-9ecc-e47bdb92f1ab", + "id": "39a83e40-5b2e-4bfe-8707-a65630ffe294", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -17509,7 +17509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfc4392a-cc07-4885-b813-70868e488870", + "id": "5de3f44d-89ab-4215-9cae-15d90328160f", "name": "Reassign account", "originalRequest": { "url": { @@ -17566,7 +17566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b463f7a7-1857-4762-8d21-a059485ed160", + "id": "4930fe57-0345-447f-a92b-ddbcfa78e6ed", "name": "Add account attribute", "originalRequest": { "url": { @@ -17623,7 +17623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309ba65f-0da5-4884-9ef7-1d41fd70322c", + "id": "8919687e-b6eb-43ce-8f8f-09f93ffc7d39", "name": "Replace account attribute", "originalRequest": { "url": { @@ -17680,7 +17680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4e82d46-27e6-4281-9544-8c28e28e7aba", + "id": "00cf1a79-99c4-4f64-9192-ab6b88a20a9c", "name": "Remove account attribute", "originalRequest": { "url": { @@ -17737,7 +17737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e663b635-3121-461a-a21b-40d2dfb8e2fa", + "id": "49aba2e3-819e-4fe6-8de5-11eb906da8ba", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -17794,7 +17794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab028301-ceaa-438f-a2aa-230c9dd4f311", + "id": "6c56e981-ca68-4676-a424-84d4f1a3abb8", "name": "Reassign account", "originalRequest": { "url": { @@ -17851,7 +17851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6b0af1-cdd5-4633-a9a7-f7b00bb53c62", + "id": "95b1255b-93ef-4ef9-a5e1-e74f2e19b868", "name": "Add account attribute", "originalRequest": { "url": { @@ -17908,7 +17908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3b302d0-ac67-4479-ad5e-d5286df7188c", + "id": "280d93fb-e24a-402b-90e7-c6fe8378f4b9", "name": "Replace account attribute", "originalRequest": { "url": { @@ -17965,7 +17965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db5b370e-a3ec-4c97-9974-9776be8f6a82", + "id": "6f1ad113-834f-400a-8338-3fed48f37365", "name": "Remove account attribute", "originalRequest": { "url": { @@ -18022,7 +18022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "729f208e-519f-45f2-bda6-7fbdce321a0c", + "id": "36128bee-9393-4fa0-aada-1eb8248231b0", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -18079,7 +18079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d1c8f45-f002-4f9a-87f4-bee865fd12cf", + "id": "c2712801-6bdf-4689-9d5e-e7817742a0e5", "name": "Reassign account", "originalRequest": { "url": { @@ -18136,7 +18136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183edae8-7267-4500-ba11-aa98356ad3b4", + "id": "c123f853-0927-438f-9fdc-125cd04d5132", "name": "Add account attribute", "originalRequest": { "url": { @@ -18193,7 +18193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06c6c23f-9ee6-45eb-bad8-251621ddae90", + "id": "4cc40d5d-c629-40f7-be14-9c9c71708dff", "name": "Replace account attribute", "originalRequest": { "url": { @@ -18250,7 +18250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fedfa09b-54f4-4dd0-8d71-a09c09cea05b", + "id": "79ce987c-6890-42c9-b8b0-67bd8beda1e1", "name": "Remove account attribute", "originalRequest": { "url": { @@ -18307,7 +18307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6218caf-8baf-49fe-bb86-5d87a0d3b49e", + "id": "ae0cfea3-f762-43f7-b417-137464fc98ae", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -18364,7 +18364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2feacc30-3729-4b3f-8169-dcc50fd405c9", + "id": "18c0cbfc-e61c-4433-a8ed-67ae7d4ae845", "name": "Reassign account", "originalRequest": { "url": { @@ -18421,7 +18421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c82efa-1707-4aae-8ed1-57fd575e79dc", + "id": "19c0125f-260c-4660-8493-6b78de97bc67", "name": "Add account attribute", "originalRequest": { "url": { @@ -18478,7 +18478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb68a831-162c-43a3-a1c7-b2989b3fb33b", + "id": "fd9b3be7-ba8d-4ee2-8ef2-bc6e7063501a", "name": "Replace account attribute", "originalRequest": { "url": { @@ -18535,7 +18535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce09570c-d2d0-43fe-8105-0608957a6234", + "id": "80fdf0d5-a6d8-4303-a33a-1e005a136fb0", "name": "Remove account attribute", "originalRequest": { "url": { @@ -18592,7 +18592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3f61a0c-f6ec-4d9e-89c0-5817dfc34f99", + "id": "1ecd20d3-deb7-422b-a553-cab983c99763", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -18649,7 +18649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a0c65a3-3634-4062-ae27-0a96360e32a6", + "id": "8dfab2de-cb67-416a-8fe3-a7ffae01515d", "name": "Reassign account", "originalRequest": { "url": { @@ -18706,7 +18706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60163546-fd39-48e6-b57a-680b4224f429", + "id": "d7391dec-78d7-4556-842a-fb8f769021a1", "name": "Add account attribute", "originalRequest": { "url": { @@ -18763,7 +18763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d16528d-57dd-4081-82d2-133b9d184f02", + "id": "af31c7b8-ee3b-4f3c-b8ac-abe7c1885b82", "name": "Replace account attribute", "originalRequest": { "url": { @@ -18820,7 +18820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9424de2-2891-4e8e-b33b-62f90518ae29", + "id": "22b071b0-47c4-41c4-b514-195f5755ff25", "name": "Remove account attribute", "originalRequest": { "url": { @@ -18883,7 +18883,7 @@ } }, { - "id": "6c4885cb-c202-4f14-a1ea-b64116c2b4cb", + "id": "555de8ef-ce5d-4194-ab8e-f0024f701117", "name": "Update Account", "request": { "name": "Update Account", @@ -18937,7 +18937,7 @@ }, "response": [ { - "id": "1ab3dcda-dc69-4eb3-8586-d46d9e7c416d", + "id": "3024df22-39f6-44e4-a184-ebcd06991766", "name": "Async task details.", "originalRequest": { "url": { @@ -18994,7 +18994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0ca215a-9a0a-46ec-8fbd-d6323930c2ac", + "id": "ddb62f43-686c-4380-bf28-14d607a73a3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19051,7 +19051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18372164-6a66-449c-93f4-ac08f94b9392", + "id": "eca73e26-bc0c-4b88-8ea2-45a89bf73866", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19108,7 +19108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42f69eb2-f678-45bf-98a2-330f4bd3b955", + "id": "b87e1188-d375-4753-b6d3-575a696ec997", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19165,7 +19165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c5eb037-b18b-4912-b210-7a661107bb25", + "id": "45e240db-4d0a-4e7a-8ae8-6f8080cb85a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19222,7 +19222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8bbed7e-1e43-405a-a6e6-d8472378ec90", + "id": "a1145854-8c9e-4dd8-81b5-192b3e396ea4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19279,7 +19279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4e0934e-09b7-43e9-bbfc-57cd77aafb59", + "id": "842a88d8-083c-462a-8cd6-7f63c0dd893f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19342,7 +19342,7 @@ } }, { - "id": "7cb9e39f-5111-4245-9d6f-6ad0f85a7b2d", + "id": "e9556261-daac-424e-941b-b443543e1dcf", "name": "Delete Account", "request": { "name": "Delete Account", @@ -19383,7 +19383,7 @@ }, "response": [ { - "id": "d88fd8dc-f324-4333-a21c-244d33a5475c", + "id": "f361662e-9f9b-415e-bc64-129a1b78ee3a", "name": "Async task details.", "originalRequest": { "url": { @@ -19427,7 +19427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72583ad7-b3be-4665-84f9-338189cc8017", + "id": "9c9b2af8-66cd-416a-968d-29e1f9d69296", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19471,7 +19471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c95adf-ea01-4ced-aec2-e976708ba580", + "id": "dc3fd20e-9bdf-4707-b00f-0d8c8734e211", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19515,7 +19515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6acfc15-a24d-4221-8475-1ecc2730f533", + "id": "079cc7e3-4b60-4731-9390-b33f4b739248", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19559,7 +19559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbfaa08b-3549-4f05-8166-b8f8796268fa", + "id": "e27d5180-538f-47cf-b1d8-e2713e4525cb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -19603,7 +19603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b96c1f9-35aa-4026-9cfb-3e8746237383", + "id": "f16eef2c-ff7e-435c-b469-f407520f8c25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19647,7 +19647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc389e32-0549-4082-a799-02d561a324b4", + "id": "057e4329-57fd-415d-a847-e0cb8b551eb9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19697,7 +19697,7 @@ } }, { - "id": "af752d44-35a2-4265-a7e4-20128f5bbcf5", + "id": "d8994950-92bd-4eca-85bb-cc73d2e91b76", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -19767,7 +19767,7 @@ }, "response": [ { - "id": "bec4bff1-afa0-4b2f-aecf-2f9f148a92fc", + "id": "a7f491d1-2a05-43a1-aba1-33ef0b1e6960", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -19840,7 +19840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "072bbe00-0e02-4deb-b550-d136cb568b6d", + "id": "ea8bb301-b98d-45a0-8d4c-f5ccc525be03", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19913,7 +19913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43c95173-ecad-467e-b872-7fb3c1947eea", + "id": "793d9d24-9a90-4ac8-8ca1-9ffd1a8f490c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19986,7 +19986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9a0fd6d-f46a-4adc-94e6-cb9237a51172", + "id": "ac74d6f9-909b-4f5f-9aef-54440e0eb25b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20059,7 +20059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f242f5-8522-4c76-9f94-979aea542968", + "id": "f1b191f2-89bf-45a2-813f-beafac277b45", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20132,7 +20132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852f2c42-3034-4795-9095-9a7c850a1bbd", + "id": "dadd5028-ce59-4a33-8584-1bd60cd83470", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20205,7 +20205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f59de2d-2fda-4cfe-829d-015e0b55eadb", + "id": "b3ad519f-2ff1-49d8-b8db-5586cc647db2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20284,7 +20284,7 @@ } }, { - "id": "37d8f45c-1af7-4922-98b7-b0272b654163", + "id": "8e5ca1e1-620d-4c0d-8ddb-7fbdd67ae967", "name": "Reload Account", "request": { "name": "Reload Account", @@ -20326,7 +20326,7 @@ }, "response": [ { - "id": "50894671-1e18-4c17-99ef-c62b08b769cd", + "id": "ece28a3c-2afc-4f84-ad20-191196d6c845", "name": "Async task details", "originalRequest": { "url": { @@ -20371,7 +20371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbd677b5-47be-4551-a19a-c0f5c8f73bed", + "id": "abc6756a-cdce-4f49-9d54-349f058e3b3f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20416,7 +20416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5612ff73-e962-4669-91ca-b0050767855d", + "id": "bf48cecb-0547-41fb-80f9-6f20ca1cc525", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20461,7 +20461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95c37342-f244-461e-849a-ab8ac4ceb7b3", + "id": "307015ca-5e42-45d6-a93e-2791cddf3a1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20506,7 +20506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e18752d0-b8ca-4aa5-9b7d-6575f1a46267", + "id": "944e6e5b-c58b-4cfa-88ea-3dd374f8f3e2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20551,7 +20551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca4948b0-9634-46b6-a71e-a918b8483cca", + "id": "5ee0e0ea-45c6-429f-905c-2f2641f47bb2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20596,7 +20596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29633cb3-dcfe-4e62-ae5c-232c1d2a48f0", + "id": "7d6c92be-08ef-4a58-96c9-c287445cabe1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20647,7 +20647,7 @@ } }, { - "id": "ff97f322-eff0-4d21-a2a3-d89390528b17", + "id": "3986fc5e-cf63-4143-8c37-01ea5134921d", "name": "Enable Account", "request": { "name": "Enable Account", @@ -20702,7 +20702,7 @@ }, "response": [ { - "id": "3a4740d2-18c4-4d45-93ce-0a0911d0cb59", + "id": "37f4f941-8463-4509-94a3-f790224dbc2e", "name": "Async task details", "originalRequest": { "url": { @@ -20760,7 +20760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3653ea4a-3976-4e28-bd83-66d3c5307d11", + "id": "1104317b-397e-4524-b9e3-8566bfb695b0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20818,7 +20818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70b19086-2b92-483a-9024-34438e08ec6f", + "id": "d0f41038-0ed0-4084-9d4c-2efe4d176e80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20876,7 +20876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d139f78-5b35-4b81-adb8-6fa22bfbad06", + "id": "1e7d9e24-fa4b-43e8-9d94-8356b152b7b2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20934,7 +20934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36820464-f963-45cf-b6f5-7b542155f901", + "id": "4034a53e-1ae6-4157-a48c-d0f334a4c47f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20992,7 +20992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0878f8e-543b-4ad6-82ac-d8d82baee0dd", + "id": "b7516b61-dc0e-4732-b6c2-fcdbf0575d86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21050,7 +21050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "267c0859-51b4-4a14-9de1-1d96810320cd", + "id": "2dc247cf-5849-43f5-bb1c-4f4c6c099b79", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21114,7 +21114,7 @@ } }, { - "id": "d6b10078-9e7c-4c9c-87ce-95b18c56a6a8", + "id": "91776e62-28e3-4457-88a4-e6a3b7b03ef1", "name": "Disable Account", "request": { "name": "Disable Account", @@ -21169,7 +21169,7 @@ }, "response": [ { - "id": "f33a4eb9-5b47-4e38-9ff0-40c4c81af6a0", + "id": "7eb5501f-fc7f-44e7-9005-a485e0324e65", "name": "Async task details", "originalRequest": { "url": { @@ -21227,7 +21227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fadc7fc-d486-4ef5-9dd6-4684fdf79254", + "id": "5bcddacb-e83d-4191-8673-d19e5964c1a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21285,7 +21285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ece1f5d0-c1d0-4bee-a78f-4156c5297796", + "id": "6e62c1ab-0bda-4b30-98ff-e17c24ce7616", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21343,7 +21343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94a6a154-ef13-4a23-a978-a3d5e50ed12c", + "id": "70a62c11-6662-497d-9d96-ba359f3501e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21401,7 +21401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31cb4aa0-7127-4cc0-ab34-43c6f22121a7", + "id": "5957db0a-2d4e-417e-aea2-fdc0607d42f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21459,7 +21459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d6e4434-8bc7-4919-a2b2-089f1eb64ebf", + "id": "d3728cee-052f-4eff-820d-3a6980b26ab3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21517,7 +21517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46c1d80d-aae2-4743-a716-4b9240d25af4", + "id": "e7356660-28de-49a7-97b5-4dd290600ec4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21581,7 +21581,7 @@ } }, { - "id": "1d41735a-c826-41ac-ba35-4da2117f7681", + "id": "b2ead448-ebbd-45ef-8814-c2781770fb84", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -21636,7 +21636,7 @@ }, "response": [ { - "id": "da907a26-a0a0-4c56-9ea1-a465539f7cc2", + "id": "672f73d2-b778-4e26-b47b-5cd3442a4d98", "name": "Async task details", "originalRequest": { "url": { @@ -21694,7 +21694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a8df17c-1f69-4d6d-8412-0c525a5307d7", + "id": "b6ff3e9c-2fe8-4978-a12f-236c392340d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21752,7 +21752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad9408d-cb02-46fa-9ede-6d52d9109fd7", + "id": "822eeeae-7a09-4ea4-aefc-8335f83ab951", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21810,7 +21810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "189023ab-73c7-43b8-9147-71fd4d9c2bb4", + "id": "7bb4d366-daae-4288-bfa6-4efebf76e843", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21868,7 +21868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "014dc5f1-b740-4fc1-8f75-702cb71ac4fe", + "id": "79b91343-eba9-429c-8aa6-9f546f93b746", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -21926,7 +21926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "077d99b8-0c94-401c-b1cb-f523bfe57b13", + "id": "5ffd3b5e-c2d0-45c0-898d-0cfa5e4b169f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21984,7 +21984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2950d59e-0a08-451a-91c7-a4712e018080", + "id": "027f197f-1214-4de7-9809-c74ba78e3999", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22048,7 +22048,7 @@ } }, { - "id": "a98b8773-af5b-4fb5-a10c-327ec9030e5d", + "id": "0e239fbe-a359-4d01-84c5-949d54086f73", "name": "Remove Account", "request": { "name": "Remove Account", @@ -22099,7 +22099,7 @@ }, "response": [ { - "id": "cf5d53b8-81fb-43a9-8fda-97111f075c64", + "id": "856d05bd-5ce4-426e-b36e-9c3974c3d035", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -22153,7 +22153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9583152-b213-422b-a571-9f354c2db528", + "id": "f82eb1b6-4ddd-459d-a192-b3eeda06f220", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22207,7 +22207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4982e046-b068-491b-9c1d-56dd58d51e99", + "id": "91219408-59df-4efd-9277-e4f13e8c5da3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22261,7 +22261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f05de9-2f3c-4a20-bacc-cb4508115d66", + "id": "003d2915-8d48-41fc-b80b-de3b7d88e8b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22315,7 +22315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7b83430-9d0c-49d7-88c5-6a76870dc5ae", + "id": "0614e7f5-684c-4ca4-9610-f95456bd5dae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22369,7 +22369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdec6da0-a82d-4b23-b1db-6f2476fc2dcd", + "id": "da57b46f-e94a-47d7-9756-303b50cb84c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22429,7 +22429,7 @@ } }, { - "id": "907d4b15-1bde-4dbc-8d09-670bddd0581a", + "id": "5cb87181-3a74-4e80-863d-1f1a1f475514", "name": "Enable IDN Account for Identity", "request": { "name": "Enable IDN Account for Identity", @@ -22480,7 +22480,7 @@ }, "response": [ { - "id": "c56e6ee4-fd3c-46d0-91bd-82c6c0cd79d2", + "id": "c4e40078-ffaa-469b-ae67-ca7e3c876a25", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22534,7 +22534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e823e109-a66e-4729-9d19-3aa1ab75d4af", + "id": "02a29540-c7d8-41c5-892d-df5905503674", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22588,7 +22588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd9b0f61-1337-49c1-94e9-6c38c5d54739", + "id": "02a0a708-ea9c-4c30-af54-c85db865d878", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22642,7 +22642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e633863c-b3c3-499d-8ee3-9482d1b1a62e", + "id": "4f951206-16f0-4384-bbb1-62eb2c828ab0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22696,7 +22696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e402bd38-53db-4083-aca0-3f6464526ce7", + "id": "1ce9bee7-3d88-4f1a-9e3d-930283edb711", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22750,7 +22750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da43061-5402-4f76-9ceb-078d00859af0", + "id": "857d2694-818e-437b-9719-91b7e852b5a1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22804,7 +22804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86444e4c-1c5b-4387-ae35-1bce3c89a3f7", + "id": "41c7ceda-391b-432b-9c8b-7f388c3b3c73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22864,7 +22864,7 @@ } }, { - "id": "e6219135-e0b1-4df1-b111-e50e8e6aa70e", + "id": "ff9b4c2c-1a60-43fd-98b8-30a8298dad22", "name": "Disable IDN Account for Identity", "request": { "name": "Disable IDN Account for Identity", @@ -22915,7 +22915,7 @@ }, "response": [ { - "id": "24736355-367b-4d33-a6fb-1311ee4a3264", + "id": "ce013457-84eb-48ed-948e-3d03cd01f8ff", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -22969,7 +22969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6be03e1a-b1de-4d50-b3ff-e3208219380f", + "id": "39105ebf-48bb-47fb-b059-d169d6f0b5d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23023,7 +23023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fce9a49-9f96-4ceb-bd5b-df51dc0e5c68", + "id": "a813b333-ae3a-4357-a433-d3b42e881da8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23077,7 +23077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52707ec6-1e61-4d9f-8293-4439ae689ca7", + "id": "0a3f04af-58d9-41f8-b562-c8e7a52315ab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23131,7 +23131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faaa0129-5df9-465b-8335-ac2ba2ba91f5", + "id": "3d069968-fa55-4fe8-90c2-bfc9bb7bc172", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23185,7 +23185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f5dd8b3-0f5c-42ab-922f-8566739df0ad", + "id": "ec9602b2-25a4-4bd0-8061-0aa4eb5539ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23239,7 +23239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a0185dd-7bd9-493a-90b7-104094aa05e4", + "id": "9d057d86-b382-456f-b43a-e5c53695b545", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23299,7 +23299,7 @@ } }, { - "id": "c8613bfa-913b-4e20-a5ab-ef95181395c4", + "id": "515dc422-1ef4-452c-b8ce-f1094f1e35f2", "name": "Enable IDN Accounts for Identities", "request": { "name": "Enable IDN Accounts for Identities", @@ -23351,7 +23351,7 @@ }, "response": [ { - "id": "c32e99dd-a44d-4a52-aa4a-c3eb9256557b", + "id": "7dd7ea0e-4353-480a-908f-d9c2db03779b", "name": "Bulk response details.", "originalRequest": { "url": { @@ -23417,7 +23417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b51edec8-7d2d-4e7c-9517-4bba1aa08e0c", + "id": "dad0d754-7713-4b26-b6be-3779c3ec986a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23483,7 +23483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d06897b4-b7e3-4940-af34-12909bf47b6b", + "id": "b050ecbd-3cef-47db-b001-26500bf9494d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23549,7 +23549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "768eb69d-5149-46cc-8f80-ba8225e8e357", + "id": "cb117158-cf1b-44a5-9df4-aa721060b206", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23615,7 +23615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9981ca51-bb3b-4836-ae93-4f52f5896426", + "id": "de15f186-f9b6-408d-bd58-71731c469ca6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23681,7 +23681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc2ee147-dad1-4844-8fa0-187ee3167572", + "id": "5637866f-c51a-4c4d-be41-44655d95a00a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23753,7 +23753,7 @@ } }, { - "id": "eef2ae17-a767-488c-94e4-162833b9663e", + "id": "8be24a82-62d8-42a8-bdf4-6c877fcc12b4", "name": "Disable IDN Accounts for Identities", "request": { "name": "Disable IDN Accounts for Identities", @@ -23805,7 +23805,7 @@ }, "response": [ { - "id": "e8bdf289-cb9b-4d11-a738-906c49f9d8ab", + "id": "f00c2551-c58a-40a6-b159-7ff6889f4f31", "name": "Bulk response details.", "originalRequest": { "url": { @@ -23871,7 +23871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8668ac3c-af10-41c0-bea1-1060c82b5caf", + "id": "38cf456d-4415-43b1-8613-b6db229726fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23937,7 +23937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6841f8bb-6ed4-4cc3-80a3-6f405f37cde7", + "id": "29f14344-b8ac-4f6f-8f51-f13e4d0fbaa4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24003,7 +24003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5c3c8c1-c20b-4c07-9821-588f9483c938", + "id": "4c8a2388-8e8b-4dcf-9e9c-c8e29cbefd86", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24069,7 +24069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b82b393-eb18-46da-90c2-623ef6bb5c1a", + "id": "fbc1ddec-f07e-431c-b629-8c90894a0c7d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24135,7 +24135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c85664ce-1f5d-40cb-a899-a3bdf57d76a5", + "id": "0dbefb52-0d73-44dc-bbf9-200141a3e795", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24213,7 +24213,7 @@ "description": "Use this API to discover applications within your Okta connector and receive connector recommendations by manually uploading application names.\n", "item": [ { - "id": "ccdf5e3e-e759-4acf-8595-1b4a9a6c4544", + "id": "5ea4f2f8-bcae-401b-bbd0-ec7b4931b258", "name": "Get Discovered Applications for Tenant", "request": { "name": "Get Discovered Applications for Tenant", @@ -24288,7 +24288,7 @@ }, "response": [ { - "id": "5b804d5c-1985-44d1-8b7b-1d107139b330", + "id": "d1ca7387-603f-4f38-b735-a3378ba092ad", "name": "Slim Discovered Application", "originalRequest": { "url": { @@ -24377,7 +24377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "453a4c5a-345f-4147-b21f-f8f7fb700461", + "id": "c1cf8449-52b5-402f-98ca-30a61be26c2c", "name": "Discovered Application", "originalRequest": { "url": { @@ -24466,7 +24466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "454f5429-e9ed-42dd-aa68-859ecca5afa9", + "id": "5cfba57c-3c8c-49e9-b390-2f5c30e62f3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24555,7 +24555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "250916ee-7129-45f6-a184-9c0bff2fffe5", + "id": "cd93836f-0e6f-49db-842b-621ca4219495", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24644,7 +24644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3c0ca93-352f-4f63-bd7b-0c7cfde99d83", + "id": "d43d3673-cb76-4510-a446-2a9b110dc6e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24733,7 +24733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f377503f-4f3e-4377-af9f-822ea6f210c9", + "id": "5000bcb8-0c11-49d7-9df3-4634acd0ebbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24822,7 +24822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2341e441-a513-4b39-8e97-5bfae319b80a", + "id": "486ac1ff-6014-48c7-983d-337f776bcbea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24917,7 +24917,7 @@ } }, { - "id": "eeb34f32-24f4-4311-b4ea-b6366d621be2", + "id": "d9655388-691b-410a-a8df-d2570ab31b1e", "name": "Download CSV Template for Discovery", "request": { "name": "Download CSV Template for Discovery", @@ -24946,7 +24946,7 @@ }, "response": [ { - "id": "856b4cfc-c647-4bc9-a68f-86b62d59e5ae", + "id": "b5db3c1f-5df3-4d61-a4f9-4f429368d24c", "name": "A CSV file download was successful.", "originalRequest": { "url": { @@ -24989,7 +24989,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b17b41b3-8891-49bf-a1c1-b72b91e89443", + "id": "ad19dfce-ebb3-4930-ae52-ba91fb73860e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25032,7 +25032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d690acda-abd5-4d2c-a02d-e34d13e9d834", + "id": "a65621d3-b5db-427b-9791-e252b6ad6737", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25075,7 +25075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05d40dff-3252-4b8e-91e6-53b172b1969d", + "id": "e23a0dd3-229d-48f8-9a40-0cc0eb4afa69", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25118,7 +25118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "809e1ad6-8c82-4d80-8bc3-b44406398f63", + "id": "b1cc06bd-4777-4522-a737-08f2946b4966", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25161,7 +25161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a44d34ec-c2ec-4caf-95c8-187bb7408e88", + "id": "17997afa-254c-49b7-aaa9-23efebc52fba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25210,7 +25210,7 @@ } }, { - "id": "c9ce419a-d8c2-453c-8f30-61ddaaabafab", + "id": "3289044e-8d56-47f2-9318-211b79b7c8ce", "name": "Upload CSV to Discover Applications", "request": { "name": "Upload CSV to Discover Applications", @@ -25255,7 +25255,7 @@ }, "response": [ { - "id": "37060238-6a3b-42a5-ba42-e6f48a5e5cda", + "id": "505574fe-16d4-4e49-aa9d-8d45b111ff9d", "name": "The CSV has been successfully processed.", "originalRequest": { "url": { @@ -25304,7 +25304,7 @@ "_postman_previewlanguage": "text" }, { - "id": "79adabdc-efc3-404f-ab47-0af893c10df2", + "id": "dd66baea-b20c-44c9-882a-63c1100c99e7", "name": "Bad request - There was an error with the CSV format or validation failed (e.g., `application_name` missing). Error message should be provided in response.\n", "originalRequest": { "url": { @@ -25363,7 +25363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cc04b93-32b5-47bc-9e7a-549461b25e30", + "id": "581cf0dc-da10-4851-840c-35cabbc31718", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25422,7 +25422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31b59fca-d80b-4a22-b3e6-f85394e0ca2b", + "id": "f46e4bf3-115d-4336-9d49-b5d052c439f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25481,7 +25481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "716dba23-1e4e-4a54-82ea-93d0ec054198", + "id": "73b57bba-2ef7-4e44-bf55-a239c8778292", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25540,7 +25540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfe49af2-f0b5-4468-96c9-245fdb98610d", + "id": "eef5c9c5-7de2-4060-be8e-4deeac27c1a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25611,7 +25611,7 @@ "description": "Use this API to implement approval functionality. With this functionality in place, you can get generic approvals and modify them. \n\nThe main advantages this API has vs [Access Request Approvals](https://developer.sailpoint.com/docs/api/beta/access-request-approvals) are that you can use it to get generic approvals individually or in batches and make changes to those approvals. \n", "item": [ { - "id": "cf9a4022-ba7d-42a7-b2cf-b574840c4819", + "id": "5af9021a-704f-43ee-bc06-ae945d569978", "name": "Get Approvals", "request": { "name": "Get Approvals", @@ -25677,7 +25677,7 @@ }, "response": [ { - "id": "77d631e6-9ac2-4966-9646-74120e80aba5", + "id": "570dd538-0e59-4812-a75b-2024733e54b7", "name": "List of Approvals", "originalRequest": { "url": { @@ -25757,7 +25757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc8684d2-9a8c-401d-a599-0e7cc2ddc89c", + "id": "d08bed3d-e25b-4e90-98e2-176aec387c31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25837,7 +25837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7a110f-570b-48d0-bb51-fa6214976ca0", + "id": "04ed952e-b80d-4842-9ce3-85bc0089a4c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25917,7 +25917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4fd2199-1003-4872-95d0-94bbd5705ff5", + "id": "385225ec-bc10-4445-b750-e3fa1850c3ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25997,7 +25997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a656e25-f698-4496-8022-5f9579c9b1fc", + "id": "70276353-b7ef-4013-b2ba-f1c26d08e81e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26077,7 +26077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d4c09de-18a4-4ead-8f24-67bec5280956", + "id": "604a2c7c-3398-4527-a150-81a648e54a85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26163,7 +26163,7 @@ } }, { - "id": "48a5f598-be2c-4283-b9e9-118e8c33f014", + "id": "48682084-77b6-4920-9092-ba641e43a1f5", "name": "Get an approval", "request": { "name": "Get an approval", @@ -26213,7 +26213,7 @@ }, "response": [ { - "id": "706db954-020b-4ff0-aae3-9042fb94889f", + "id": "be5184c0-c964-4365-bd43-c73c58f92eae", "name": "Approval object", "originalRequest": { "url": { @@ -26266,7 +26266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688b0b8b-1735-41ad-b8f0-58f2f0f7534c", + "id": "2fc70afa-94df-4616-a519-8418c1442e3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26319,7 +26319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efd0607a-fd4c-4c29-9bd5-0adf959b7c50", + "id": "d9c72063-c06d-4197-8bd2-f778985f484c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26372,7 +26372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93a8d3eb-b992-4d3a-8511-63db5b94365f", + "id": "2a022de1-1638-41cd-a4c0-8bb70994d84d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26425,7 +26425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d54c866-b717-4e27-915a-318ff2f5c1be", + "id": "b9ea5253-0aa0-4f1e-9776-d21f78dbc8f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26478,7 +26478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2715cb0-6a4a-4fe0-b572-f9697bb9ddc6", + "id": "d98dfce1-34b6-48ec-9df6-181c84a8dea6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26543,7 +26543,7 @@ "description": "Use this API to implement source application functionality. With this functionality in place, you can create, customize, and manage applications within sources. \n", "item": [ { - "id": "29ca03a0-990a-480f-a8b3-ef6a776b6930", + "id": "55b4be8a-13fa-4bc1-9800-4aa395f26a4f", "name": "Get source app by ID", "request": { "name": "Get source app by ID", @@ -26593,7 +26593,7 @@ }, "response": [ { - "id": "c32e0448-8f86-4989-9a76-53d9c24466a5", + "id": "b9967da4-43d4-4c2f-8cb5-8da260da028f", "name": "Responds with the source app.", "originalRequest": { "url": { @@ -26646,7 +26646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16cc7218-6582-4724-982a-21c7c16ee6af", + "id": "ed0d3f48-6faf-48f6-a296-1ec6b2993359", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26699,7 +26699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53049025-d82b-45ff-a722-856190fe7132", + "id": "686cb1c8-4fa5-47ec-9eac-7a1030f07507", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26752,7 +26752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b0a7488-aa33-4df9-98fe-b343941a5bc0", + "id": "4106aec0-9449-4256-9227-b0c29c6e33a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26805,7 +26805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a094e0fd-e70f-4095-9066-7fa067230b88", + "id": "50148c9b-65da-4cb4-b1af-db803881f913", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -26858,7 +26858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e835b0e-7859-4db3-8e64-f27456a02532", + "id": "39e4131f-4f2e-4c75-92f1-d7ff38994b76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26911,7 +26911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d77de06-743a-475b-afde-42b9d8fe4f21", + "id": "79ba833c-a46f-4f16-958f-2b408587b28b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26970,7 +26970,7 @@ } }, { - "id": "3a6bbdf9-438f-415c-8bc5-54960458fb8f", + "id": "a7f70432-63e8-48bd-83b0-9f7053c32ee3", "name": "Patch source app by ID", "request": { "name": "Patch source app by ID", @@ -27033,7 +27033,7 @@ }, "response": [ { - "id": "dac9d9f7-3cf2-405f-a684-1d37c02c9804", + "id": "e3ec6d87-25a9-4180-a48e-46b8be1f88d8", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -27099,7 +27099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf1db51a-e51c-448e-8f8e-c2d499c67fa3", + "id": "d46dde38-ec98-40cd-b5fe-0e42a2b2122c", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -27165,7 +27165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd67178-08b7-46f8-8951-66e9769b9945", + "id": "6a06fac2-a9bd-4d40-870e-95ce0eed3f37", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -27231,7 +27231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6ec329b-2d82-42d0-b73f-42453c0acbeb", + "id": "524b08c1-6306-441e-95b4-0c330c5ce2cf", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -27297,7 +27297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ede26455-08dd-4680-8e43-93af0651bf24", + "id": "3cd809c3-5b6a-481a-92e8-22fcece16570", "name": "Add access profile", "originalRequest": { "url": { @@ -27363,7 +27363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "691a6251-d949-47dd-893f-5a8b555d1a89", + "id": "516a7018-9ce3-4de9-9f69-3c4caac964a8", "name": "Replace access profiles", "originalRequest": { "url": { @@ -27429,7 +27429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70a6c405-455d-4414-9c38-d523351ab199", + "id": "e1953f0d-c6c6-45c0-a5e0-50a9da7b5169", "name": "Remove access profile", "originalRequest": { "url": { @@ -27495,7 +27495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41e9bd99-4d42-4c82-9d69-fff2c68490ea", + "id": "fc8a9082-cc27-423e-9e4b-f607fb0c4b6b", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -27561,7 +27561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec85c114-37c4-4edb-a1a6-c5116fe7b370", + "id": "fbca3984-86c7-4e9c-9217-7649c2eed3ed", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -27627,7 +27627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f90ff0e-964e-40c8-9713-92804a109205", + "id": "5bd820d0-66b0-4633-8a8a-a569bd9ac1c2", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -27693,7 +27693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2559f49d-3b1c-4a9d-919d-c83b726f50e3", + "id": "438051d8-c252-4cab-b8e5-01938c7923b8", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -27759,7 +27759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e39312d-2a46-4cf2-a349-12816257a74a", + "id": "2aab05b2-ce69-408d-af88-e7e68af7bfbf", "name": "Add access profile", "originalRequest": { "url": { @@ -27825,7 +27825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3c0e913-2724-4758-a8d2-0e4968b05bb2", + "id": "837cc723-75eb-4eff-8d6f-03bbcc388ed6", "name": "Replace access profiles", "originalRequest": { "url": { @@ -27891,7 +27891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b696b06b-d621-44ca-b574-ea08e05142ca", + "id": "4446f633-08c0-4011-814b-fdfeca3bdb9f", "name": "Remove access profile", "originalRequest": { "url": { @@ -27957,7 +27957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8db2337-aa0e-4b88-a6e3-da0e8e32c985", + "id": "25d1b1df-9ed4-45e8-ad05-bf2ad9d278a3", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -28023,7 +28023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34f7d46a-f633-45f1-afa3-5311626148ca", + "id": "7cab593b-538f-4f8d-a02f-5d9f39589c3a", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -28089,7 +28089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec2b0bc5-8498-4b1f-8841-8d1546373ddd", + "id": "e522849c-5ed1-4153-94ed-4c076a0536e8", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -28155,7 +28155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35469929-3bf3-468b-a272-e5872258fa70", + "id": "8ef7cac6-fcfc-4445-8fdc-326bf65627a7", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -28221,7 +28221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f565be1c-c72e-45fc-91b3-731f7200e294", + "id": "af0486de-493f-468a-b11b-b2cecf8be009", "name": "Add access profile", "originalRequest": { "url": { @@ -28287,7 +28287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c35ac783-a714-460a-a5c4-007abfbf9d6c", + "id": "f4cca016-9240-4d2e-bf7f-09777346348b", "name": "Replace access profiles", "originalRequest": { "url": { @@ -28353,7 +28353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24da697a-8aba-4749-8fc9-4d822ccc99e5", + "id": "5904a1a4-85f6-4d02-84d2-ec9a196c71c6", "name": "Remove access profile", "originalRequest": { "url": { @@ -28419,7 +28419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46a9f30-e05b-4d55-ace3-3538723ee475", + "id": "c0706fb2-3f0a-4869-bab5-35ea58dc7edb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -28485,7 +28485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5f1255e-b993-4a88-8d1e-0aedb16aaccb", + "id": "72fc7b1c-7fbd-4331-b57c-812986dc1aac", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -28551,7 +28551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85394d81-0b5a-4b40-8b5c-b30b390e9fb9", + "id": "2c78b5ea-c587-416b-a5fc-10d8f190cf12", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -28617,7 +28617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db15e3c2-7ef8-477c-8e59-7b0fbea4310f", + "id": "c5605b48-0bcb-4a41-9aad-a11ec9d603ba", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -28683,7 +28683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b7c63f2-df28-4512-803e-eec311d44afa", + "id": "d747dd93-b507-4528-bb2f-0faaa176f04f", "name": "Add access profile", "originalRequest": { "url": { @@ -28749,7 +28749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5279918-95d6-4391-9c6f-edd616a3f67c", + "id": "f43e5f61-9bc3-49a7-9667-c39cb8851608", "name": "Replace access profiles", "originalRequest": { "url": { @@ -28815,7 +28815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c827d09-6419-4b22-985e-04eab32cdf02", + "id": "21a8757e-dca7-4591-8f60-d3b5991c6423", "name": "Remove access profile", "originalRequest": { "url": { @@ -28881,7 +28881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e597e78-be6a-40e9-9975-afaf2dc8fe2f", + "id": "b0cce0dd-2346-44c4-879f-2766332776b9", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -28947,7 +28947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8c636a-12f1-4bec-be0c-8036b884cab9", + "id": "4091f09c-9cde-4ad1-a65e-5616c1e2a536", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -29013,7 +29013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bdbdee5-4ed4-4554-8ecc-fc26f7228d4e", + "id": "edebdf45-58c1-43cc-a37c-8546608e5704", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -29079,7 +29079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd8942c0-5577-4165-841d-98310bd0fac3", + "id": "3f1a395f-eefa-4c0c-91d5-a2f4323e5a79", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -29145,7 +29145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "377161f7-2def-4b12-8637-054220df0646", + "id": "64795d2e-b534-40e1-8a8f-42c2daff147e", "name": "Add access profile", "originalRequest": { "url": { @@ -29211,7 +29211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38ad496e-e4cd-4718-92ee-212397e99c3e", + "id": "4bbd2c2c-210d-4e00-8e71-c06ce9f83671", "name": "Replace access profiles", "originalRequest": { "url": { @@ -29277,7 +29277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bb89be3-27f0-4f81-baf1-963847fca4a3", + "id": "987d7fa1-f56d-483f-8869-344b1444191f", "name": "Remove access profile", "originalRequest": { "url": { @@ -29343,7 +29343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06185768-762d-4124-bf4d-492282bd83e1", + "id": "88a26cc9-0c94-4b5a-8239-ba6802e67be0", "name": "Make an app enabled and matchAllAccounts in one call", "originalRequest": { "url": { @@ -29409,7 +29409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "129a6375-2c21-48e7-b130-8f83a6a4ff1a", + "id": "c2a5bc33-be7a-4e79-b817-3e701fb0bbe6", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -29475,7 +29475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c91d3b3-320c-4442-b1d5-023a6dab86de", + "id": "25d5dbc5-e806-4900-ab81-0f53467d3877", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -29541,7 +29541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ff2075-5ba6-4629-92d9-0a0d4444e94e", + "id": "2dca46d7-541d-4887-b118-84c98735a81e", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -29607,7 +29607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edf3660e-ba72-40b7-9dce-f9fa0e472d6b", + "id": "a48c86ef-40f5-4996-b961-c53b7d15cdf3", "name": "Add access profile", "originalRequest": { "url": { @@ -29673,7 +29673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a87c218b-2414-4df4-9145-d9c2bf547b14", + "id": "2c1574eb-aa5b-4046-af3a-0919dc4a90b3", "name": "Replace access profiles", "originalRequest": { "url": { @@ -29739,7 +29739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "440e6836-2314-4120-9956-abfeade79272", + "id": "1a23a837-25a7-4784-ac95-bc1816aade95", "name": "Remove access profile", "originalRequest": { "url": { @@ -29805,7 +29805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a15fc054-d2be-45fa-8eca-21ed5743c857", + "id": "2d14a1d6-ee6f-405f-9023-a94129194c9f", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -29871,7 +29871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b40651a9-54a7-4f78-a910-75c128d9c6dc", + "id": "d4db9983-a9a6-4570-8321-1e7fc39771f5", "name": "Replace an owner for an source app", "originalRequest": { "url": { @@ -29937,7 +29937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1ad02bf-1153-4b4a-81a1-3865742f4de1", + "id": "97d1e35e-fd52-4772-aad8-a83d16a8d436", "name": "Update the description for the source app", "originalRequest": { "url": { @@ -30003,7 +30003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71623839-687a-4c1a-a4f3-f180651dd76d", + "id": "02242eb3-9ef3-4456-a8d4-9bd2d604bbc4", "name": "Update the name for the source app", "originalRequest": { "url": { @@ -30069,7 +30069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8bc1dcb-6ab0-4756-86f6-1fa222b47643", + "id": "064e1673-cd05-40c2-8320-f8989207e98d", "name": "Add access profile", "originalRequest": { "url": { @@ -30135,7 +30135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc31bd94-6a9b-4255-bd65-ac92ee245741", + "id": "cb772690-1a5f-4482-92b9-1de89d5ed952", "name": "Replace access profiles", "originalRequest": { "url": { @@ -30201,7 +30201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31587018-fa23-4659-adba-a05b763cacef", + "id": "25a0e12f-e464-495f-8bd3-21021355d993", "name": "Remove access profile", "originalRequest": { "url": { @@ -30273,7 +30273,7 @@ } }, { - "id": "8bb0a074-093f-4983-97af-ec1d2e70472a", + "id": "f1ec25d8-fe87-48c0-8eef-be1c87d31457", "name": "Delete source app by ID", "request": { "name": "Delete source app by ID", @@ -30323,7 +30323,7 @@ }, "response": [ { - "id": "3a7b6762-4f32-42b5-b10c-c919aaee4ad0", + "id": "38c97d23-d5fe-42ef-af33-7450ef85185f", "name": "Responds with the source app as deleted.", "originalRequest": { "url": { @@ -30376,7 +30376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d308acad-6f04-4478-80f9-219d5863bc0f", + "id": "88f17efc-807a-49c9-bf7f-0b66db4b4e21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30429,7 +30429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "980dd231-6ba8-4214-ae74-12b3fb4d69c5", + "id": "eafee588-9327-4158-9c31-d73f0c403405", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30482,7 +30482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb1fe99-344d-42bc-8980-34864cf7ecd6", + "id": "98fa07ed-a191-4a79-a106-9dcc22017659", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30535,7 +30535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1577c42-1944-495b-83ce-c606a72d2996", + "id": "bcbcb1f5-df11-4f5d-8164-d522187a65c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30588,7 +30588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80af5d9d-8999-4fa6-9cf9-370c29cf1259", + "id": "78307de2-4b64-43e3-8bf3-7729b929d21a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30647,7 +30647,7 @@ } }, { - "id": "fa5a0ff0-712c-4c00-b647-8c5595fdc4e0", + "id": "4c6a2bd4-e769-4381-bafd-6f6a0f6c4dff", "name": "Bulk update source apps", "request": { "name": "Bulk update source apps", @@ -30699,7 +30699,7 @@ }, "response": [ { - "id": "f2bf57df-83e7-4fc5-9a7a-bd273d42492d", + "id": "48f793af-913b-4a77-b1c6-f52876e1e11e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -30755,7 +30755,7 @@ "_postman_previewlanguage": "text" }, { - "id": "13b5dba3-33a8-4cc3-b729-993e446f4ff3", + "id": "0e4bc477-b6a9-4fc7-bdd7-a489d4903fa0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30821,7 +30821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d9afd23-0b6c-4575-ab25-2c976299262a", + "id": "c0f674eb-9eb2-4bbf-93f1-0a3b9d49289c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30887,7 +30887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa3765c6-bb36-4385-bd97-9d548de62a5c", + "id": "aa8e5c4e-d94b-4737-99ae-8527c08129b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30953,7 +30953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ce9844b-a63f-4754-8329-33d90a970a64", + "id": "f4e2a8d4-199a-4004-975e-beba17496a21", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31019,7 +31019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70750c03-dacd-42be-be3e-f4e45396e529", + "id": "e842df93-e2c0-453b-9899-24f8dfc9e5c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31085,7 +31085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51e1225b-9023-4f50-b7fa-c5b84fa3daba", + "id": "acb1b0c3-a4b8-4ef0-8e4f-156521d5c624", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31157,7 +31157,7 @@ } }, { - "id": "1d0a22fb-51ea-4710-ad82-a3632a11bda9", + "id": "94d25429-839f-49f0-a228-60dc01ec8472", "name": "List assigned source apps", "request": { "name": "List assigned source apps", @@ -31233,7 +31233,7 @@ }, "response": [ { - "id": "99b3c8ce-a502-437f-82b9-577db7bb06e3", + "id": "38f1c2dd-ac33-4dfb-b65e-f6ccb0564150", "name": "List of source apps", "originalRequest": { "url": { @@ -31323,7 +31323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52a8cf40-87ba-4621-aea4-d69a9616eae8", + "id": "9502ad8a-d453-4591-82b1-4d3a55fa2a8c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31413,7 +31413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47ac2ab9-c13b-43c2-b22d-f62660ef23e2", + "id": "0d511a1d-166c-48dd-b199-762003448a67", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31503,7 +31503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e5df6f-3fc5-4725-9622-9da3fce76c08", + "id": "66f18a28-e2bd-4e00-9868-a590a819e9d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31593,7 +31593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28028ce8-626f-4dc2-9268-d01bd6298104", + "id": "9a616c05-b741-4910-9ad2-ee886eb26552", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31683,7 +31683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0198ec36-963b-44e1-bebf-a19445e00c1e", + "id": "a23596b4-8c24-4a60-ad86-30a35f6124fc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31779,7 +31779,7 @@ } }, { - "id": "15cd4792-ece2-40b8-be8d-c20be74c43d9", + "id": "89b7afcd-3b35-4b3a-ac32-e8748ee7b0b2", "name": "List available source apps", "request": { "name": "List available source apps", @@ -31854,7 +31854,7 @@ }, "response": [ { - "id": "10804e34-b784-41e9-87c3-2584a4440d53", + "id": "8b991829-2e00-4cb9-b589-ec1b4bebf0c2", "name": "List of source apps", "originalRequest": { "url": { @@ -31943,7 +31943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae61166d-0228-4b46-a0bc-22e66e3ac0cd", + "id": "96b3f32a-5b56-46be-90c3-6767115c17a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32032,7 +32032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11c9a35-dd86-451a-b7d9-795688cb7024", + "id": "d8325c14-adfe-44ca-a4bf-f2d2b78af139", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32121,7 +32121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2edfff83-166e-4f8b-89f2-f21283681d84", + "id": "3e568f86-f15e-4e60-917d-a8476404aab7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32210,7 +32210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8288880b-ac13-4896-9dab-5fc84aade1b8", + "id": "0bc57157-004e-437d-9b56-22e95ad9f68d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32299,7 +32299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f23930b-12df-4ac7-bfda-81fb1ef44e93", + "id": "4b44f987-7e63-4159-95e9-fc7b8c98440a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32394,7 +32394,7 @@ } }, { - "id": "5f6d775b-2057-496e-9f1d-2c4e614648a5", + "id": "9f46ac54-ded6-4b97-a52c-586be9898c62", "name": "Create source app", "request": { "name": "Create source app", @@ -32445,7 +32445,7 @@ }, "response": [ { - "id": "fd1568c7-4646-4663-b444-40fdb5d2504d", + "id": "31885262-d00f-4709-9005-d9c596813038", "name": "Responds with the source app as created.", "originalRequest": { "url": { @@ -32510,7 +32510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d0ebceb-2053-43e5-af05-ee94afb2cb0b", + "id": "de8dbf05-cdd2-4b8f-bdce-3af4cf6f65d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32575,7 +32575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b5619e0-f945-4e5c-a9c6-0bc212acc36d", + "id": "f5a21374-51b9-4e51-819e-42f7cd59dcb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32640,7 +32640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ce03ed3-0860-4bab-87d8-2450680b6d74", + "id": "e262aa24-34a1-4c5c-89b3-b37bd1ed3a2e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32705,7 +32705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71879578-3662-49b6-9f21-dd6cd16729ec", + "id": "d91272a0-5745-4821-9744-12b1d1acd0da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32770,7 +32770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af95b7c2-ad8e-4a83-991c-8f8ef5953122", + "id": "ab815c02-d77e-41e8-a590-03e61e5847bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32841,7 +32841,7 @@ } }, { - "id": "92566352-17e8-4ce8-a2ee-b120773199be", + "id": "e78e8e82-282a-49da-968b-1065c3f539d8", "name": "List all source apps", "request": { "name": "List all source apps", @@ -32917,7 +32917,7 @@ }, "response": [ { - "id": "5d7cadde-781b-4774-86f2-51ece0df8287", + "id": "ea61e045-0efa-4d6b-a2b6-27a6ec913d83", "name": "List of source apps", "originalRequest": { "url": { @@ -33007,7 +33007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efdb8f2a-dcfd-4af5-ab18-88ee46000d63", + "id": "fc0d039d-cb8a-4638-b9be-cd02abc47916", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33097,7 +33097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c2fe153-2656-4d7f-9d20-ff518a00167f", + "id": "76ac247d-3f70-4cb0-9ffc-a74102ec6df3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33187,7 +33187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7d192b0-d209-4663-9311-228e7d1a08fa", + "id": "741f4a94-094d-4f33-995b-6ce14b6def39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33277,7 +33277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cfe31c0-3bb4-467c-b405-84f6c9c597ee", + "id": "4f4c1109-b8f6-4f06-864b-c1c0e58425ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33367,7 +33367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90e9c136-a4f3-4f82-b1bf-5ecc822f90a8", + "id": "ce702460-8afd-4321-8d02-00b3e7a095c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33463,7 +33463,7 @@ } }, { - "id": "37f86b01-0d1f-44b7-8aab-2c391b839790", + "id": "5b46c8aa-b0da-4f3e-af43-d014c25e2be4", "name": "List access profiles for the specified source app", "request": { "name": "List access profiles for the specified source app", @@ -33533,7 +33533,7 @@ }, "response": [ { - "id": "cde827a5-37b1-4939-b0d1-dfeb3a3fd230", + "id": "83918169-13d7-488b-948d-37b9faa55d5a", "name": "List of access profiles for the specified source app", "originalRequest": { "url": { @@ -33606,7 +33606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45b8bc10-4f69-4de1-a7e4-038c2d852d0f", + "id": "49feb575-806f-4b22-ba09-95509996c31d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -33679,7 +33679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97946644-0554-4778-a93d-3a4aad149b61", + "id": "6644de48-849d-478e-8d53-99aea2b4ae35", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -33752,7 +33752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2daecf36-019e-4d54-a878-2b0a7004ed7d", + "id": "8a57b007-73b8-41e8-9ad6-049f47b9bdbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -33825,7 +33825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a5758cb-d1a5-4df3-9a64-568bce11b958", + "id": "4c591dc4-3538-43ff-9f3f-d814b67022af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33898,7 +33898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81f2499-2e08-4c66-a0d0-d18c58b0843b", + "id": "8b4c38ba-0b5f-4e4a-8941-9c726d3bf728", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33977,7 +33977,7 @@ } }, { - "id": "d3d8e12c-f43f-4f8d-ac2e-01c8c9da42b2", + "id": "568bdf4f-0709-4ba1-95e3-7307c0a1db91", "name": "Bulk remove access profiles from the specified source app", "request": { "name": "Bulk remove access profiles from the specified source app", @@ -34052,7 +34052,7 @@ }, "response": [ { - "id": "e4fcaefd-754e-4a6b-8aba-2b26f1a93032", + "id": "a99fd6b4-b20c-4196-a3e4-26d2948987ed", "name": "The final list of access profiles for the specified source app", "originalRequest": { "url": { @@ -34130,7 +34130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38571787-2e63-456c-abf1-435f198db97f", + "id": "01d6cff4-7756-4d65-bd87-e74b4f517704", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34208,7 +34208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23a73c59-ead9-4d14-862f-645d93299ea9", + "id": "4f217654-c237-4a63-a11a-b9f59c022e91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34286,7 +34286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a8a68b1-7a18-436b-83db-8d62ea3a51fd", + "id": "0af8741a-6c6d-4c2e-aebf-f38546c18251", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34364,7 +34364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d897454d-087b-4c49-9be9-932255c3d566", + "id": "f00a3157-d4f9-4bda-a55e-3d6549c09c49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34442,7 +34442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10dfafa2-9d5b-48be-ad19-f2ddb10866c0", + "id": "a9ff03eb-52c5-4e52-993f-0f33278c0ca1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -34526,7 +34526,7 @@ } }, { - "id": "2774ed8d-7306-49f9-8c5f-b99b98651a6e", + "id": "e33a0834-e4df-4d84-bacb-d31f32e4df36", "name": "Patch user app by ID", "request": { "name": "Patch user app by ID", @@ -34589,7 +34589,7 @@ }, "response": [ { - "id": "e3a634d9-3071-453f-90bb-5761a6e8b06a", + "id": "73b37bc3-8d5e-4b3d-b20f-a4ab5bdc6c77", "name": "Responds with the user app as updated.", "originalRequest": { "url": { @@ -34655,7 +34655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc9901d-932f-4aa8-ba02-234c59049c3d", + "id": "b7edf94a-5122-4d63-8a10-8563e189d522", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34721,7 +34721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e5be09-59c8-4222-b1ed-7f93165d19f9", + "id": "b19213b4-2c88-4a10-a661-c6ade65358ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34787,7 +34787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "616e1238-dbf1-4b95-9a14-b63914a8bd57", + "id": "798b3d6a-12df-4a5d-a696-af309fc94535", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34853,7 +34853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "990d36fd-ed4b-4977-8ffc-38efc89f9414", + "id": "3b936a6d-3300-4e3b-865f-70d3ac90c78e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -34919,7 +34919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "882a7416-2266-426f-8140-bffd5e1d94f8", + "id": "b965a861-bdd5-4111-97d1-2212928f1df4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -34985,7 +34985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3acb1998-7e9a-4721-82da-acd775406cb5", + "id": "ce1ba121-cd25-49c5-b365-4f38d5d93c8d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35057,7 +35057,7 @@ } }, { - "id": "9a09474f-ba24-4114-9ccb-88a6f543ba73", + "id": "0655c6f8-e7a3-4bb0-a897-e645b4d24253", "name": "List available accounts for user app", "request": { "name": "List available accounts for user app", @@ -35127,7 +35127,7 @@ }, "response": [ { - "id": "ad082032-b48e-4add-b120-bdab19de890e", + "id": "b92972e4-ee76-4774-8719-860d4bbaf75d", "name": "List of available accounts for the specified user app", "originalRequest": { "url": { @@ -35200,7 +35200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92dd4b42-4268-4024-b7da-4abad4615977", + "id": "947a09b9-7c27-4cd8-9b29-0f90b924f12a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35273,7 +35273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a649587-7617-497e-ae18-f6887d9940dc", + "id": "2568fb5f-afa8-4b5c-91e4-191ca91dca0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35346,7 +35346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8356c681-eac9-49e0-a57e-aca5792ca41f", + "id": "e6e867ee-60d3-4106-bd5d-d7492ceec20f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35419,7 +35419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e50ba2b-ff15-4584-994f-5529ebb7338c", + "id": "0d0bf4ec-7cb2-4fe4-b85e-44dc4661e8b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35492,7 +35492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf7add46-9331-4707-8ee7-056f51fbb9c0", + "id": "c5c0f7f5-d350-44b9-a07b-508d56a2fb94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35571,7 +35571,7 @@ } }, { - "id": "36a00616-b171-4e23-ab65-7aa5f89d165e", + "id": "ece80772-13f3-4e72-a7da-ec2ec30e31dd", "name": "List owned user apps", "request": { "name": "List owned user apps", @@ -35637,7 +35637,7 @@ }, "response": [ { - "id": "403c1622-ef3b-4521-93f7-35d6d269391e", + "id": "e9c5a7c9-c0f4-42f0-ba63-ddca05af2cd0", "name": "List of user apps", "originalRequest": { "url": { @@ -35717,7 +35717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55528c1e-ae06-4161-90a2-9b9e7c16f2d7", + "id": "34825c79-03b3-4189-bd22-216b1d724275", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35797,7 +35797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49e21b88-1cd6-4996-9373-50415bb7822f", + "id": "82fd2f5b-4cb1-4d54-ad1f-4868682a361b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35877,7 +35877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d9f570-86ed-47c7-a170-bfaf6d589f58", + "id": "6cfa4174-c1a3-4537-8c72-1c89745d7032", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35957,7 +35957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a59a9a7-1ab3-4b52-b205-7bfe99cd4c75", + "id": "3aa27239-71f1-43bb-a693-0b8aacb6ab07", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36037,7 +36037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb96043b-bc39-41e3-84e9-375bfc987291", + "id": "c7ec1bd9-6790-48ad-ad87-87c7b36ea5ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36123,7 +36123,7 @@ } }, { - "id": "61a22432-6eeb-48ba-97b5-0477bb2cb7c8", + "id": "34f7ec47-3ef3-45ef-abe0-33c0975f7efc", "name": "List all user apps", "request": { "name": "List all user apps", @@ -36190,7 +36190,7 @@ }, "response": [ { - "id": "0be2fb1c-304b-406f-bb6e-6b3dc9e6278e", + "id": "385596e0-e055-42db-99cd-32c0eaa8c55c", "name": "List of user apps", "originalRequest": { "url": { @@ -36271,7 +36271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc6d6978-4d41-4f87-9340-73c764b7c2ab", + "id": "8c726c48-2cb6-4dfc-a404-67b7b320c137", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36352,7 +36352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7f6072e-9cc2-4322-9cdc-6df4e70dcd12", + "id": "dedf7986-3bcd-4c1b-9a77-82af9b3b1910", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36433,7 +36433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de80aef-84de-4ed1-849a-50d87b6ab522", + "id": "233e4002-5c25-460a-b55b-9a53d01f471d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36514,7 +36514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc3bd0a2-2797-467e-ae34-1058ecaf48f1", + "id": "b7a6bcd9-b1a5-4cfb-8a74-6ae8ecdcef7f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36595,7 +36595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93794354-158e-4f57-8156-6e7198721640", + "id": "183c5ec0-6ce4-43a6-a3ee-de7f4ff703c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36688,7 +36688,7 @@ "description": "Auth Profile - Represents authentication configuration for an Identity Profile. This object gets created when an Identity Profile is created.\n\nAPIs can be used to retrieve and update Auth Profiles.\n", "item": [ { - "id": "71b2746e-382a-4491-8411-61a3bd296b66", + "id": "c089cc5d-bf6d-4f33-b39d-c303cd505a89", "name": "Get list of Auth Profiles.", "request": { "name": "Get list of Auth Profiles.", @@ -36726,7 +36726,7 @@ }, "response": [ { - "id": "7c8c3ba6-ba03-417a-957a-4416ac1a8044", + "id": "a026ec11-d327-48f6-be8e-751934777a67", "name": "List of Auth Profiles", "originalRequest": { "url": { @@ -36778,7 +36778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff2c23ca-d218-46f8-ba0c-1daf5d5db376", + "id": "243dde1c-2c64-40e8-8227-e81d15596f8b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36830,7 +36830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eac272ff-5741-42aa-94fa-3d81a2f78714", + "id": "51e12edf-6e87-4616-8f0e-b6eaf9ef4a6b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36882,7 +36882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f80dd97-7e40-49be-87a7-d6e59a05c9c8", + "id": "8ef81726-5b44-407f-961d-4af558800afa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36934,7 +36934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cf8158a-ce0b-4878-bd3a-f31e0475f446", + "id": "17d38bb7-18d5-4037-a8f6-5e3cb11cfe56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36986,7 +36986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7e3ff92-34a5-4670-8fa7-e8d841b08d7d", + "id": "06024b6b-68e5-4c06-9d50-c830b79495d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37044,7 +37044,7 @@ } }, { - "id": "c076b831-ac66-43c3-8f82-f64be8e8e0c5", + "id": "6633e116-e942-4333-b73c-43e60d943275", "name": "Get Auth Profile.", "request": { "name": "Get Auth Profile.", @@ -37088,7 +37088,7 @@ }, "response": [ { - "id": "56869721-ad80-49ea-ac41-fb130a28964c", + "id": "660e0d97-7173-46d4-b96b-cd797724c948", "name": "Auth Profile", "originalRequest": { "url": { @@ -37141,7 +37141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e85aab-171d-4e88-86ce-77fe17e52875", + "id": "51f687ab-58d8-4fce-9f3a-c64e66e07d7b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37194,7 +37194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e89c7bce-ab9b-484f-968d-b1e35d6d56ee", + "id": "c43a5e6c-720f-4c89-8934-53f5ac64b79b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37247,7 +37247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "519ce30a-0380-4e50-ba46-3c3263505e88", + "id": "57807373-3669-4dfb-97ff-95658efa70a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37300,7 +37300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e8acb46-599c-4066-8b06-469856811329", + "id": "8136f688-282d-4160-9312-151bcc40b67c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -37353,7 +37353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b294bca-813f-4f28-b6b5-953374026cd6", + "id": "4f9c86d5-e2e7-4f03-b9a3-d88029a4e48e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37406,7 +37406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2789819d-a9fa-41e9-8fcc-f85c1edd87a9", + "id": "b9b77e16-c6fa-4b28-b265-616dc7940e58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37465,7 +37465,7 @@ } }, { - "id": "425455cc-f98d-499d-a894-df00ad0d6f24", + "id": "aa228ace-270a-4a19-b34c-935372de2cfc", "name": "Patch a specified Auth Profile", "request": { "name": "Patch a specified Auth Profile", @@ -37528,7 +37528,7 @@ }, "response": [ { - "id": "e180a841-d60d-48d1-8ef6-9275d75805a6", + "id": "59e1dd63-f0fb-4d7a-8f61-f3449261479e", "name": "Responds with the Auth Profile as updated.", "originalRequest": { "url": { @@ -37594,7 +37594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d797f2f9-e61c-4b52-819e-161b95842bef", + "id": "6ae7d4c1-3c75-440a-a54a-2007c475fcf2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -37660,7 +37660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f93fcb85-b924-42af-b7dd-4f08f0f5abaf", + "id": "03961093-c385-4b61-bd90-16ca64f4b500", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -37726,7 +37726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35da776f-78c5-482f-a8c1-a9019776f6bf", + "id": "1675ea45-6a9c-48eb-8555-453f09c6ebc9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -37792,7 +37792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4f6cc07-4c6a-4273-bece-8ceb9236da80", + "id": "658b1adf-8b43-4b82-b447-c17ccc398106", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -37858,7 +37858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0dbfa9c-d960-4a5c-82e3-fe1093ecb0ab", + "id": "2311652b-c4c0-45bd-aa9e-3ea7532ce7a7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -37936,7 +37936,7 @@ "description": "Use this API to implement user authentication system functionality. \nWith this functionality in place, users can get a user's authentication system details, including their capabilities, and modify those capabilities. \nThe user's capabilities refer to their access to different systems, or authorization, within the tenant, like access to certifications (CERT_ADMIN) or reports (REPORT_ADMIN). \nThese capabilities also determine a user's access to the different APIs. \nThis API provides users with a way to determine a user's access and make quick and easy changes to that access. \n", "item": [ { - "id": "015f40b6-d10d-41ff-ac83-585027e4555a", + "id": "d5b0ba6e-9b42-41db-a651-0290417df391", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -37977,7 +37977,7 @@ }, "response": [ { - "id": "7e35f06f-0ef5-44b9-b39f-80e4db6e55eb", + "id": "c0848671-46ee-4dc8-9ac9-fedeeec89413", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -38021,7 +38021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28ab991-f092-4160-bd1c-e03e75e6708c", + "id": "b7ea9b15-7d07-4735-9650-50e4ff60afeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38065,7 +38065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6d38ee5-6bb2-4403-893b-fd28d35bc986", + "id": "ce8253f5-8588-438a-8b44-6f7e1ea2ba1c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38109,7 +38109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "601d39b6-be25-4909-a630-f4ca77bdc274", + "id": "30d00528-7f3a-45d4-a041-7432eb5f9f3b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38153,7 +38153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36f51b80-3298-4fdc-a47c-8d1fc3c10645", + "id": "2a099447-413a-4a19-b20d-ec8ce8805b50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38197,7 +38197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59cff17b-c82f-401f-8ccf-75c50c6d2a15", + "id": "112ff077-5492-4de8-839c-1d5ea61b0928", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38241,7 +38241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d20df7a-cb0c-4582-b748-7fe6a8686e47", + "id": "a797af8c-deab-4e16-a48b-ecccb851ef7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38291,7 +38291,7 @@ } }, { - "id": "6a0145ba-8384-43f7-8de5-e4cf7801e61f", + "id": "e9ee25fd-f590-4f49-ad1f-484a16071b2d", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -38345,7 +38345,7 @@ }, "response": [ { - "id": "320c1379-53eb-4e5c-8058-606814adca57", + "id": "561cd607-89fe-4971-b05a-89926b7323f0", "name": "Auth user updated.", "originalRequest": { "url": { @@ -38402,7 +38402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "310cebd4-27b7-46b8-9518-2f82052c3b22", + "id": "7de8c0b6-8acf-435a-a1b6-ea11ca9c1361", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38459,7 +38459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "058261a5-2a25-47db-b5e6-bc5a15b0c1c7", + "id": "b2e8a9b5-9919-4b0a-a5a2-9c8e958731e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38516,7 +38516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31db7fab-e635-4134-b8e6-76737390373e", + "id": "e89be6e9-aa03-49ad-92ab-cb9031fb1767", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38573,7 +38573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93f432d4-96ce-44a4-bdb9-1be4c04de70f", + "id": "9cf048a4-1367-430c-aaf6-c949dd1586b7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -38630,7 +38630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a39f7006-d141-47c0-a321-7b8271a1d60f", + "id": "d1adc5cb-1bdc-4286-806b-5f367817b824", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -38687,7 +38687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "465948ea-c396-4aa9-9481-d5071cd5f856", + "id": "279083c3-b177-4903-ba23-712979cccd48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -38756,7 +38756,7 @@ "description": "Use this API to implement and customize branding functionality. \nWith this functionality in place, administrators can get and manage existing branding items, and they can also create new branding items and configure them for use throughout Identity Security Cloud. \nThe Branding APIs provide administrators with a way to customize branding items. \nThis customization includes details like their colors, logos, and other information. \nRefer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html) for more information about certifications.\n", "item": [ { - "id": "f479612f-ce2b-48ae-98c4-207f3d46d364", + "id": "cb19e80b-42c2-4c8e-8ce6-0efc0e440068", "name": "List of branding items", "request": { "name": "List of branding items", @@ -38785,7 +38785,7 @@ }, "response": [ { - "id": "b37083dd-ba2e-4c59-ae11-94e2f887ba5d", + "id": "6068d7d3-7e73-4f88-9689-8ad1ee0de69a", "name": "A list of branding items.", "originalRequest": { "url": { @@ -38823,12 +38823,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"quis velit id\",\n \"navigationColor\": \"aliqui\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"voluptate exercitation occaecat dolor aliquip\",\n \"navigationColor\": \"ea in cillum\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"in mollit tempor pariatur\",\n \"navigationColor\": \"al\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ea tempor culpa\",\n \"navigationColor\": \"et nisi ut pariatur\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "01e99b47-7d65-4ebc-9a5e-6362b7702d13", + "id": "91a51fe7-1790-442c-955e-f755de66d342", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38871,7 +38871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e729b493-f198-48d3-9ad3-29e5e05eb157", + "id": "6898b22b-15b6-46ff-bb93-e5f87e2f60cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38914,7 +38914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac388d66-377b-4113-8620-0896d1d81ad0", + "id": "465fc7a6-b362-4235-9644-10e3fb42fd46", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38957,7 +38957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de4a930f-ce59-48fc-abb1-176c6aa12a68", + "id": "a6ba082a-01a1-4594-8b4e-9803e585f86f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39000,7 +39000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3926965-99d2-43d2-96d0-59358865b726", + "id": "a6945a44-31a3-44ca-9f8c-b8d2f7ac6c3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39049,7 +39049,7 @@ } }, { - "id": "d320ad8d-382c-4b83-96ff-309616262b2d", + "id": "ad9b1d18-8b5c-4695-9225-4326593d55db", "name": "Create a branding item", "request": { "name": "Create a branding item", @@ -39114,7 +39114,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39123,7 +39123,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39157,7 +39157,7 @@ }, "response": [ { - "id": "324c83c5-5968-45ad-b28b-851a688fbdcb", + "id": "6536fba5-51c3-41fe-9df5-deef9271b9b8", "name": "Branding item created", "originalRequest": { "url": { @@ -39225,7 +39225,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39234,7 +39234,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39274,12 +39274,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ut non commodo esse\",\n \"navigationColor\": \"culpa velit\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"voluptate deserunt\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2d6b1bd8-c05b-4f03-b077-1af3514ee5ab", + "id": "2ceb43f0-d98b-4b46-8eae-38bc97f43534", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39347,7 +39347,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39356,7 +39356,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39401,7 +39401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2048088f-3398-4215-b74d-6cb059fc51f1", + "id": "f0f19e70-2a6e-4baf-9c5b-5a7372226ed9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39469,7 +39469,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39478,7 +39478,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39523,7 +39523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa5a1cd5-f08b-4d27-a1ed-e5d833af2a92", + "id": "96391847-6a29-4f8e-b81f-7e98ce34508d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39591,7 +39591,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39600,7 +39600,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39645,7 +39645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5600d3c4-2492-47e5-aa4e-4a851369e49f", + "id": "663a01ae-7a58-45ac-bb43-58ea4d06c8b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39713,7 +39713,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39722,7 +39722,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39767,7 +39767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80ee3f3f-4bae-40fe-aa8e-ff5ea3c25261", + "id": "ad3f066e-886a-4662-afe8-21752a2cff7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39835,7 +39835,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -39844,7 +39844,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -39895,7 +39895,7 @@ } }, { - "id": "684f7a01-b8f4-46e5-ab3d-dc7938736ead", + "id": "fbafa0f2-d41a-4011-a838-eafffd525234", "name": "Get a branding item", "request": { "name": "Get a branding item", @@ -39936,7 +39936,7 @@ }, "response": [ { - "id": "1a0d49b1-ac56-48c6-a7b3-929dc18b6a7c", + "id": "874335c2-132b-4821-a81a-5b66b3e91314", "name": "A branding item object", "originalRequest": { "url": { @@ -39975,12 +39975,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ut non commodo esse\",\n \"navigationColor\": \"culpa velit\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"voluptate deserunt\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "61a8d0da-922e-483d-9e2d-39325e57dc30", + "id": "38109a6c-5dc6-4e06-a128-507fe6443c79", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40024,7 +40024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82ee5176-f0c1-4a30-8373-dd80b84c3393", + "id": "8928097a-b870-4e87-8f5a-812e09538b2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40068,7 +40068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34362da8-f6fb-403e-bd43-cb082bf83d9a", + "id": "187e226e-0430-4da0-aa83-c421b9ba7476", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40112,7 +40112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5e64774-206a-4bf9-a130-bb15ac848191", + "id": "7265878a-2327-4358-84af-b487c4f1c11a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40156,7 +40156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6fbcb6c-cdb4-4c87-a56d-9dc7ec5baf09", + "id": "e8711002-411c-4bff-a5b0-0ac2d64df84f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40200,7 +40200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d4ae9d-1c3a-494a-8557-cced2d3e3d92", + "id": "3b295e88-8eec-48e6-9fec-a6e78e5e7359", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40250,7 +40250,7 @@ } }, { - "id": "c62ce7ea-a1d1-40d8-8464-47cf5022eaa3", + "id": "ed2f6ad6-7a1e-4c89-b5be-1461cb5baba9", "name": "Update a branding item", "request": { "name": "Update a branding item", @@ -40327,7 +40327,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -40336,7 +40336,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -40370,7 +40370,7 @@ }, "response": [ { - "id": "9842e81c-2e97-4a2d-96a3-6422dcd514f5", + "id": "8a11ced3-0759-4adf-9b2d-30826471daaf", "name": "Branding item updated", "originalRequest": { "url": { @@ -40439,7 +40439,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -40448,7 +40448,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -40488,12 +40488,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"ut non commodo esse\",\n \"navigationColor\": \"culpa velit\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"voluptate deserunt\",\n \"navigationColor\": \"in\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df61e972-05bb-499b-b0c6-c2619d48a9b0", + "id": "8b2d0d8c-0b78-4c4a-a293-154ae7687bf2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40562,7 +40562,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -40571,7 +40571,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -40616,7 +40616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3cd86e8-7eea-4752-b80b-8dcc60d2d80a", + "id": "2ca1aaa5-3132-4931-8b22-de3b2c8d0248", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40685,7 +40685,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -40694,7 +40694,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -40739,7 +40739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6817ee01-e5b2-470d-9f1f-59700c89dfc3", + "id": "372cd689-dc63-4d61-96fd-9223e1648ba8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40808,7 +40808,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -40817,7 +40817,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -40862,7 +40862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d102c3b3-3c7a-444e-aefc-ae3f3d873828", + "id": "f85b5488-cc3d-4924-8061-1a54e182d55b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40931,7 +40931,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -40940,7 +40940,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -40985,7 +40985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec20cc17-4007-48d4-814b-fcbc3814b899", + "id": "200d02e0-94a3-4b26-a312-6313e8fc5906", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41054,7 +41054,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -41063,7 +41063,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -41108,7 +41108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7618a106-64bd-4e75-b5ed-effd8ad7bc44", + "id": "67f59242-935d-4134-87fd-b42a0d7f56f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41177,7 +41177,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "adipisicing Exc", + "value": "do Duis", "type": "text" }, { @@ -41186,7 +41186,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "consec", + "value": "ea magna Ut", "type": "text" }, { @@ -41237,7 +41237,7 @@ } }, { - "id": "7f694d49-bbea-45fa-b10d-865c6bc27c86", + "id": "5de70caf-6a05-4c42-914a-e077e9404a97", "name": "Delete a branding item", "request": { "name": "Delete a branding item", @@ -41278,7 +41278,7 @@ }, "response": [ { - "id": "ae186315-1313-4ca5-915a-38c1f5c81c4d", + "id": "b7ac7c86-b65a-4b1d-92a7-5441b21e2372", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -41312,7 +41312,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ceb505ac-4c82-488d-b0ff-42512cc0d688", + "id": "db9e7236-481b-4d58-8ab7-651a6eab71ad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41356,7 +41356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "604fdc8f-55f4-401b-8dd3-ce81c6cce818", + "id": "2c68a954-43ff-48a4-a4f9-3b316fb58433", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41400,7 +41400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f2d1504-d70b-455a-8389-24aff4f63045", + "id": "720d73af-227a-482f-8614-2843db3e1f9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41444,7 +41444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd378c62-21bd-48ba-a87c-a618bfd40fb2", + "id": "23c84584-d05e-420e-851b-77a3883cae65", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41488,7 +41488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7cdbb93-5472-4bab-bf65-c688d8380c52", + "id": "2bff7d58-62cd-4437-ac8d-c1adc8cd24b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41532,7 +41532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be19656b-4ed8-4265-b1f1-98889ffdad55", + "id": "70f84e0f-2c32-46fc-9ea0-5e4203bb51c2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41588,7 +41588,7 @@ "description": "Use this API to implement the certification campaign filter functionality. These filters can be used to create a certification campaign that includes a subset of your entitlements or users to certify.\n\nFor example, if for a certification campaign an organization wants to certify only specific users or entitlements, then those can be included/excluded on the basis of campaign filters.\n\nFor more information about creating a campaign filter, refer to [Creating a Campaign Filter](https://documentation.sailpoint.com/saas/help/certs/campaign_filters.html#creating-a-campaign-filter)\n\nYou can create campaign filters using any of the following criteria types:\n\n- Access Profile : This criteria type includes or excludes access profiles from a campaign.\n\n- Account Attribute : This criteria type includes or excludes certification items that match a specified value in an account attribute.\n\n- Entitlement : This criteria type includes or excludes entitlements from a campaign.\n\n- Identity : This criteria type includes or excludes specific identities from your campaign.\n\n- Identity Attribute : This criteria type includes or excludes identities based on whether they have an identity attribute that matches criteria you've chosen.\n\n- Role : This criteria type includes or excludes roles, as opposed to identities.\n\n- Source : This criteria type includes or excludes entitlements from a source you select.\n\nFor more information about these criteria types, refer to [Types of Campaign Filters](https://documentation.sailpoint.com/saas/help/certs/campaign_filters.html#types-of-campaign-filters)\n\nOnce the campaign filter is created, it can be linked while creating the campaign. The generated campaign will have the items to review as per the campaign filter.\n\nFor example, An inclusion campaign filter is created with a source of Source 1, an operation of Equals, and an entitlement of Entitlement 1. When this filter is selected, only users who have Entitlement 1 are included in the campaign, and only Entitlement 1 is shown in the certification.\n", "item": [ { - "id": "975df353-52cd-477b-8747-2e42d6aa56d4", + "id": "6393f4eb-1f9f-46e0-a0d4-e2255440eb60", "name": "Create Campaign Filter", "request": { "name": "Create Campaign Filter", @@ -41630,7 +41630,7 @@ }, "response": [ { - "id": "dd5633aa-97e9-490f-a75e-f2878e60015d", + "id": "6ffb3410-6d90-4041-b080-390d48c2342b", "name": "Created successfully.", "originalRequest": { "url": { @@ -41686,7 +41686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c75d34f4-5bb2-4403-8526-a95168f751df", + "id": "eeba4326-0388-48b9-a712-31f128ae3034", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41742,7 +41742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f577480-44bc-4377-bc81-595ceb1603ec", + "id": "149686cc-8d8b-42e0-928b-707f96267d3a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41798,7 +41798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1234d382-4064-4eb3-8aaf-50865f6fd8f9", + "id": "23127793-f2d2-4265-9593-353cefe8d4c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41854,7 +41854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fee9b323-6fb2-4903-9033-e2fc444c5a5e", + "id": "0a55c553-e89f-4388-9c30-28dc82ce4e7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41910,7 +41910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e82930cd-ab60-4106-9ca6-6ded6812e768", + "id": "c6854cb9-5382-48fb-9a9f-cbe47dfa3565", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41972,7 +41972,7 @@ } }, { - "id": "87f32779-5a5b-40ab-a9d2-f65fb7c73dc2", + "id": "427ac217-aaf9-4010-a298-cdae67a21c05", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -42029,7 +42029,7 @@ }, "response": [ { - "id": "5e0000fc-5810-44a6-aa8c-833ddc292745", + "id": "8ff4215e-5290-40f6-b6bc-17ef3b96c0dd", "name": "List of campaign filter objects.", "originalRequest": { "url": { @@ -42100,7 +42100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21992cea-ad3f-420c-afd0-39c027ec5082", + "id": "52c6d521-5b63-4efb-9aa1-a4f5c2d91ec4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42171,7 +42171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491795f6-7715-4099-a1fb-95a982dadf0c", + "id": "7b83ee0c-769e-41ab-8d8b-1a261847cf8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42242,7 +42242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcedfc58-aba8-4d4a-9a5c-d281024d40b4", + "id": "bec9a433-bbc5-429b-98fa-ffa4ffece0a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42313,7 +42313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0fb40ba-8e1d-4e5a-91f8-ad59828bff50", + "id": "a76417b0-b27f-4f92-bcf4-2d6a3c7588da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42384,7 +42384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bb84e37-2b01-4862-9aeb-0a35a607f870", + "id": "fceb972b-a8d2-4fa3-bf50-5b7fee0bb472", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42461,7 +42461,7 @@ } }, { - "id": "5d43130c-ccc2-4cfd-9567-a75676720a3e", + "id": "ad2c8a35-d908-45b2-86eb-13857b5c019e", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -42502,7 +42502,7 @@ }, "response": [ { - "id": "7190c690-e54a-42f8-827f-6992d53d95ec", + "id": "44f82776-dbfb-4209-b77e-cb6e314a938e", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -42546,7 +42546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11112f06-9794-4463-a3df-2b6e6a7a03f7", + "id": "9933fef2-9538-4af1-bb7d-6bd06628ae5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42590,7 +42590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a7f3d47-9cb4-4d2d-ad3d-50fa89b7a3ab", + "id": "770c7d71-a70b-4649-af30-41f38000f20b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42634,7 +42634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9a51ba-d8b2-4600-ac04-7623d32e9a3f", + "id": "e4c80ad3-1aa7-4539-a344-eec8114ebde7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42678,7 +42678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "970cd8c4-0023-423d-9871-9e42e2b8244b", + "id": "a0044fed-0748-40f8-87dd-e0e91e992bbd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42722,7 +42722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30c4e499-f188-475a-abad-13df419fa8b0", + "id": "7e26e9b8-5b6c-4f83-aebc-c9f6de1de1a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42766,7 +42766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26c12908-d24c-4898-b86a-259640cdc567", + "id": "1c2eacb2-e2ad-447d-ac9e-859f59e2be88", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42816,7 +42816,7 @@ } }, { - "id": "9c627a38-d7c3-4713-ae67-0e91b3608ad6", + "id": "c7512d73-5dbe-40e4-9bf4-8330cb26c49c", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -42874,7 +42874,7 @@ }, "response": [ { - "id": "bb94673a-76db-43fe-aeb8-45f28f496226", + "id": "7fd2aeee-eff2-4e52-9af0-a6e6d6d562bd", "name": "Created successfully.", "originalRequest": { "url": { @@ -42931,7 +42931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "588a8ee6-0940-4dd9-ab3c-a476ea49973f", + "id": "249ca244-bd5c-487f-b7f6-41791336555a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42988,7 +42988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64f13567-2b41-4859-806e-20c94d489274", + "id": "59bdcd03-1e3b-4e96-a329-b9b9b97b7eae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43045,7 +43045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "249da214-ac58-428d-a987-4ae48717ef53", + "id": "f20347f3-86d6-4e08-b00f-24fb31a9635a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43102,7 +43102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c921cb2f-6152-40c2-b2ca-d32cab94425c", + "id": "955321bf-ce36-465b-b502-d527b0b82ef3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43159,7 +43159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39169b59-81af-4225-8567-2784e5c85e92", + "id": "5af721c7-2db2-4f3e-a3fa-92683c0a525f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43222,7 +43222,7 @@ } }, { - "id": "8d4139ee-de78-4a13-b136-66d4ead62f2e", + "id": "1848d079-460b-4e35-b406-da67008b780e", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -43265,7 +43265,7 @@ }, "response": [ { - "id": "de01aa0a-2294-4598-87da-b3cefa1c12fa", + "id": "5afb0e99-0e0e-4129-bd8d-47be86426d77", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -43312,7 +43312,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9b0ba6a2-fc1e-4301-8d3d-5dfdf24385e2", + "id": "627ce7fc-df69-4d89-9311-1a67f3831cea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43369,7 +43369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f2abceb-71f6-4e62-88d0-3b6b9265c3dc", + "id": "d4cb9a3a-0202-4e34-994e-36b17625fff4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43426,7 +43426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625b117a-d905-4f97-8069-97cbc8d3a187", + "id": "01c662eb-04d9-4c05-bc38-ff0c49c28568", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43483,7 +43483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a6707d5-97e8-43f8-89a9-e3d48299b8ae", + "id": "6f3a8ce5-0394-49d3-aa15-b4dd87661cf3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43540,7 +43540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b119cbd6-b424-4148-9e8c-1985d6e22bf9", + "id": "85acb522-4baf-4a32-8636-639c28995c26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43597,7 +43597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d05c037-1532-4ad3-b704-2fbdcd11f291", + "id": "7649e139-c520-4032-aeab-f63bf1276fcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43666,7 +43666,7 @@ "description": "Use this API to implement certification campaign functionality.\nWith this functionality in place, administrators can create, customize, and manage certification campaigns for their organizations' use. \nCertification campaigns provide Identity Security Cloud users with an interactive review process they can use to identify and verify access to systems. \nCampaigns help organizations reduce risk of inappropriate access and satisfy audit requirements. \n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese certifications serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign. \n\nFor example, an organization may use a Manager Certification campaign as a way of showing that a user's access has been reviewed and approved by multiple managers. \nOnce this campaign has been completed, Identity Security Cloud would provision all the access the user needs, nothing more. \n\nIdentity Security Cloud provides two simple campaign types users can create without using search queries, Manager and Source Owner campaigns:\n\nYou can create these types of campaigns without using any search queries in Identity Security Cloud: \n\n- ManagerCampaign: Identity Security Cloud provides this campaign type as a way to ensure that an identity's access is certified by their managers. \nYou only need to provide a name and description to create one. \n\n- Source Owner Campaign: Identity Security Cloud provides this campaign type as a way to ensure that an identity's access to a source is certified by its source owners. \nYou only need to provide a name and description to create one. \nYou can specify the sources whose owners you want involved or just run it across all sources. \n\nFor more information about these campaign types, refer to [Starting a Manager or Source Owner Campaign](https://documentation.sailpoint.com/saas/help/certs/starting_campaign.html).\n\nOne useful way to create certification campaigns in Identity Security Cloud is to use a specific search and then run a campaign on the results returned by that search. \nThis allows you to be much more specific about whom you are certifying in your campaigns and what access you are certifying in your campaigns. \nFor example, you can search for all identities who are managed by \"Amanda.Ross\" and also have the access to the \"Accounting\" role and then run a certification campaign based on that search to ensure that the returned identities are appropriately certified. \n\nYou can use Identity Security Cloud search queries to create these types of campaigns: \n\n- Identities: Use this campaign type to review and revoke access items for specific identities. \nYou can either build a search query and create a campaign certifying all identities returned by that query, or you can search for individual identities and add those identities to the certification campaign. \n\n- Access Items: Use this campaign type to review and revoke a set of roles, access profiles, or entitlements from the identities that have them. \nYou can either build a search query and create a campaign certifying all access items returned by that query, or you can search for individual access items and add those items to the certification campaign. \n\n- Role Composition: Use this campaign type to review a role's composition, including its title, description, and membership criteria. \nYou can either build a search query and create a campaign certifying all roles returned by that query, or you can search for individual roles and add those roles to the certification campaign. \n\n- Uncorrelated Accounts: Use this campaign type to certify source accounts that aren't linked to an authoritative identity in Identity Security Cloud. \nYou can use this campaign type to view all the uncorrelated accounts for a source and certify them. \n\nFor more information about search-based campaigns, refer to [Starting a Campaign from Search](https://documentation.sailpoint.com/saas/help/certs/starting_search_campaign.html).\n\nOnce you have generated your campaign, it becomes available for preview. \nAn administrator can review the campaign and make changes, or if it's ready and accurate, activate it. \n\nOnce the campaign is active, organization administrators or certification administrators can designate other Identity Security Cloud users as certification reviewers. \nThose reviewers can view any of the certifications they either need to review (active) or have already reviewed (completed).\n\nWhen a certification campaign is in progress, certification reviewers see the listed active certifications whose involved identities they can review. \nReviewers can then make decisions to grant or revoke access, as well as reassign the certification to another reviewer. If the reviewer chooses this option, they must provide a reason for reassignment in the form of a comment.\n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must \"Sign Off\" to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items. \n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase. \nIn the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed. \n\nThe end of a certification campaign is determined by its deadline, its completion status, or by an administrator's decision. \n\nFor more information about certifications and certification campaigns, refer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html).\n", "item": [ { - "id": "9f920f76-5ff1-426f-ab82-6943deb773c4", + "id": "25cca6c6-2453-4611-a783-fe92c42d09d7", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -43750,7 +43750,7 @@ }, "response": [ { - "id": "82bd729e-c8bc-43f4-8405-74b1a2287d3f", + "id": "aab626af-6052-41e4-a2f0-200210780ff7", "name": "Slim Campaign", "originalRequest": { "url": { @@ -43848,7 +43848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0a5b5f2-76f5-4647-b3b4-99894ef30225", + "id": "c991e949-f218-43b4-a3f2-a8c865d5aa7c", "name": "Full Campaign", "originalRequest": { "url": { @@ -43946,7 +43946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "685de619-7e22-436a-a298-c1e7489643aa", + "id": "acc593ce-f307-4542-b5df-a3e312279016", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44044,7 +44044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61308fe4-9dc1-4bb9-886b-d06145052a1c", + "id": "d07ed782-81f2-4ea6-b88b-a8718e8af0d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44142,7 +44142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1f7dbba-8ce2-4b4d-87b0-021ceb09e85e", + "id": "c41ef556-ea7a-498f-a7d9-daaa46f09581", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44240,7 +44240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ccdf76-690a-44d9-bb89-a389e0873d8c", + "id": "f6609e9e-98fb-4f83-95ec-01dab843b48b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44338,7 +44338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f4a201-0948-44f5-b055-bec4030d92ea", + "id": "83a9ed22-6a4e-4ed1-95ca-5c4625f22fe3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44442,7 +44442,7 @@ } }, { - "id": "74dd15e6-3d06-4e30-b3d8-7f264be56ee1", + "id": "662a3587-8842-48a6-a0b6-483555e5cac9", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -44484,7 +44484,7 @@ }, "response": [ { - "id": "902db900-a801-4d6c-b209-baf2e124a0f6", + "id": "b46b9784-b822-4bd0-b55f-afc35f813aee", "name": "Manager", "originalRequest": { "url": { @@ -44540,7 +44540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f97321-2bea-470d-9827-314eb7f20c38", + "id": "9a56d449-bff7-4f7c-bc61-31e4cbd8e516", "name": "Search", "originalRequest": { "url": { @@ -44596,7 +44596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f26b23c-c064-4ce1-aac3-4f9a9899c794", + "id": "3b717b2d-259a-44cc-85ab-bbec80dfbc34", "name": "Source Owner", "originalRequest": { "url": { @@ -44652,7 +44652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7426707b-0ca6-4442-a767-37af65b3964e", + "id": "a0519d38-14e3-40bb-9c52-f3389564f784", "name": "Role Composition", "originalRequest": { "url": { @@ -44708,7 +44708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2a18e74-3381-4f32-bcf6-b6f0cf4d710e", + "id": "9a95827c-5c72-4388-9493-813d8e904755", "name": "Manager", "originalRequest": { "url": { @@ -44764,7 +44764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72b8eaf3-f52f-492c-951b-245865ad9fb3", + "id": "f9a59c9a-0153-4107-8f3a-9a221a3b1e85", "name": "Search", "originalRequest": { "url": { @@ -44820,7 +44820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d07d087-49ed-4f44-b301-59b7a76cb8ae", + "id": "f177b3d4-8cbb-47af-a23e-49016689ec09", "name": "Source Owner", "originalRequest": { "url": { @@ -44876,7 +44876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3b15483-a837-4ffc-b94a-a1a0f8e9ce4e", + "id": "9c9aec13-9c7d-4d55-9783-13c1c987fab5", "name": "Role Composition", "originalRequest": { "url": { @@ -44932,7 +44932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5322b049-e328-44b5-b884-3d2b792a54eb", + "id": "f60cbd31-292f-40ae-a854-40d0a83f0014", "name": "Machine Account", "originalRequest": { "url": { @@ -44988,7 +44988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a827da51-0034-4f7d-aab6-b10cce92e55f", + "id": "2e6e2de8-7b7a-4d90-9621-39609e62930b", "name": "Manager", "originalRequest": { "url": { @@ -45044,7 +45044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac812d15-73c4-4292-9833-9cb8d641fc01", + "id": "9760220a-7010-4802-ace0-2e75611ebf20", "name": "Search", "originalRequest": { "url": { @@ -45100,7 +45100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c9f6386-5b6b-4db8-9571-917654f4596e", + "id": "5c28b9c0-a68a-48b9-ac9e-5fe363491b0e", "name": "Source Owner", "originalRequest": { "url": { @@ -45156,7 +45156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6eeb657-1e9c-44e1-9a80-167d7f89f4f7", + "id": "e1824b25-f6cb-427f-9027-35aaa2403f76", "name": "Role Composition", "originalRequest": { "url": { @@ -45212,7 +45212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39eac583-0869-48a9-9768-8b9f29bdcce8", + "id": "28283fb1-7fe5-412d-9deb-61068a968e6f", "name": "Machine Account", "originalRequest": { "url": { @@ -45268,7 +45268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efdd58dc-092e-4633-9dbf-e792f1424b8d", + "id": "059ea309-0128-418a-b0c7-d7b13a94a28c", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -45324,7 +45324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32bd9377-0eea-4a23-abc5-107a9dd53aae", + "id": "fcd654f2-fbd7-4d46-b490-9c23bf6e64de", "name": "Search", "originalRequest": { "url": { @@ -45380,7 +45380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6ae5c5f-2d0b-4fb1-8d80-9a6969afefdd", + "id": "f941f69c-c665-443d-8011-c362a1e1c74e", "name": "Source Owner", "originalRequest": { "url": { @@ -45436,7 +45436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5eadb2a0-0a04-4b43-9592-baefa5820e33", + "id": "78655717-77bb-4aad-a013-4faf0c810dc6", "name": "Role Composition", "originalRequest": { "url": { @@ -45492,7 +45492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424a24b4-1c36-4fec-9b2e-771c26545d6a", + "id": "94f26df0-cf31-476c-bc31-aba2036fe90b", "name": "Machine Account", "originalRequest": { "url": { @@ -45548,7 +45548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3adf54aa-c58a-49d4-994b-9acf5268734e", + "id": "b691311c-5872-44f4-ac31-d5fb590df630", "name": "Manager", "originalRequest": { "url": { @@ -45604,7 +45604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d5e774e-9000-42fe-a8af-0276c4499074", + "id": "cdf0ac44-7d02-45e6-939c-6e79a9895777", "name": "Search", "originalRequest": { "url": { @@ -45660,7 +45660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5cea9d0-111d-4848-98a4-8fc8e7d13bf0", + "id": "e17aa576-7eab-45ec-922f-47f843122705", "name": "Source Owner", "originalRequest": { "url": { @@ -45716,7 +45716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c6a38c5-4e97-4100-baf2-881102256df8", + "id": "79955907-8d47-46dd-82fd-5b735fd6380c", "name": "Role Composition", "originalRequest": { "url": { @@ -45772,7 +45772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41b7b45c-054d-46ba-a30d-d03d9ef6e413", + "id": "7c543d36-d8da-4905-b318-49a619a540e9", "name": "Machine Account", "originalRequest": { "url": { @@ -45828,7 +45828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ec4efd1-95cb-445a-929d-8bf0ae119afd", + "id": "66a55c89-2d5a-41ca-8ad9-0e4c1bf7cc07", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -45884,7 +45884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31226347-40f1-477c-b846-81ae4b4d02a9", + "id": "d5b92de3-dba5-4ab9-b53d-2f19626c025f", "name": "Search", "originalRequest": { "url": { @@ -45940,7 +45940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f056545a-c565-416b-8264-ff46ab2bf82b", + "id": "81f42d74-4bfe-4520-ab26-5118c2067904", "name": "Source Owner", "originalRequest": { "url": { @@ -45996,7 +45996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35349e02-529d-44bb-99b1-ec0a31b1af85", + "id": "caf4b7e6-a6a7-4406-b634-34f9e2a05a75", "name": "Role Composition", "originalRequest": { "url": { @@ -46052,7 +46052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1ca11b1-29e5-44ab-96d4-cca84057d889", + "id": "acf9983d-66fb-49ec-a09d-aa61c32d9d45", "name": "Machine Account", "originalRequest": { "url": { @@ -46114,7 +46114,7 @@ } }, { - "id": "980640b6-b50b-4ff6-a1e2-4c444d52634e", + "id": "a581dc67-468e-43bb-8976-10d8295e6fa2", "name": "Get Campaign", "request": { "name": "Get Campaign", @@ -46165,7 +46165,7 @@ }, "response": [ { - "id": "af4f2c10-9c7d-44c0-88fb-f55047ff01cd", + "id": "f838005e-bfde-48d2-8026-44a43a2cce30", "name": "Manager", "originalRequest": { "url": { @@ -46219,7 +46219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92844d62-5e82-429d-a2e6-aecb6ace0404", + "id": "1bdea28e-caca-4ec8-bd3f-b569ee41db7e", "name": "Search", "originalRequest": { "url": { @@ -46273,7 +46273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee8aec25-009a-4612-a1b3-977583051af2", + "id": "96fc614e-76fe-4b52-a261-58e80a22b274", "name": "Source Owner", "originalRequest": { "url": { @@ -46327,7 +46327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10d936fd-65d4-45d9-b7fe-935561f01a81", + "id": "15066149-7edf-4803-9463-6b04a92a0a2a", "name": "RoleComposition", "originalRequest": { "url": { @@ -46381,7 +46381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2bd7b71-f365-4d97-a0b3-34ceba510a8a", + "id": "e3d9f37d-ab72-4d8c-9c59-1d5e54421a22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46435,7 +46435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2229ff-d584-4c39-b85e-1b5a01361849", + "id": "6fffc516-bc86-4d3a-b376-cde871209ca1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46489,7 +46489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f9af198-5cd8-4812-a049-366a2232c199", + "id": "5b63ed76-b1fd-4d50-bc37-e2e1386e1d93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46543,7 +46543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86b6338c-8a89-4ac2-852d-4056218aec88", + "id": "0aa2ce2d-71cc-49af-b88e-b98528f8486e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46597,7 +46597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e9334e2-689d-4179-86b4-4fc14f7b07b3", + "id": "1f53a449-1ee5-4ab5-a9d2-3f88df9cfa2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46651,7 +46651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a672ae4c-3318-4d57-a734-62fea2485c76", + "id": "6d3ba247-d787-47e5-89bd-db60e7351b01", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46711,7 +46711,7 @@ } }, { - "id": "1d55c504-5328-46a0-83c0-38b122b9f73a", + "id": "5effba16-c251-4154-858f-605bce782830", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -46765,7 +46765,7 @@ }, "response": [ { - "id": "6b8c420d-8f72-4168-9574-51f07f470fd5", + "id": "4f70f199-45f4-41d6-8036-cd71d7293324", "name": "Manager", "originalRequest": { "url": { @@ -46822,7 +46822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48771090-1075-41b1-8b51-c14d43a1eee0", + "id": "7b9f07e5-8114-4192-8e5d-630817b6c3d7", "name": "Search", "originalRequest": { "url": { @@ -46879,7 +46879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ec4f61d-8aa3-446c-a183-595e3afda6f0", + "id": "dc9d5b91-3a63-4cec-9be9-b526ef69192e", "name": "Source Owner", "originalRequest": { "url": { @@ -46936,7 +46936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77c9ee70-c111-43c5-9ac9-8c00dfc4a89c", + "id": "08e0bb0e-f54b-4979-8b5c-eaa2727fce3d", "name": "RoleComposition", "originalRequest": { "url": { @@ -46993,7 +46993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bfd0bf6-8d4d-4c68-befd-0b7656041e74", + "id": "43457e03-7db6-45c7-a995-1f98ad2642e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47050,7 +47050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecdb30e3-0ab8-4543-8172-70214a1d4e86", + "id": "d7f4feac-a243-4c70-917c-3880d7b90829", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47107,7 +47107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "755cab72-1171-441c-a6f7-ed6c79ece2f1", + "id": "99a4ced9-4f74-4234-89e9-6ee92de5d0b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47164,7 +47164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03aa8cc8-5490-489a-b49a-309f8fac36f9", + "id": "87d46e63-90d6-47ca-a5f8-9c57ff14372d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47221,7 +47221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b8baa31-125e-4552-8491-42ca5120f235", + "id": "4c789fee-969d-42c8-b380-6c826aa2705a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47278,7 +47278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8e3a17c-fce8-4d34-afcd-a87492ac938d", + "id": "9794e658-17b6-435f-8f78-60dc371546d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47341,7 +47341,7 @@ } }, { - "id": "6f905902-f8b1-4df8-a7e3-d61359f24588", + "id": "50308e8b-6a85-48fa-9476-d261c3bbd186", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -47396,7 +47396,7 @@ }, "response": [ { - "id": "d9357856-3e89-4bab-805b-0f2c077c91d9", + "id": "ba8f150f-a8f6-4b3a-8cb9-9e810a619293", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -47454,7 +47454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf5c0019-df51-408c-b8d1-f2a082332006", + "id": "cfd8fde1-039e-4530-8748-3e9e891720a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47512,7 +47512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48d30ffd-7394-4591-990a-3bc184bc162b", + "id": "143dce2d-6eeb-4a09-861e-3f598fee90c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47570,7 +47570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d574551-d43c-4eab-967c-dfa9011bb928", + "id": "047c8de5-7303-468f-9740-c85e68a8cbb7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47628,7 +47628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0656608d-c337-405e-8fb1-a761b84bb04d", + "id": "d1f0a29d-b409-44a8-90f3-c948cba9f2e5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47686,7 +47686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72c16f1c-f207-408f-a5fa-dd5b915258b1", + "id": "ce46b739-94f0-472c-9c8d-fffad8dcf398", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47744,7 +47744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b74e793-d73f-47da-9f52-4f7ca92801fd", + "id": "46986963-7497-4137-836f-14ee656603b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47808,7 +47808,7 @@ } }, { - "id": "3cbf25ff-cf22-463a-905f-dd05b9b0d96e", + "id": "049263f7-72d7-4753-8993-3ba5690b15e8", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -47863,7 +47863,7 @@ }, "response": [ { - "id": "fdf88eff-4360-4b3d-bbe8-bfe127339742", + "id": "0d707b98-ffed-4c71-b910-ce03906eb550", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -47921,7 +47921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db49090e-35d5-4b4f-89e8-6d3a2879b13d", + "id": "8ffd3abc-439c-448d-a863-0b59205588ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47979,7 +47979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe461e07-adb9-4f02-a99b-fbce697d2d5f", + "id": "88942443-903b-4a45-87e8-4785e9bfe553", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48037,7 +48037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87b44b9b-b298-4ed3-a9f9-5d8a26a4bac3", + "id": "3bba899e-755f-41ed-9154-7faa562a6d17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48095,7 +48095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f93169a-ac61-4114-9911-a5e58c6a34b5", + "id": "56c9a60f-a725-404f-afd8-bbd1af2abd1a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48153,7 +48153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1e661c0-5838-4002-b51e-4e095510ae41", + "id": "b8e5f002-857f-4a21-a139-eb1f72a7abb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48211,7 +48211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8004cc62-59d7-43f4-a4aa-8bb5fde79e27", + "id": "981bb40a-ac21-48e1-ad25-8c76026e7405", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48275,7 +48275,7 @@ } }, { - "id": "12a8d1aa-987a-4a90-8ff1-d8599c300f1f", + "id": "3bee14cc-307d-4750-868d-dfb97cbe9d23", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -48330,7 +48330,7 @@ }, "response": [ { - "id": "4e9a834e-4fc1-454e-9f2b-c09da82fcd9c", + "id": "2b039c23-a838-482a-b8ec-999ce78371a0", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -48388,7 +48388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fcdc151-14cb-40ff-a4e7-29edd7749a07", + "id": "414cc671-9549-46da-9b99-5d4f2d54d065", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48446,7 +48446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e58f90ad-257b-40d0-ab12-77acd08c008f", + "id": "2010a340-26e0-4313-8a4b-3250a00c72c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48504,7 +48504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "674c4040-99fb-42bd-a127-8ee57799e7d8", + "id": "b6d6a3ce-834f-4e0b-ae18-c3426e48c9f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48562,7 +48562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3de6a90e-fbd2-416b-bf84-4589529fd0c0", + "id": "053c9bde-909f-4d19-98fa-78c94a603a7b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48620,7 +48620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49481939-a621-450a-9da8-01b094387210", + "id": "f2c93a1b-c79f-4bfe-a500-d8ed75e93829", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48678,7 +48678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffaf2344-bd5f-4a93-a433-f0ccc8bc4702", + "id": "b49cfb23-ab92-4295-9ce1-7d3b5086739a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48742,7 +48742,7 @@ } }, { - "id": "b38d3c4b-e9e3-40ad-a069-a5c7e123c022", + "id": "419f6c20-7841-41b8-8ea1-f6a5bba5385d", "name": "Delete Campaigns", "request": { "name": "Delete Campaigns", @@ -48785,7 +48785,7 @@ }, "response": [ { - "id": "a6fa85bd-7d6a-466b-b2f7-d30e3da65b35", + "id": "97f4b5d0-3aa4-4cde-8ab0-6ed646785cbb", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -48842,7 +48842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a6b7180-abb9-4627-a692-36c9ea341600", + "id": "33731f07-fc67-4462-b7d3-1c46ad7e7db2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48899,7 +48899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebc5fae6-f6cf-49eb-8591-7c86a97eeee7", + "id": "a84409ea-c584-4001-8348-e2145d8c0036", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48956,7 +48956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92551a8a-c32f-4d64-9812-abde93548a86", + "id": "895431f0-42ac-41c2-af5f-f00b4288410c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49013,7 +49013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b164a33a-d4e5-4bb1-bf79-e0730357ccb4", + "id": "6d98c181-b9d9-4cf4-a08d-d25f1abfba90", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49070,7 +49070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c0e3538-a693-42b6-80e5-7813efaa975c", + "id": "8e6b5d28-8704-438f-9052-029ea43ab157", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49127,7 +49127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63225dfb-228e-46f2-bb22-e8f4532e9fdd", + "id": "f549f287-0a02-478d-93a2-da514b719607", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49190,7 +49190,7 @@ } }, { - "id": "ab170965-0b82-4efe-b5bf-63b3224df4c7", + "id": "8f864540-86dc-4ae2-8230-65428ba0806e", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -49232,7 +49232,7 @@ }, "response": [ { - "id": "a8211052-0f7e-430c-8613-db37a3c55e33", + "id": "d463094f-7cfa-4f61-8a8e-eee66df4b534", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -49277,7 +49277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1b45825-f548-465d-9ea3-183333c6b2e7", + "id": "aa92f1cf-4435-4f77-a220-7b5ac911de04", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49322,7 +49322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42026196-0432-4ad9-b7e7-1aeaa3188e91", + "id": "1008caf5-67ca-4d3c-ac3d-4d85e925984f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49367,7 +49367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cee785ec-4591-41c1-95b3-9784930b07ac", + "id": "be18bb50-1c72-4b31-8866-aee9c1204b41", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49412,7 +49412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e2de47d-e573-4717-af43-c2fdbd9505ef", + "id": "da80bd3c-c5dc-4879-8e4b-21045f375c8e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49457,7 +49457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0759b498-67a6-43d2-b908-a60ef03f48bd", + "id": "f9f8e4f6-d1f1-4b34-9bed-dd726b20c777", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49502,7 +49502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10f33ef-a95d-482b-aa9b-a3872c109c55", + "id": "2d9344fa-40ed-4917-ac43-a48458ded342", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49553,7 +49553,7 @@ } }, { - "id": "b869958d-3c2b-4e3e-9048-b26a24763107", + "id": "1ba49fe2-4197-427a-a2cf-021832ed6e5a", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -49595,7 +49595,7 @@ }, "response": [ { - "id": "b0f32dd0-d6bd-4bc7-8ea7-6df3c2a2af0e", + "id": "a5a170d2-b891-4489-8f5e-a071613ff813", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -49640,7 +49640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda59a6e-a331-4b5a-91dc-5c9613e65659", + "id": "3d508b01-8b12-439a-bcca-6afe57684b8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49685,7 +49685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9b608a-98d2-4633-955a-a12eaeed6f69", + "id": "39fe272c-255c-4ad0-934d-e8dcd2d3d8e6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49730,7 +49730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daadea8e-63c1-42a9-83ee-aa4dc542c2c9", + "id": "361dd58f-d520-47b1-9a45-423378cd53dc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49775,7 +49775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa1d747b-d1f3-4a3e-91b7-6f9a23c63bba", + "id": "4339c882-505f-422a-abce-d865905b4619", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49820,7 +49820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d144ed75-bd98-4236-8e7a-55d39ad87844", + "id": "0fade4cd-4a6e-4514-aba6-b36a20f1c352", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49865,7 +49865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc0d7796-6a96-43fd-80c6-bb8d30579f04", + "id": "83c346d2-46ba-4809-86b6-5bdfd1fd8c86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49916,7 +49916,7 @@ } }, { - "id": "f28a392a-c7f8-4a8c-aae0-cf9b8e5c03b4", + "id": "db15ef48-1dc5-4795-a429-36410db643bb", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -49969,7 +49969,7 @@ }, "response": [ { - "id": "2874299b-7281-4fdc-9f6a-90515e299832", + "id": "67973428-eaa8-4942-8dee-f22064a3ae59", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -50015,7 +50015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6175c7d2-d249-477d-a901-2fb904d385e6", + "id": "738a273a-32d0-4f55-b63e-102549a8e075", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50061,7 +50061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91b798f6-64b0-409c-9238-515cbb73406e", + "id": "781e1d8c-5764-4969-87d3-10e6e8a86376", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50107,7 +50107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f3906fb-2fbe-4b5a-9a95-0ebd7633dd7a", + "id": "1b2a15c8-ba91-4e93-9eec-0ce02e71d26a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50153,7 +50153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36464634-cea0-47ab-92af-6e4908f66e28", + "id": "723829c0-4ea3-4c2e-894b-a052f5dca6cc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50199,7 +50199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef172f7a-23af-4b56-afa6-88b1cbf9f719", + "id": "8b39892d-280e-48ef-bfb8-7816d5d10535", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50245,7 +50245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63c86488-bd52-44e5-a273-9452abd7b410", + "id": "92725638-2612-4673-81e8-a7b2dd02f879", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50297,7 +50297,7 @@ } }, { - "id": "c992c7e1-9a69-4203-b6e1-9338cfaba933", + "id": "19e2f558-9f0d-4abd-a270-02727ba51a78", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -50327,7 +50327,7 @@ }, "response": [ { - "id": "03c46eb1-dbd3-4cba-94db-253e3c1a1adc", + "id": "d56e0601-9916-4b61-867f-a7dbec184b7e", "name": "Campaign report configuration.", "originalRequest": { "url": { @@ -50371,7 +50371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220aca91-f953-439d-8135-7cb44a45ac44", + "id": "b73fe265-6577-4502-91b2-b97acd099b05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50415,7 +50415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8972b5-7be5-48a3-b751-513cad5064ae", + "id": "f16bbd58-9c13-45d8-898c-d169458576c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50459,7 +50459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9904f94c-ba81-4b3e-9ca6-b02134a84db9", + "id": "e0bb4ccc-224b-4499-98c0-a29d137920e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50503,7 +50503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aff4b537-abdb-4324-98ef-a3ded86c2167", + "id": "5d46172f-d5b2-4150-9bb8-901bafc85c59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50547,7 +50547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdc54fec-aba6-40de-8468-57d80023b6a5", + "id": "9ed4c0b7-5d4c-4cd9-badb-a7879c8189f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50597,7 +50597,7 @@ } }, { - "id": "5cdb521e-c05f-416c-b0fb-0918a53154e9", + "id": "c5b289ec-866a-494c-89ec-c0531333c466", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -50640,7 +50640,7 @@ }, "response": [ { - "id": "e5d23d1d-a2c4-4452-94e0-580a5e9d8304", + "id": "f193acd0-643b-41ca-be34-d8a88517e49b", "name": "The persisted campaign report configuration.", "originalRequest": { "url": { @@ -50697,7 +50697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e95391b3-62c1-4b1f-a541-b361f697e367", + "id": "d7ca123b-4ee8-4bf4-a03d-aa5e59296543", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50754,7 +50754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d54cf776-81c7-4ba7-97f6-ebff2c423417", + "id": "6e508dd5-e436-4e2f-9ca0-0c8bc09c4ce1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50811,7 +50811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "310b1c5c-90a7-4d20-9c5c-19d048f26da1", + "id": "b5999595-578f-45d3-820a-76e4b67cb4f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50868,7 +50868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183f368f-b80f-47a2-870c-63668bfa8d8d", + "id": "72f08f50-4196-432c-9d59-eb25d7b7a182", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50925,7 +50925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aff1c03e-c9e7-4b44-9619-45dcae15a44b", + "id": "d0b7cb88-c8ea-4900-a513-8aa29afc1ebc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50988,7 +50988,7 @@ } }, { - "id": "34ca3eea-4e29-46c3-949a-9c5df8240c76", + "id": "28dafc16-9bc6-485e-95e7-c6f95a2c5ed3", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -51030,7 +51030,7 @@ }, "response": [ { - "id": "b214ad3d-59d5-4411-a6c0-69db143c40fb", + "id": "9042fed0-fd79-43f2-b597-e099f46711d7", "name": "Manager", "originalRequest": { "url": { @@ -51086,7 +51086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da5913ab-d66f-4faf-973e-cbad254fa74b", + "id": "de792ded-ab25-4e70-ada2-423ca0bf3651", "name": "Search", "originalRequest": { "url": { @@ -51142,7 +51142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ef37733-ce10-43e0-b795-b454289868be", + "id": "352e783f-4ed9-4290-b0ac-7567ab64d90f", "name": "Source Owner", "originalRequest": { "url": { @@ -51198,7 +51198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cdaaa81-1f28-4f01-90ef-4ecbc0248cf4", + "id": "7196f5cc-f4e1-475d-81d0-5d41900c41e0", "name": "RoleComposition", "originalRequest": { "url": { @@ -51254,7 +51254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dfb492b-50ff-43b3-84b3-16b6ccde78ab", + "id": "c802efb4-7b6c-4dc9-aada-0ec35645e984", "name": "Manager", "originalRequest": { "url": { @@ -51310,7 +51310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ffdd2f7-e9d1-46a2-9845-333c39af842f", + "id": "1c2abf2c-e2bd-4f04-b70a-f37b565ab866", "name": "Search", "originalRequest": { "url": { @@ -51366,7 +51366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "caf75473-1c95-4d9b-af47-7b485d99923d", + "id": "ce08ac63-016c-4993-be16-b6ed0a805bcf", "name": "Source Owner", "originalRequest": { "url": { @@ -51422,7 +51422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579ffc7a-ef81-42d5-825e-74fa01737cd3", + "id": "89f7239d-c0b8-4ad6-837a-5c36c591840e", "name": "RoleComposition", "originalRequest": { "url": { @@ -51478,7 +51478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9b0923-edf2-49cf-a3d1-3e91c06032c5", + "id": "720949df-fb20-4304-8c5d-488347cc8d2e", "name": "Manager", "originalRequest": { "url": { @@ -51534,7 +51534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79916f56-8034-4162-ae2e-a8950923e075", + "id": "9a8f20ad-23f4-4a56-a574-b67510c0421c", "name": "Search", "originalRequest": { "url": { @@ -51590,7 +51590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01a1a2aa-9ab9-47e0-820f-18688b068470", + "id": "b4895e7f-2384-49fe-8dee-a42e54262aa4", "name": "Source Owner", "originalRequest": { "url": { @@ -51646,7 +51646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bf3a513-eca0-4f3a-b628-e030747bdabe", + "id": "f764a546-b6d8-4e56-82fc-dc3bb39180d8", "name": "RoleComposition", "originalRequest": { "url": { @@ -51702,7 +51702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e4b7223-03c3-42aa-9117-7857136433c1", + "id": "f65b593b-0685-440b-8d94-33dd683127cf", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -51758,7 +51758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2fb6981-6b88-4963-ae0b-64516ebf574b", + "id": "e04bf3d0-945d-4850-8d3c-644c9142430f", "name": "Search", "originalRequest": { "url": { @@ -51814,7 +51814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0041643-eb8b-464e-aca0-4f7efc55374c", + "id": "aff4d98c-335f-4e92-be63-3908f9164f05", "name": "Source Owner", "originalRequest": { "url": { @@ -51870,7 +51870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ada82b7-0c15-4494-8658-e59fa2db381e", + "id": "2c80f1b6-1e3b-4d1a-b515-44161842d4a9", "name": "RoleComposition", "originalRequest": { "url": { @@ -51926,7 +51926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7684e06c-aab1-4860-b485-d0501ea08726", + "id": "8b36fb04-cd91-4585-a73e-751c5880cb35", "name": "Manager", "originalRequest": { "url": { @@ -51982,7 +51982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bac530d-1931-46d9-9e9b-1a9d1919f260", + "id": "c082ac1e-92cb-4383-a687-6b9964eba9b7", "name": "Search", "originalRequest": { "url": { @@ -52038,7 +52038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "867831cf-f1c5-41eb-a755-31773abbd7fe", + "id": "64544e38-611a-4b42-8b43-4a3342117030", "name": "Source Owner", "originalRequest": { "url": { @@ -52094,7 +52094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa60a111-61a4-4fdc-b8f4-d8ce71d52fde", + "id": "c8df6004-f11d-4cef-9be8-72fa9559a7ea", "name": "RoleComposition", "originalRequest": { "url": { @@ -52150,7 +52150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4725fb47-06fd-4bd6-a35c-123195ef6b63", + "id": "68615b28-b8c2-43aa-94f0-64208f1eec70", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -52206,7 +52206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ddc7b2-f819-4293-840e-556f534fbb7c", + "id": "8685ee8b-aec5-416d-a88d-ee54ea1ca26c", "name": "Search", "originalRequest": { "url": { @@ -52262,7 +52262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5764d16a-c02a-49bd-9f9a-aa64d1ff536d", + "id": "06324ff1-93bb-449d-869f-d6cc19d373e8", "name": "Source Owner", "originalRequest": { "url": { @@ -52318,7 +52318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e704abe1-8102-476e-be60-04109d92cc84", + "id": "cba39c94-4e2b-4fc1-a392-06b8e35a00bf", "name": "RoleComposition", "originalRequest": { "url": { @@ -52380,7 +52380,7 @@ } }, { - "id": "6a5fa6f2-8e3c-486f-8cf1-8ea9ec4a0f53", + "id": "84a765c3-837e-4a06-a669-d95ef9d90fbf", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -52455,7 +52455,7 @@ }, "response": [ { - "id": "bc5d5cb8-73ac-42b3-b204-820dbdd1cac8", + "id": "de43f0c8-6c84-4e62-8dcf-fbfe4bd77abd", "name": "List of campaign template objects.", "originalRequest": { "url": { @@ -52544,7 +52544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8015df6e-688f-4d14-8eee-cc7696ca64fa", + "id": "3eb9b3bd-d160-4edc-a1f5-86452f971fed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52633,7 +52633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78d330cb-454e-4f38-8406-74e639e79126", + "id": "f0a1d980-2798-46f0-bb32-eaa82f038c04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52722,7 +52722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0b2fae1-81ac-4ec5-9b92-f87d43ec7181", + "id": "c053c196-600e-49b7-b7c1-6066a13f334a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52811,7 +52811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4179d17-77cf-4c38-b556-2221419f61a6", + "id": "f76bdf34-ab0b-48ea-bcef-f722d1bb0027", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52900,7 +52900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d64add83-0de6-4a0f-af4b-082817e5ef65", + "id": "df1c7fb9-3241-42f6-8073-72cda8292166", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52995,7 +52995,7 @@ } }, { - "id": "8bf8068e-5fc6-4193-8d72-57f38572154e", + "id": "a1c959f2-5d53-485c-b5b9-b640743ad03e", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -53049,7 +53049,7 @@ }, "response": [ { - "id": "737a1d38-23a8-4299-ad93-73d956f3e1ce", + "id": "30b469c2-bb27-42f6-a289-7111f512e75f", "name": "Manager", "originalRequest": { "url": { @@ -53106,7 +53106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e77da256-0b89-4213-8ee5-e4eb0f892952", + "id": "4783d33e-f8fe-4cc1-84dd-5b62665933e5", "name": "Search", "originalRequest": { "url": { @@ -53163,7 +53163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3ab949c-afb9-4434-85f0-4ea656fcf4ef", + "id": "cedcb94f-11d7-4abf-9f03-ff1e485f9554", "name": "Source Owner", "originalRequest": { "url": { @@ -53220,7 +53220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d690a597-5e92-4014-991f-a75e47521921", + "id": "2e9efdce-adb5-4e81-9dbd-9a44aef97f6c", "name": "RoleComposition", "originalRequest": { "url": { @@ -53277,7 +53277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81961ac1-0ea3-4400-b18a-8ed1f0ce4648", + "id": "f534206c-41b3-4182-a219-e56f4ce87eda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53334,7 +53334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9abfba96-256b-4987-8faa-0744bf68f718", + "id": "b6866853-54f0-46cb-8e3e-77d4322011df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53391,7 +53391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "601b3cd0-9d04-4b82-b701-e03a06b82820", + "id": "1e2ba802-4da5-4ccf-a237-10113a72df88", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53448,7 +53448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "178f87e4-9b59-42db-a25f-f0ad9c61fad6", + "id": "53a8ea7d-488b-483d-ae32-74f32cedfa53", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53505,7 +53505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e7cd592-9024-4725-8288-9be66000830c", + "id": "02a500b7-2faf-4163-9665-900225eac322", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53562,7 +53562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b4385da-363a-4260-8cc7-30c008ae08c2", + "id": "6fe6f14d-4967-4c46-a86e-fe2caf18a038", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53625,7 +53625,7 @@ } }, { - "id": "de986d01-3458-4b0f-bd75-2b683ead3b1d", + "id": "c880989f-6404-4538-b407-0d660d77e1d6", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -53666,7 +53666,7 @@ }, "response": [ { - "id": "2aafeff2-9ea2-4bdb-8d11-0e5c1577cb48", + "id": "4bd44fd1-2456-4252-b84a-db9e07a6714f", "name": "Manager", "originalRequest": { "url": { @@ -53710,7 +53710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f30fa03-7bca-44ee-adb7-0d79071682d4", + "id": "eb3e7ef5-88c7-42fa-b8e6-5b742ad55af0", "name": "Search", "originalRequest": { "url": { @@ -53754,7 +53754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fde63c1f-78e1-4559-b136-25c65be1f73f", + "id": "5ded7e54-b517-4e07-9f9d-70040a685b11", "name": "Source Owner", "originalRequest": { "url": { @@ -53798,7 +53798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "400a07ac-0769-4b6e-a516-3f1af63a139c", + "id": "daca8508-5d04-4452-9806-b50e983d617c", "name": "RoleComposition", "originalRequest": { "url": { @@ -53842,7 +53842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98fb4ce3-d125-4445-b011-bcbe5dad567e", + "id": "2d1d9974-992c-4f91-8777-2240aefc40d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53886,7 +53886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92f99a2f-e770-4401-ae88-4171dee371d3", + "id": "98896b23-d094-4187-8194-190b7021ac73", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53930,7 +53930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03b3ba56-3885-41e3-aded-b1622d7b1923", + "id": "15bf67f2-fb11-474d-a5ff-56b583d1df23", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53974,7 +53974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d123417b-9458-48c7-814d-c2a83d5043fb", + "id": "11b0c765-cdec-40b2-895d-4003d8792264", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54018,7 +54018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3333c60-bf93-4683-a0af-df6af31317df", + "id": "41f812a2-cade-4970-a1b8-4362efdab453", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54062,7 +54062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ed4b81-1d8c-4ade-a99d-b1ed8a6a7dfc", + "id": "b826b9a2-fb49-470d-bf78-816dd2e02439", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54112,7 +54112,7 @@ } }, { - "id": "c63230b5-8352-4398-864d-2593c0c53b0d", + "id": "d00c8fca-cf65-45f0-b5e0-7a7ca5954c33", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -54153,7 +54153,7 @@ }, "response": [ { - "id": "d3e620f4-75f5-47c2-96a8-6127c6b71ce2", + "id": "be37d33b-fba2-4ca9-a7b7-da7afb00c051", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -54187,7 +54187,7 @@ "_postman_previewlanguage": "text" }, { - "id": "18992aa5-4223-49b1-b7bf-a3bbc6a2c634", + "id": "bdbbe11d-0de3-4d08-8828-96bd757a4492", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54231,7 +54231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05531030-aa4d-4204-8536-802360fa1f41", + "id": "dbc98b35-4229-48b6-a9d5-14efc18ee6a0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54275,7 +54275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5251bd6-c9f6-4265-a3b5-de1fbbdaa3dc", + "id": "69a292ff-0529-43d6-bfec-1bc776443ee0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54319,7 +54319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f06734-c58d-4184-ae77-243cb947ba86", + "id": "4750ce7c-cd0b-449a-bb06-b4bf60ff1031", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54363,7 +54363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e8b0d19-9d67-416e-8158-e534795a8899", + "id": "ecb2cfd4-8f10-43ab-9eb0-b52695103d69", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54407,7 +54407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db0b3ada-fd77-482d-85b4-a62246fb7d59", + "id": "acf3704d-9b8b-49c0-be84-f68fce350996", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54457,7 +54457,7 @@ } }, { - "id": "e158a0c2-e1ef-4f4e-9408-e9033fa42ba7", + "id": "c1b71e1a-fb06-439b-a083-b8a74888e7b9", "name": "Get Campaign Template Schedule", "request": { "name": "Get Campaign Template Schedule", @@ -54499,7 +54499,7 @@ }, "response": [ { - "id": "afe8668e-b47b-47ef-8368-ec8ad98ed773", + "id": "5cd542b3-3796-4b4c-82b6-469d4af53ca0", "name": "Current schedule for the campaign template. See the [Set Campaign Template Schedule endpoint documentation](https://developer.sailpoint.com/docs/api/v3/set-campaign-template-schedule) for more examples.", "originalRequest": { "url": { @@ -54544,7 +54544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5124f0a7-0982-4ac1-8b38-6f77d9695b2b", + "id": "54b0da67-469e-4064-bb03-0ac22ef02685", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54589,7 +54589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ba0e8e-ab83-482f-83b4-321cd719e92d", + "id": "9096e7e5-f661-4bd8-951d-7558e93f13ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54634,7 +54634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55ad5fda-f811-4bbc-982f-4d3754bc099e", + "id": "2cc71f02-f07d-4f55-9bd7-d6e238f5480d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54679,7 +54679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f13ffe9f-fc68-4228-aa3b-1032a27ed493", + "id": "e42876b3-0c75-42cf-aebc-28a25bc54632", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54724,7 +54724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fcec4b5-0a7b-45a2-be08-680646ec4a83", + "id": "cee14d54-aec8-41bc-a88d-2cbdd2885088", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54769,7 +54769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18bd4d34-bce8-442f-97d5-b3fa295c3cec", + "id": "3b2baf78-a850-411e-aaa6-083fc52ae096", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54820,7 +54820,7 @@ } }, { - "id": "317af840-92f6-4a43-b281-4e44a9ab5638", + "id": "5f1564c2-c319-47bb-a041-fc469a841d83", "name": "Set Campaign Template Schedule", "request": { "name": "Set Campaign Template Schedule", @@ -54875,7 +54875,7 @@ }, "response": [ { - "id": "e54aef8c-dcc4-4ec3-a3b7-3d45c40f4e93", + "id": "9d3e6fe8-c6b0-4519-b658-f7353b2ce788", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -54923,7 +54923,7 @@ "_postman_previewlanguage": "text" }, { - "id": "41c7697c-0971-4945-b039-e74c9e17025f", + "id": "ff08e55f-115f-4209-9a57-b7b3df512619", "name": "Monthly", "originalRequest": { "url": { @@ -54981,7 +54981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2e09fb9-f47e-4fec-965d-f0a14c3ca6c3", + "id": "9ce03c32-b61a-440e-b099-1c392baad61e", "name": "Once a year", "originalRequest": { "url": { @@ -55039,7 +55039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724e95d3-ee53-4e58-9f75-9c19ebd9dc82", + "id": "299de3ff-83d6-4296-bc56-c6812725b1ed", "name": "Quarterly", "originalRequest": { "url": { @@ -55097,7 +55097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ec6684b-d19c-415d-83a1-e3cbdc13957d", + "id": "08ab72af-0f3c-4017-ba2b-a9045902e3f7", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -55155,7 +55155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff099fa4-79e8-4865-8ff4-b0cd7596a42b", + "id": "e5c6ce47-3423-44c1-87ab-8df604b19055", "name": "On a Specific Date", "originalRequest": { "url": { @@ -55213,7 +55213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ca45b4c-4983-44f8-8a7e-0982ff093fc2", + "id": "40de3d3b-d618-4e0f-8deb-a1ddc383cd79", "name": "Monthly", "originalRequest": { "url": { @@ -55271,7 +55271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6f295e9-ca20-49d7-9a40-a97cce3f6426", + "id": "4723a810-4633-4833-b6e6-ad74816b0813", "name": "Once a year", "originalRequest": { "url": { @@ -55329,7 +55329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52002dbb-57b6-4f6e-ad7e-fc22a40e433e", + "id": "1d455cd0-6647-4611-8665-d7361cdcacc1", "name": "Quarterly", "originalRequest": { "url": { @@ -55387,7 +55387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ac3c825-d653-4d1d-86c9-2ea79090f3eb", + "id": "d359d5b6-c84b-46ea-8d74-37fec94594d5", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -55445,7 +55445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb5efc4d-b89f-4999-b035-c1eeef20849a", + "id": "3f10f2e9-6190-444e-b788-38f72f15038b", "name": "On a Specific Date", "originalRequest": { "url": { @@ -55503,7 +55503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03de8f77-74d0-45c5-b8ca-dd3014568daa", + "id": "4dc5fb0f-9674-4404-ae11-e866b1447467", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -55561,7 +55561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de65f888-8f57-4a60-8650-312ad5fd6e76", + "id": "0582a2bc-089f-42a1-b466-5defcc48a3ed", "name": "Once a year", "originalRequest": { "url": { @@ -55619,7 +55619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c157cce8-f961-4e0b-8d72-19137dda2f9b", + "id": "daf74472-745e-40bc-ac6d-c25a3b2592e3", "name": "Quarterly", "originalRequest": { "url": { @@ -55677,7 +55677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d254a04c-f151-4996-9e76-7fd69f878606", + "id": "ffcc10fb-6c30-42eb-9557-92209f0850f8", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -55735,7 +55735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d8febf7-3314-42c8-b248-103fd2884d42", + "id": "60f80e86-dfc5-44e0-b2cf-e35300726c55", "name": "On a Specific Date", "originalRequest": { "url": { @@ -55793,7 +55793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6feee74-6980-4fa2-9987-34f20d2b3c8e", + "id": "c80354f5-0300-4331-9e16-15e83bc39cd1", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -55851,7 +55851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3deb42b0-8d91-4825-bd68-3f25e27deddb", + "id": "0fbc4c3f-5b0d-4e87-b91a-ea94002b2e6a", "name": "Once a year", "originalRequest": { "url": { @@ -55909,7 +55909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77c6855f-b3c7-40f3-a5b7-1f827cc95fc6", + "id": "89c6580f-ceba-4e1a-97ed-60c90f0b1d48", "name": "Quarterly", "originalRequest": { "url": { @@ -55967,7 +55967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f5b7e92-7732-44c2-9af7-55039ec1be98", + "id": "d7d8e0bb-5acf-4bd4-800c-010a16878dee", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -56025,7 +56025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27831a30-84a3-4f75-bdf4-5d29e4cef97d", + "id": "a3c298a5-2a2d-484f-b5da-070bb51d533a", "name": "On a Specific Date", "originalRequest": { "url": { @@ -56083,7 +56083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1a9b22d-66ab-4328-a5e2-0a45a2f434fc", + "id": "d4a6e1b3-5d44-415a-9be5-7ee472ec859f", "name": "Monthly", "originalRequest": { "url": { @@ -56141,7 +56141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a89a12c0-aed1-4f11-a0fc-d2f9c28deddb", + "id": "2fca724a-f2ce-4b60-8df3-947b393f876d", "name": "Once a year", "originalRequest": { "url": { @@ -56199,7 +56199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a41dc62a-3ef1-4f8b-b078-4a488ec99aee", + "id": "26c5e8e3-17be-4077-acea-3e6456951f7e", "name": "Quarterly", "originalRequest": { "url": { @@ -56257,7 +56257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99940c68-a47c-4cf9-b7a5-c11b749655ad", + "id": "f69f1495-e404-4e03-b4bd-29347e2fb663", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -56315,7 +56315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75c2f1bd-ab09-47b6-9142-453d1ae6019f", + "id": "85f2ebfc-d3e9-4d72-8cce-6831d9e28d8d", "name": "On a Specific Date", "originalRequest": { "url": { @@ -56373,7 +56373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dfc6eb6-7c97-44b0-a15d-8508d3928489", + "id": "80ef96b4-5f31-4234-b923-5006675f8044", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -56431,7 +56431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2a5200-f441-45cd-92c7-75a878279eba", + "id": "7a2d2695-bbab-44f3-b011-3787ea6d88fd", "name": "Once a year", "originalRequest": { "url": { @@ -56489,7 +56489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e3b086-dbb4-4af5-ae14-4eb28babba0e", + "id": "4d52d01e-ac30-42e1-8306-947e89768f57", "name": "Quarterly", "originalRequest": { "url": { @@ -56547,7 +56547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aafb0775-5699-41cb-acb7-8953651ca535", + "id": "a4e82deb-b744-4c98-913a-e8d9d3fe9b4a", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -56605,7 +56605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51887af7-80bd-4add-8646-5db3863d11f2", + "id": "8a897cbb-0fd0-43e3-a4ec-fcc4609accee", "name": "On a Specific Date", "originalRequest": { "url": { @@ -56669,7 +56669,7 @@ } }, { - "id": "addb381b-d528-439d-b8c5-4a5940752b7f", + "id": "b0e678c9-7204-454d-a6a2-7bcd926039e9", "name": "Delete Campaign Template Schedule", "request": { "name": "Delete Campaign Template Schedule", @@ -56711,7 +56711,7 @@ }, "response": [ { - "id": "be708922-4452-4fdc-8516-87ba318daa35", + "id": "61328959-2bb0-4014-9d5a-3d6bebfbd68a", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -56746,7 +56746,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e8478dd4-1045-4bcb-86cd-c008d82234c1", + "id": "25b6de4c-0392-4db0-b37a-7edf07fad2ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56791,7 +56791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc679dd-82f5-4dfe-b38a-f49b5f84bffd", + "id": "09db9ee9-7002-4785-9910-72e8c8dd593f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56836,7 +56836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3531538-71a2-453b-9edf-6835cae3b26a", + "id": "fcbe31b3-cbe1-498f-8f53-ed5fab97d85e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56881,7 +56881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc997aad-89b9-48b0-8aa4-ec4a0075c79c", + "id": "013ad4fa-94a9-42a5-80ac-4605c2942793", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56926,7 +56926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ed7a997-7622-4093-a208-f3f548b8747b", + "id": "853041de-e6a1-491b-a4ee-725c11c7b84b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56971,7 +56971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9138f850-a44d-437c-b99b-292de19c525b", + "id": "f1172006-c9af-42f9-899d-8eea4611811d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57022,7 +57022,7 @@ } }, { - "id": "4293adc0-4972-4ecf-94f2-7758f933b714", + "id": "d28a10b3-232c-430a-a7e2-48d9e9d1d143", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -57064,7 +57064,7 @@ }, "response": [ { - "id": "95fc8e38-9a2c-4277-8737-cfe9edc66579", + "id": "0ff16a7f-d5aa-4e19-9c72-5f9a336578ee", "name": "This response indicates that a campaign was successfully generated from this template, and the API returns a reference to the new campaign.", "originalRequest": { "url": { @@ -57109,7 +57109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "856e8ee8-ab19-41cb-b719-538b251a951d", + "id": "931b62be-8f22-4774-aaec-1b5332e4e88f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57154,7 +57154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0f3202e-9c9b-429c-9f2d-58038c28cba9", + "id": "70d8ab0e-261d-4f10-bc66-222786f129b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57199,7 +57199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9db8737b-1112-4640-b617-6ab5249af8a8", + "id": "1e40efc3-8fc8-4f85-b2e1-5afd3a1aebc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57244,7 +57244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48bfc752-b02e-4c44-93cf-6b101bc4b930", + "id": "1ccedb0a-64a0-4339-9ec2-ba9bf1a109d0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57289,7 +57289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c41463c-b5a6-4533-9511-03a9855d7d61", + "id": "2317f2d2-e0d6-4984-8d07-3cfd20fff77f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57346,7 +57346,7 @@ "description": "Use this API to implement certification summary functionality. \nWith this functionality in place, administrators and designated certification reviewers can review summaries of identity certification campaigns and draw conclusions about the campaigns' scope, security, and effectiveness. \nImplementing certification summary functionality improves organizations' ability to review their [certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html) and helps them satisfy audit and regulatory requirements by enabling them to trace access changes and the decisions made in their review processes. \n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese certifications serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign. \n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers. \nOnce this certification has been completed, Identity Security Cloud would provision all the access the user needs, nothing more. \n\nCertification summaries provide information about identity certification campaigns such as the identities involved, the number of decisions made, and the access changed. \nFor example, an administrator or designated certification reviewer can examine the Manager Certification campaign to get an overview of how many entitlement decisions are made in that campaign as opposed to role decisions, which identities would be affected by changes to the campaign, and how those identities' access would be affected.\n", "item": [ { - "id": "8247ed56-9da0-4c16-8671-6d70c796aa9b", + "id": "58d02456-96a1-4899-acba-eb4b07d775cb", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -57398,7 +57398,7 @@ }, "response": [ { - "id": "0105d2fe-ad39-4049-aca6-2be71c279581", + "id": "a0809245-85d5-4651-85fe-a9ff2b6215b4", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -57453,7 +57453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93b4d60a-4853-47a1-bee4-f627ff50875d", + "id": "9f87aef0-f924-4b62-acb1-18be202b6ce9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57508,7 +57508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f43ada6d-117b-4b55-b9e2-a154c599a68f", + "id": "346421e7-739a-45d7-bdb4-51c23993899f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57563,7 +57563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4705256-0e2e-4957-8506-d9e878063135", + "id": "3afa8fdf-03a1-46f5-9b41-be8844804a82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57618,7 +57618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03a35333-60ed-476b-88b9-ada7f020dcac", + "id": "df1eaff7-77dc-476a-a78e-606ed49a56bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57673,7 +57673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3e4b3c2-e821-480e-9a14-e79bcff7bb57", + "id": "c6e1a0a0-0422-4bae-aff5-ea114eb849e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57728,7 +57728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "826efea0-9e04-4350-8be9-1370f687d06f", + "id": "695f8421-8f4e-4dfa-abd8-f01cd1b89c85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57789,7 +57789,7 @@ } }, { - "id": "74e6bbee-dd78-4944-86bf-d65fb4996890", + "id": "bf9c7120-cd7d-4291-9abb-15595f9b53a6", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -57877,7 +57877,7 @@ }, "response": [ { - "id": "6140d189-ef1d-4f8f-b1f3-9028ab884fc3", + "id": "158724a7-bd81-4843-9ddb-d287b83f97fd", "name": "List of identity summaries", "originalRequest": { "url": { @@ -57968,7 +57968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef9e9d7b-919f-4348-9ff8-932e86ba747b", + "id": "440932c2-c7e1-4ea5-bb8d-fc4dfc2d6c9e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58059,7 +58059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bda744c5-bf3c-4268-b7d6-05be771c0ad9", + "id": "41f9da0c-7362-4661-81b8-329576637d0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58150,7 +58150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757a1336-c43c-4e7f-8191-ed881972f459", + "id": "84f966e3-e7ed-42f0-a752-969f26745398", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58241,7 +58241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee2f83fd-d3f4-4f93-82a7-6363e988e96e", + "id": "e6abf700-1f88-4438-b32c-0b60812c0a53", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58332,7 +58332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be68cd0b-99f0-42c1-ae16-81309f820646", + "id": "1ff978bc-bbc4-48b4-8f95-1d049922fe50", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58423,7 +58423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eaebcad-96f9-4597-97a1-4f1f2fd48569", + "id": "d0f59f9b-11ea-4c39-90de-7a6010250a00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58520,7 +58520,7 @@ } }, { - "id": "0e79cade-2229-4f04-bc8b-479f61a19de1", + "id": "0dd53efb-2cc3-4776-b9e4-6e2fa5a55c47", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -58619,7 +58619,7 @@ }, "response": [ { - "id": "688d1250-a8ff-4888-ba1e-733e818c028a", + "id": "57a4df86-f535-4de0-a381-459755bc2068", "name": "List of access summaries", "originalRequest": { "url": { @@ -58711,7 +58711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b16fd0e-b96d-4d02-a769-a67f193e809e", + "id": "34fe7381-02ec-4519-806c-cced7369bf6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58803,7 +58803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d1acc61-b3a8-4c8e-ba3b-027fb0ac922a", + "id": "37d2f0a6-f020-4399-b4ca-ea5fcde99e35", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58895,7 +58895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53d62b6c-9fc7-46f4-8df3-f7a4d9d51a84", + "id": "8676c4c1-27f1-4d9c-a6d1-5f408f992f0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58987,7 +58987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af5639fa-08c4-4a07-a7d1-d621fae8995c", + "id": "b4ef0fb6-b08c-49de-ab3f-554fabd01c6b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59079,7 +59079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3e8cbdb-ad6c-4637-85f3-038d6205d7eb", + "id": "f3d4b798-328f-4c3f-bf87-5ff1914a0161", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59171,7 +59171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c18a73d9-2eae-4770-a933-6f9d881662d2", + "id": "f24a52de-c4d8-40ce-bb8c-6c6e96210f2b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59269,7 +59269,7 @@ } }, { - "id": "cec1c791-6649-4c84-9510-a2f214fa20da", + "id": "6ca933f4-6d31-4fd8-883b-9020cb12e573", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -59322,7 +59322,7 @@ }, "response": [ { - "id": "fbd47984-5934-462a-9a3b-bd42ae72e3c6", + "id": "5e7f89bc-5705-4b54-aee9-182a4516f124", "name": "An identity summary", "originalRequest": { "url": { @@ -59368,7 +59368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ede3009-227b-416b-a3b8-1dc5f243ccdc", + "id": "5f665ebc-f0a9-417b-b84c-86ee4d36ca77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59414,7 +59414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "542b7f18-cfc5-49e0-8df0-857831a65dd1", + "id": "a90f4aa9-462b-4093-bff7-cb56a4d63a06", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59460,7 +59460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa99c12c-b6e5-48f7-8320-077bb355aec6", + "id": "a4e4015c-6e39-47d9-99f2-4e93dfc7e40a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59506,7 +59506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f19aacb-4fa1-4a10-b731-de944773d36f", + "id": "f83e6044-9436-4125-8d95-8d72fb5af4e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59552,7 +59552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c6fb1d-6c95-4a48-8ca1-eba54bbc6de5", + "id": "c2030209-a436-413b-ac72-3007bc985630", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59598,7 +59598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa8fee68-acb1-4b5c-9c39-b33fcdca17c4", + "id": "f128094c-6c1b-4dcb-8645-a2be845a0f36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59656,7 +59656,7 @@ "description": "Use this API to implement certification functionality. \nWith this functionality in place, administrators and designated certification reviewers can review users' access certifications and decide whether to approve access, revoke it, or reassign the review to another reviewer. \nImplementing certifications improves organizations' data security by reducing inappropriate access through a distributed review process and helping them satisfy audit and regulatory requirements. \n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers. \nOnce this certification has been completed, Identity Security Cloud would provision all the access the user needs, nothing more. \n\nOrganization administrators or certification administrators can designate other Identity Security Cloud users as certification reviewers. \nThose reviewers can select the 'Certifications' tab to view any of the certifications they either need to review or have already reviewed under the 'Active' and 'Completed' tabs, respectively. \n\nWhen a certification campaign is in progress, certification reviewers will see certifications listed under 'Active,' where they can review the involved identities. \nUnder the 'Decision' column on the right, next to each access item, reviewers can select the checkmark to approve access, select the 'X' to revoke access, or they can toggle the 'More Options' menu to reassign the certification to another reviewer and provide a reason for reassignment in the form of a comment. \n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must select 'Sign Off' to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items. \n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase. In the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed.\n", "item": [ { - "id": "9d98b6db-47bd-4e9f-98e2-63d570bb357c", + "id": "fa4557c1-3a73-4239-9ed8-0503adcce9d0", "name": "List Identity Campaign Certifications", "request": { "name": "List Identity Campaign Certifications", @@ -59740,7 +59740,7 @@ }, "response": [ { - "id": "4fce0089-cac1-4e2c-814c-2cf708a4e093", + "id": "66f8c0b3-51a6-4af7-9c34-d774569e1b97", "name": "List of identity campaign certifications.", "originalRequest": { "url": { @@ -59838,7 +59838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d34433c0-26bc-4eae-b7b0-e1a44453193b", + "id": "756ed0ec-1658-4ada-a070-93ae96baea91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59936,7 +59936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22783c9c-03e5-4aa5-b5c1-a22aa6432f23", + "id": "e320f6ce-c289-4e12-9e57-10f2f3693779", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60034,7 +60034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05cb4bcf-7258-4a31-af86-811559c9ad22", + "id": "d7e0b07a-ca2c-476c-b821-0855321bcaa4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60132,7 +60132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c23142e-40b9-413b-a8d6-be5c9c52f69f", + "id": "c6fa15de-69a7-4019-94fb-fd02d7af3639", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60230,7 +60230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0fab7ae-0cbf-46e8-ad17-c54d179c52fc", + "id": "3cd8b5bf-d5be-497a-9f94-bed4383f0cc4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60334,7 +60334,7 @@ } }, { - "id": "bbf5b4f7-f92b-4744-95fc-0bb390716b71", + "id": "fb642163-fc0c-4462-b7ef-59e8e10d80d8", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -60375,7 +60375,7 @@ }, "response": [ { - "id": "e47e2185-62ed-4c38-bdf5-c43ddb90ec42", + "id": "ae37b6c1-dd88-445e-8017-2c6022a06441", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -60419,7 +60419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f86222f5-a060-4ce3-a55c-d43ce9a689c7", + "id": "0acf37ca-10b6-4916-8d39-6c9b424151e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60463,7 +60463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa37604a-bb80-453c-b3f9-65ff790bd255", + "id": "163be585-8143-4fd9-834f-9dbcd62c4994", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60507,7 +60507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "321d62d4-b139-4a23-94bc-2cc8840d81ad", + "id": "1612a88f-0fba-4bcc-b0ab-f6a0ed712ac2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60551,7 +60551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "631bc884-4854-4ce8-91e4-e736c807b571", + "id": "3c83ef10-ddb3-4aab-b0b5-c0d108fb435a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60595,7 +60595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18e935b8-54bc-4195-b4ed-fd8ed0d7edc6", + "id": "e34a72bf-da68-4e77-9b88-d9183a4d882f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60639,7 +60639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba924ead-fb2a-473d-b08a-f805cb6463c0", + "id": "2cea3c9b-7c9a-4a2a-be4c-23793496d8ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60689,7 +60689,7 @@ } }, { - "id": "52ff7adf-2f91-47de-9d83-4db1c8d8f9f9", + "id": "ad0862ed-0a3e-40ac-b7ec-2fc275a97ed6", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -60804,7 +60804,7 @@ }, "response": [ { - "id": "e6a1a5da-88ed-48bd-843c-beb18c16387c", + "id": "0c2ab45b-0d87-4747-b395-aef6162e22c4", "name": "A list of access review items", "originalRequest": { "url": { @@ -60922,7 +60922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6f0a15-45bf-4c4e-b961-242c3f4c483f", + "id": "6bfaeccb-f7ca-42f7-b27b-a89fe65daae8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61040,7 +61040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4341dcf7-18c8-431b-9340-5e9ff0405100", + "id": "b2db71e3-17e0-4f82-9261-9fec85f44311", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61158,7 +61158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "881aa926-056f-4bf6-866e-fa2da8ae6a57", + "id": "ada5f625-9ed7-4fb7-a5c2-fc8705e372e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61276,7 +61276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce616b50-2691-4943-875d-96c8f2a5ea8b", + "id": "254d9cb8-8285-4e46-a975-86a83b7eb460", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -61394,7 +61394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "660c3550-99af-4625-a0c7-3f048809f804", + "id": "d7beaa97-f399-4ddf-84b9-25df1165f877", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61512,7 +61512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2258d72b-60a0-4ffc-a93f-ec1e39bdfc9a", + "id": "52f4be27-e2e7-46e2-9938-afb0b01981ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61636,7 +61636,7 @@ } }, { - "id": "a4a61628-5b5c-459a-b623-7ae94b4ae997", + "id": "08b22968-25a6-43be-86f3-de08c67674f4", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -61691,7 +61691,7 @@ }, "response": [ { - "id": "95a39631-0a72-48be-a11c-f78adc8e1dca", + "id": "319460df-8fe2-45bd-8352-a3fccb0b1c9f", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -61749,7 +61749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd2efd2-524d-4760-8316-795e2e9e0f20", + "id": "868876dc-5076-48a3-845f-45ee334568f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61807,7 +61807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce90d9af-7ec0-4f9b-b8a8-41b25ca67dd4", + "id": "9a2ea09f-50ac-4843-8a0b-85c2565eecf0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61865,7 +61865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dfa4895-3797-493d-8fa6-970ea27fb4e3", + "id": "c0db7ff2-81f1-463c-935b-0231328b39da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61923,7 +61923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aedcff97-6404-4293-9fce-2c72c024e9d3", + "id": "99e0e776-6cdc-41c8-9269-f6ba118c8cc6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -61981,7 +61981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb0763f8-3b6e-4639-8c09-9f31966a1213", + "id": "94bc273a-3a2a-4bff-8077-d0c072d1f632", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62039,7 +62039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61eff774-7663-40ab-9843-e70fff15c982", + "id": "400e44dd-a6a5-4e3a-a3ed-debe5613e91b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62103,7 +62103,7 @@ } }, { - "id": "7070ee23-8435-43ac-bf4c-4effb48ab4ca", + "id": "2f857ac0-3aa0-43ef-b130-7b970ce8e201", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -62158,7 +62158,7 @@ }, "response": [ { - "id": "75c71aec-d87c-4ebe-8def-25346b371ee4", + "id": "68a2e6f7-05a0-4112-b9a5-2f4e495664fa", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -62216,7 +62216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "711d80d3-cda5-4eec-83cc-5093611a48fd", + "id": "d8bf9d1f-8119-49b3-a198-72bc32636fe4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62274,7 +62274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c6efc94-594b-4c74-90a5-3c4d04dbb29e", + "id": "2bc8652b-c481-4dc6-9903-2fc97a2ac77f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62332,7 +62332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f7d1127-7fa8-4c3d-97f0-cb6b52f36fe2", + "id": "fcbf8947-0a73-4951-a271-7073eb50ebed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62390,7 +62390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6b119d1-d885-47ef-9d44-d757225add08", + "id": "74a71f30-d3df-4a92-b9d3-d56f97cbb5a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62448,7 +62448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "708a5401-9e66-4278-b568-5e7337e94f6c", + "id": "511bfb3b-0674-4d00-b91a-1b37d6dc940a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62506,7 +62506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "277f5256-ad6b-45a8-afb3-4d06ed700c4b", + "id": "b5424f58-e253-4c41-b673-3ccd64a1dd63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62570,7 +62570,7 @@ } }, { - "id": "e0224fac-f99e-4482-9bbf-bf2f7a0a9ca0", + "id": "8515a99c-0fa8-4eb4-9167-13d133167284", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -62612,7 +62612,7 @@ }, "response": [ { - "id": "cec7186a-95e6-472e-92aa-f3992d117d7d", + "id": "d4adbb6c-1db5-45d1-8fac-c3eecdc09897", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -62657,7 +62657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3da97e5-46b8-422e-a3a2-33e41e3ffd09", + "id": "b027515e-766c-46fa-a7f4-4166eb4a577e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62702,7 +62702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c6e6d0e-53e0-401b-aebe-30c1d13b5081", + "id": "28cf6154-7a7f-47c0-844c-59cef36c7ed2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62747,7 +62747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3007c0-65a2-4c79-b938-5a9a99d770d4", + "id": "60b9ee5a-ca30-4f04-80ba-5da661fdfb63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62792,7 +62792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "289cf7a6-5b42-4313-941f-abb8a4df6bb5", + "id": "162cea10-db1d-4bae-9a5a-a39c91ac3f8f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -62837,7 +62837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1c728a2-4a7d-4672-b390-ba0723f05af8", + "id": "295abeea-5502-4ce4-94a9-f6aa9e7269bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62882,7 +62882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d65cc5-2f12-443c-a89b-f98e1b541dc6", + "id": "971541a5-d42f-49dd-8a50-dbeb9786f6fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62933,7 +62933,7 @@ } }, { - "id": "71f273d4-fc9e-4fad-95be-f649ca659d9b", + "id": "e0ea942d-594d-4253-9e84-ad0b587073fa", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -63024,7 +63024,7 @@ }, "response": [ { - "id": "90da1bcd-cf87-463d-9d16-0493e4ef00b7", + "id": "1c45d1a0-2ac7-4dd1-97b9-b2201b3102cc", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -63108,7 +63108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e8dca0a-03a1-4b7b-9d7c-4dd24748eee9", + "id": "ffbea60b-ef01-4513-8863-f0a67706874f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63192,7 +63192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85b0f434-74e3-4873-8857-d3853b03f056", + "id": "405b8a83-4cd5-4951-a79b-5baff13a0643", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63276,7 +63276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0ff5a11-57ef-49b6-b54b-a5a8042343b9", + "id": "2fb86a51-0332-4d57-8080-7a1b83640bb8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63360,7 +63360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "795a1f1d-1d7b-4ad0-bedb-5858542e2fd7", + "id": "ed8ceeb2-6494-49f8-9e24-75182fa1b73b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -63444,7 +63444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc1c97ee-f0fb-4a81-8531-fe6d4d8205be", + "id": "b7beefea-a921-4f02-8ecd-b50b67738ef9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63528,7 +63528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "721d370a-4762-447f-bb11-ad62d9b478ae", + "id": "bb53a7f9-6f8d-4220-8d62-0118a5d83a52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63618,7 +63618,7 @@ } }, { - "id": "c21b5bf5-3185-4468-b836-35f209534580", + "id": "2dae47c1-9591-40f5-b000-5241b04977e9", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -63706,7 +63706,7 @@ }, "response": [ { - "id": "4c985077-5b46-4373-a993-dd8fdaad56b6", + "id": "80126234-c2f9-4502-a2a3-36f749265ba6", "name": "A list of reviewers", "originalRequest": { "url": { @@ -63797,7 +63797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8af24124-91b5-46f9-b284-fa479a009013", + "id": "46f607ac-589b-427e-9331-f4ea3c6a2abe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63888,7 +63888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa6698bc-1cca-4e8a-a651-0df1cca6d147", + "id": "cc3f585f-8397-4ce3-a49b-3178330d10cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63979,7 +63979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b4d19ca-358f-4bf2-9005-99eedb8464ec", + "id": "b1492e3b-4863-4be0-884a-f1a563d5c7d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64070,7 +64070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f899f82a-00dc-493c-8dae-381acc6715d5", + "id": "4565fd30-311e-454c-a8b7-e9c74edfe448", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64161,7 +64161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "707fce24-2040-4dd3-a7ac-a0bd2d37ccd3", + "id": "3b8f26e7-2a0f-4a6e-9f7a-74b097cad1e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64252,7 +64252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfe9254f-89d5-4a5f-8f66-b940d3ba90f8", + "id": "3d4cc782-ffcb-498e-8b52-c61ec02e9018", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64349,7 +64349,7 @@ } }, { - "id": "f920198c-306c-45d9-a6e8-4780ab86683b", + "id": "0fd262de-133f-448d-a880-3ccac8f430b5", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -64404,7 +64404,7 @@ }, "response": [ { - "id": "cd4da188-a525-4f91-976d-79e80d1e89c1", + "id": "9c9ed6e2-863e-4e44-9ba7-c813d01e9060", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -64462,7 +64462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8ca842a-681b-49ae-9e04-a9c79e7791c3", + "id": "a7251a33-f741-4f18-a9cd-afe9fda7a5a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64520,7 +64520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf46f4c5-102a-42e7-af30-ea388b99279a", + "id": "3418f835-8bb5-48a7-b897-8a8d9427e3e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64578,7 +64578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8befa9d-b1c8-44f0-a588-0bc6ad50dc28", + "id": "c67374c4-2582-46b4-b783-394d905e9e55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64636,7 +64636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ada15a79-7de2-4fe9-8470-0b29390f1ffc", + "id": "d4393f11-c8f4-46db-8329-0f9d1765d651", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64694,7 +64694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1c0eab5-d994-485b-b842-03d5e8001c5a", + "id": "6dac6dcd-f1ed-4ea9-a729-46778d0dabc2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64752,7 +64752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "890d7aee-314a-4630-8237-ee0b181a0133", + "id": "c65df068-9cfb-4b34-a068-d24cca9a8513", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64816,7 +64816,7 @@ } }, { - "id": "3daade19-9614-45cb-bfb3-ea9070f10ae3", + "id": "26873495-414f-42a1-95ad-a24aa9bdbfd0", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -64857,7 +64857,7 @@ }, "response": [ { - "id": "83337251-e9e9-4942-8ed0-25b58b6f5ccb", + "id": "3c3ae3ca-9024-4ac4-a408-a3f720749375", "name": "A certification task", "originalRequest": { "url": { @@ -64901,7 +64901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62e7291d-3e25-49a5-8465-c7196d28987c", + "id": "f76ec3ac-08d1-4eea-80a0-dcffa6bea1ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64945,7 +64945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2665c08f-3f49-46ca-a270-6ec61e1d35db", + "id": "39bf1a6f-2958-4442-b3b9-7d33fa22b096", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64989,7 +64989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ede10f25-6b25-465c-92c1-4d1acfb1bf68", + "id": "d52b9826-4fe6-4aa3-9cd2-1da506b18c32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65033,7 +65033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36ad96b8-08c2-4828-8150-e43491e068a1", + "id": "7ef08158-6b53-4252-b51e-625c0101f25b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65077,7 +65077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d603608d-27e5-4733-9978-37bb47bf5095", + "id": "8a6ac4fd-9219-4007-94c0-8038931452d1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65121,7 +65121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8784d06-c113-4e24-82a8-d6392731e851", + "id": "b8210d0d-40db-420a-910c-e4e744ea197b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65171,7 +65171,7 @@ } }, { - "id": "9f2c2a12-926e-4939-b174-6c4d54e7a5e5", + "id": "575744a9-5076-4baa-8969-e5e33ba8027f", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -65246,7 +65246,7 @@ }, "response": [ { - "id": "e67f5d6a-a051-4909-8e46-8104c1b5284f", + "id": "45d48ec2-1f7d-43f4-8f80-21a3fa0623b1", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -65335,7 +65335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a77ed008-d09c-4e47-a0f2-4886a4ca216a", + "id": "979d04a5-cf93-4b7e-b147-93dc3f37eea7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65424,7 +65424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66e9055d-b074-4cb1-b876-053b78fad4cc", + "id": "899f221f-601b-4092-beec-23c71e2538be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65513,7 +65513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed37464e-748f-4d3a-9dfa-78bac1caf5d6", + "id": "a2d7e18c-b3c6-4446-a1c6-40f5251a3b49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65602,7 +65602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd77881-fbdc-410e-8ed7-5eb0aa8d00c3", + "id": "070d7ef4-3d1e-4f10-b0c8-0735a4a15265", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65691,7 +65691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d6468ed-f2df-420b-8982-2bbcfe6322ea", + "id": "f71d17ec-a813-4dd3-b011-bb84895ad1f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65780,7 +65780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f8811a3-de30-46d3-88a1-7d2df4cb40bf", + "id": "4d18557c-f8c4-460b-a77d-7608b7769aae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65881,7 +65881,7 @@ "description": "Use this API to implement and customize configuration settings management. With this functionality, you can access the Configuration Hub actions and build your own automated pipeline for Identity Security Cloud configuration change delivery and deployment.\n\nCommon usages for Configuration Hub includes:\n\n- Upload configuration file - Configuration files can be managed and deployed using Configuration Hub by uploading a JSON file which contains configuration data.\n- Manage object mapping - Create rules to map and substitute attributes when migrating configurations.\n- Manage backups for configuration settings\n- Manage configuration drafts\n- Upload configurations and manage object mappings between tenants.\n\nRefer to [Using the SailPoint Configuration Hub](https://documentation.sailpoint.com/saas/help/confighub/config_hub.html) for more information about Configuration Hub.\n", "item": [ { - "id": "2de2e4a7-0bf1-4368-97c3-dc94a2b33c3b", + "id": "cd10854d-6b4c-4cac-af7c-90bd71cdd6fc", "name": "Gets list of object mappings", "request": { "name": "Gets list of object mappings", @@ -65923,7 +65923,7 @@ }, "response": [ { - "id": "fc336dbb-6d18-496b-a257-ae9284d728a3", + "id": "b2c5b23a-0df1-445e-a194-e28b5c297fd6", "name": "List of existing object mappings between current org and source org.", "originalRequest": { "url": { @@ -65968,7 +65968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b5a621d-7bf3-478b-9687-55de146807c6", + "id": "72483bd7-b192-44e5-85da-3b2e45b4dfea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66013,7 +66013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "259f2081-e103-4627-9408-618de86961a6", + "id": "b5cb7505-5ad1-496e-a972-c6f8e36a2f6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66058,7 +66058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d9e9a3c-4f91-40f0-a673-b1f37b34fe33", + "id": "cda5e4fc-7fa7-4eeb-83b7-c85d354c8d3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66103,7 +66103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464ac0cb-6e69-4c90-ae3f-ff20b01d1fc9", + "id": "56b21833-e808-4c99-acb1-dcf15f765eb0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66148,7 +66148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7847cb23-86f2-4fb2-84ba-225000243b2c", + "id": "9fe1fa07-e872-4c7d-a540-aeba060a0deb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66193,7 +66193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9605ef0-7c53-4fb7-9053-51e36b76b688", + "id": "ec145b53-ca47-4f13-bcc7-af45eaae50ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66244,7 +66244,7 @@ } }, { - "id": "e80a1347-db1b-475a-8091-b268495ce8d4", + "id": "09e4c46e-a40b-4790-aaee-fe25966389da", "name": "Creates an object mapping", "request": { "name": "Creates an object mapping", @@ -66299,7 +66299,7 @@ }, "response": [ { - "id": "990bf5f4-d774-4133-86bd-d20f5d053dcc", + "id": "ce8346de-691d-477f-a930-ea3a3575ad15", "name": "The created object mapping between current org and source org.", "originalRequest": { "url": { @@ -66357,7 +66357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f10eef48-5c11-40a7-bf60-73745766ef4e", + "id": "c530c389-cb8c-4235-808e-1b6a9bf227f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66415,7 +66415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77176d71-a7a6-45c2-a34f-489935a64091", + "id": "b8173224-7086-4f98-99e3-7bb445731fd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66473,7 +66473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e4e8b87-5c7c-4dc4-8270-e356fa782359", + "id": "142e0e00-cbf5-452b-a173-54db668a7900", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66531,7 +66531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8606f64-7d1e-409f-8983-aa60426d982f", + "id": "6316ecb5-c592-4305-bec0-c8678f8044aa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66589,7 +66589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f559a6ad-a7a5-4fcb-8f97-af11ab614616", + "id": "705774bb-1eae-4836-9ac1-25741a510349", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66647,7 +66647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07de37c3-3cda-488f-a017-c5ee7d94932c", + "id": "04b80307-f2f3-45c9-885c-171ce56c16cf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66711,7 +66711,7 @@ } }, { - "id": "fea31e80-776e-4404-875f-47f41fa472c9", + "id": "c13d0179-dad3-4d4e-92b9-761ddefdb859", "name": "Deletes an object mapping", "request": { "name": "Deletes an object mapping", @@ -66764,7 +66764,7 @@ }, "response": [ { - "id": "3ab94e65-398a-4aff-8315-c0bba1658347", + "id": "4a346550-1f21-4e78-98e5-28dd534c7627", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -66800,7 +66800,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9945628d-27a4-4ee0-9365-499e90291a60", + "id": "2c545366-4629-4e66-a3a4-03569d363324", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66846,7 +66846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "268a4c9d-c604-4a17-8a6c-4b06072135d0", + "id": "2bc33d69-1fb8-4372-a299-178c7dd96b4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66892,7 +66892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72d6115f-cbdb-433b-94d8-c54c477bf913", + "id": "bfd73421-57fb-47fd-8a26-34cd40aa410d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66938,7 +66938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bed9f6ae-6b0d-4cc1-97f6-b458e61c0198", + "id": "280a56ac-a5fc-41c1-b8cf-40a889ad21b2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66984,7 +66984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "376ca514-6ae6-49f5-9771-c9dc90e140ab", + "id": "e5bc10fb-33be-454e-b7fa-b8fa03cbc4b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67030,7 +67030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7676dda-c8e4-4f2d-9f99-7a4e547529b2", + "id": "89835f95-e295-43b5-9c2f-ce06c6d84a8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67082,7 +67082,7 @@ } }, { - "id": "078f63ab-ee2f-40f6-9ee3-2df8293406d0", + "id": "67d1f2e2-f8c4-4772-9f1c-4e959716f82f", "name": "Bulk creates object mappings", "request": { "name": "Bulk creates object mappings", @@ -67138,7 +67138,7 @@ }, "response": [ { - "id": "57d4735e-380b-4fd6-9f98-33def02a875f", + "id": "483a054c-514f-48d6-bcdc-a03ffa12d460", "name": "The created object mapping between current org and source org.", "originalRequest": { "url": { @@ -67197,7 +67197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717a3709-f70e-46d3-936b-308179f5a8e5", + "id": "01b9e949-3403-4ca3-ab4b-c30f796a2e57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67256,7 +67256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe350b34-5e14-423f-9514-76f486b9bf6b", + "id": "61b56f89-05de-467d-8b8d-e8e3e169444a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67315,7 +67315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdf58064-c264-4bb9-8187-ecbb5eccd6bb", + "id": "a9c34848-9a96-491c-b272-2b031a32518f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67374,7 +67374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e04ddc-fb79-4407-92d9-110a7957d4e4", + "id": "64013dd9-ef4a-445c-910b-7cd991e429da", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67433,7 +67433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e097623-b72c-4f64-ad13-dde6cfbe5b71", + "id": "c63e95fa-e90c-4010-a208-164770bd78f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67492,7 +67492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb9c1e31-d45f-4732-a716-d6722ef2d14c", + "id": "cab626dc-be5f-4739-9bd3-1959f23dde64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67557,7 +67557,7 @@ } }, { - "id": "0d7b0c5a-d822-4c30-84ac-6f8cbae05819", + "id": "871d821c-ef66-4c5d-9c6b-e14dc8bc0638", "name": "Bulk updates object mappings", "request": { "name": "Bulk updates object mappings", @@ -67613,7 +67613,7 @@ }, "response": [ { - "id": "03e3a97d-ed06-40f6-b3c2-ff71bbeb3db5", + "id": "b2c6f7e7-e6a0-4958-92cc-5bd5e6e557f7", "name": "The updated object mappings.", "originalRequest": { "url": { @@ -67672,7 +67672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2f5f5b3-7061-46ff-be95-a7e2de1eabc2", + "id": "762013c3-50f8-43d4-be3e-10cad6816ee8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67731,7 +67731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1fefb52-ecee-4025-a797-1feea1b49855", + "id": "ae1b2280-8ada-4d17-a976-052bbdde6489", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67790,7 +67790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c357b6b-5cd0-4b9a-b10b-6399be4f8ce4", + "id": "840c972a-3a2a-4b4d-ab51-4d806ee94d00", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67849,7 +67849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4104702b-ca26-4818-8674-e066d5ff1647", + "id": "87629fff-d537-4f3f-96be-2a696a3a8499", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67908,7 +67908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3893889d-b890-4d58-a637-7553195a0034", + "id": "c5bf1715-5e66-4ab0-98f0-ddef3ab68ca3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67967,7 +67967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0446803-22cb-4ddb-8fa7-203fcd40a7c5", + "id": "26600cfe-3bcd-446a-a4cf-3715d57be211", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68032,7 +68032,7 @@ } }, { - "id": "e22f8b8b-cb5b-4d1e-ab27-26ea14568dc9", + "id": "d99a5216-d8cf-43af-ba37-3b426c6f008a", "name": "List Uploaded Configurations", "request": { "name": "List Uploaded Configurations", @@ -68073,7 +68073,7 @@ }, "response": [ { - "id": "05f591e7-ecf4-472b-bc89-eb3b6aa52585", + "id": "5badd2d6-f6d1-4ba0-bbe4-9e21e1c91c8a", "name": "List of existing uploaded configurations.", "originalRequest": { "url": { @@ -68128,7 +68128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8d3fb82-3f81-468c-9b97-11590d6dea07", + "id": "35dbf6fd-8a60-4cd1-a7d7-7c8824e3a470", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68183,7 +68183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e2ea283-336c-4962-873f-a08e96684f49", + "id": "1acd33b1-8026-4ff6-8340-9ec0f4222a40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68238,7 +68238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3924e45e-e70d-46f6-9ca3-fa6170476e12", + "id": "a80df0b5-d6aa-48b9-bcda-7534334ecf14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68293,7 +68293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee1e4ce7-ef05-42c8-8d68-9d6fca58486d", + "id": "657984da-a2e9-4d8b-a113-273c4d1597b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68348,7 +68348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8174c9c0-a2d6-4784-9e6c-fb63631b43ef", + "id": "a5701d27-85e0-4c88-81ea-ba762ffdd1d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68403,7 +68403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8afd8655-662f-4ee0-98c8-ef9a16c9668f", + "id": "9999d86b-30b7-4844-a664-4c98c85e1467", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68464,7 +68464,7 @@ } }, { - "id": "e7e1efc4-571e-4aa0-8772-d0fce9f38d42", + "id": "d75f02bb-a80a-4089-b06f-5146343acc0c", "name": "Upload a Configuration", "request": { "name": "Upload a Configuration", @@ -68512,7 +68512,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68520,7 +68520,7 @@ }, "response": [ { - "id": "a75faa90-6e9c-4b10-8f04-2ae3ec6e11d6", + "id": "d1f0fb3a-47d0-4714-b3da-526af9ea390d", "name": "Upload job accepted and queued for processing.", "originalRequest": { "url": { @@ -68571,7 +68571,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68590,7 +68590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "185296f2-3455-47ae-be77-91982b011e89", + "id": "62838c67-4ef4-478b-ba75-25f5baaf924d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68641,7 +68641,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68660,7 +68660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46a5c546-7858-4f6d-bf4b-148588e462c9", + "id": "6de0be13-6d42-4840-b731-c84d87e81a68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68711,7 +68711,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68730,7 +68730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f642f0ea-42fe-40f7-a366-62747bfc1385", + "id": "5c1544e8-34f8-46cf-99d4-9480dcddf373", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68781,7 +68781,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68800,7 +68800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7615748-48a7-403c-a911-82fc2eb26ca1", + "id": "33c6bac9-1561-4de7-bdb9-23b30465d470", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68851,7 +68851,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68870,7 +68870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "280eab00-fb6a-4174-9805-ea49008af3c6", + "id": "ac9922c5-0b2f-4c13-9ad1-d223dedbd471", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68921,7 +68921,7 @@ "type": "text/plain" }, "key": "name", - "value": "pariatur", + "value": "qui ", "type": "text" } ] @@ -68946,7 +68946,7 @@ } }, { - "id": "76b95d43-6dd4-4742-b537-4cfa3f0dc41c", + "id": "1623c02a-cac0-4b7e-ac00-2e66d2e05972", "name": "Get an Uploaded Configuration", "request": { "name": "Get an Uploaded Configuration", @@ -68989,7 +68989,7 @@ }, "response": [ { - "id": "19f523d9-a50b-4c8a-8151-cc7709ba1a19", + "id": "d6e8e419-b68c-469e-a249-69887a917194", "name": "Gets an uploaded configuration details.", "originalRequest": { "url": { @@ -69035,7 +69035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c4c6c5d-b28e-453f-a4a8-e55f1229d9ca", + "id": "ead2c997-ef48-4996-9b46-6fda6d7b9844", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69081,7 +69081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7745184-05f3-4416-9f88-dc0621636941", + "id": "11ff5c0b-7507-4cb3-953d-559a4a3df75b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69127,7 +69127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1540e19a-add3-4a74-8663-ef383b46105b", + "id": "dbfab563-2562-4603-b5ab-29e73b0aa35c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69173,7 +69173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c38262-308e-4cb3-be1a-b1cf6b3f36cb", + "id": "e03731e5-482e-45e3-bcea-0f5620f764c1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69219,7 +69219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2bdb70a-7561-44b7-a0d7-bafbf86d92c4", + "id": "09692082-1a01-4573-8ef0-7a07d3569d43", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69265,7 +69265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e5b3350-3a71-4366-957b-8023ee7d00b9", + "id": "639bf5f1-68a0-4b9a-806f-575788b5561a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69317,7 +69317,7 @@ } }, { - "id": "12d7f105-410a-457e-8c1d-f1a2fd537979", + "id": "67c6d10b-c2d3-4584-8474-0c4a02a05bfc", "name": "Delete an Uploaded Configuration", "request": { "name": "Delete an Uploaded Configuration", @@ -69360,7 +69360,7 @@ }, "response": [ { - "id": "d0ea1ead-ea0e-4a83-8d53-639526003a7b", + "id": "633f3ec7-c6b6-47ee-bbc6-322c37748b0c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -69396,7 +69396,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0a1b647b-0619-4888-9c07-44afb6f791f6", + "id": "8b67279a-d54a-4b79-bbf5-59fc9c919a4e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69442,7 +69442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab596397-67cd-4826-ad7b-c67ea631d457", + "id": "95c28854-9ff0-4e85-ae96-9ce35defdac0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69488,7 +69488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ba341e9-d1d4-40e5-b2e8-436cd251828f", + "id": "84ac7de6-81ff-4548-a7f1-f703dfaaf660", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69534,7 +69534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b82e29d-1225-4e3b-8d4b-d8d9ddbd3725", + "id": "8319b91c-bf71-4a45-bd9e-238b54c7b03c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69580,7 +69580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5af2cfbb-e857-4364-8076-123772cf9989", + "id": "75f94363-0473-49b9-9217-253ebf380bb2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69626,7 +69626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcac7621-b6f2-4393-b043-2ae71190ef56", + "id": "bc2a33d8-d9e4-48e4-868c-1d60e357fafc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69678,7 +69678,7 @@ } }, { - "id": "13bd08d9-7b8f-45aa-8c0d-248b8759f948", + "id": "c9c17b93-24c3-4597-91e1-4fe9dcb49475", "name": "List Backups", "request": { "name": "List Backups", @@ -69718,7 +69718,7 @@ }, "response": [ { - "id": "8a499d49-1589-46cc-96e6-fee4da19fd96", + "id": "4000435a-6c27-4ecd-96bd-9fb1bbe3e29f", "name": "List of existing backups.", "originalRequest": { "url": { @@ -69772,7 +69772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65a1e023-e771-402a-9e16-612f249031db", + "id": "87622478-8093-4969-b889-2338b4595aab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69826,7 +69826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0faeff96-6ea4-4e54-8bbc-6586538916ec", + "id": "5eee8573-edd2-405a-ac37-3b164d9750b2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69880,7 +69880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08c104f7-47cf-4e95-9a9e-b6a603b65709", + "id": "611e1f86-35b0-48a4-97da-f4352d435985", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69934,7 +69934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea8eab00-1993-487a-a2b8-e91a8f5241d4", + "id": "7dfd28a3-3a06-4c7e-9a9a-26101546932f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69988,7 +69988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587466a1-3ee8-4b70-ac7f-62df5d0880ad", + "id": "ece0a8e4-53e6-4f02-a19f-f9488782d092", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70048,7 +70048,7 @@ } }, { - "id": "7344c0da-0b30-4e17-a92e-0feb5c897ce6", + "id": "69384f97-a8c2-42da-90a1-510bbfc7d11a", "name": "Delete a Backup", "request": { "name": "Delete a Backup", @@ -70090,7 +70090,7 @@ }, "response": [ { - "id": "ad7cb11b-1cb0-47e7-b7be-e9ba03a86578", + "id": "cd35f547-e2cf-48f8-a86a-5924842bd648", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -70125,7 +70125,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3677d3f9-b979-455b-875d-458d74d7aba6", + "id": "55da31db-d7bd-4cc9-a329-f22bfa1e6577", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70170,7 +70170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9a7b1e6-af59-4d8b-8fba-acdbfcae0b6b", + "id": "13510a00-e5f7-4d0e-bdc5-490b42501be6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70215,7 +70215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50b884d0-59ac-47ba-af77-28faa020eca7", + "id": "7ebf966e-93f2-467d-8e50-ec87d858f284", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70260,7 +70260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0ca6151-08fe-4371-a71c-5c651f0ac5eb", + "id": "de12986f-86d4-477a-8b1b-c849ee203282", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70305,7 +70305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f4b643a-ee5c-4de1-9736-4c5a3c199214", + "id": "1abd29b5-35c9-42f5-b6b7-318411b8845d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70350,7 +70350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9df6fd2-ecb1-42a9-b672-c8138bb50198", + "id": "c31472eb-f2bd-4573-9d2e-ebe687d06d62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70401,7 +70401,7 @@ } }, { - "id": "c0c5b700-3206-4f79-9706-a42de69a4208", + "id": "8c57a2c8-57cc-4a95-86f3-20714d83a4b7", "name": "List Drafts", "request": { "name": "List Drafts", @@ -70441,7 +70441,7 @@ }, "response": [ { - "id": "08ce2018-dfed-4e17-a201-100301344221", + "id": "6a435f12-ed33-4cf6-adcf-e2b45209deae", "name": "List of existing drafts.", "originalRequest": { "url": { @@ -70495,7 +70495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f733ef51-260c-40d0-9f76-f668b04819b3", + "id": "62a5ae4d-cb51-4ec6-9cf0-58c9a61a5ebc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70549,7 +70549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eef83f9-d278-4dfa-aa10-0037a7cab2b6", + "id": "b9ba9a03-2367-4105-b81b-35e696a4b902", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70603,7 +70603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee5ab530-2d5c-4f14-9048-19742a3e6ba9", + "id": "eaabf673-6a11-4a07-bbec-18c25c73bd2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70657,7 +70657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dd75905-5aed-4969-bc0a-6e35722ce465", + "id": "d9f58b6c-7bfe-47b1-8664-0fc73c1f6bf5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70711,7 +70711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dba5514-6ed7-436c-9452-5ddd70007164", + "id": "b3440ace-b3ba-46fa-b7b9-3268ab5100f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70771,7 +70771,7 @@ } }, { - "id": "c8665446-ce1d-4472-9e03-e52a201a6c33", + "id": "9db54f66-c263-4721-ac0d-cb157ad51dc3", "name": "Delete a draft", "request": { "name": "Delete a draft", @@ -70813,7 +70813,7 @@ }, "response": [ { - "id": "062c072c-9535-495e-89ac-1a6a4bd520cf", + "id": "ed9958c9-2a0e-431b-83c2-93bd65818026", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -70848,7 +70848,7 @@ "_postman_previewlanguage": "text" }, { - "id": "57f99933-10b5-4ee3-8176-0d7e30ebe2f0", + "id": "c3dc6dc1-54cb-49af-a696-5ca471c2392a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70893,7 +70893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5d85ab8-4b23-40d2-908f-03f08646bfd0", + "id": "0dd1b103-033f-459e-bc80-b9f7fc3f36db", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70938,7 +70938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e7dbf8b-b57d-44a6-9ccb-caf39c5b4c6a", + "id": "042a5fbc-ae87-444a-a686-6f3ae97ec61c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70983,7 +70983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1ab8288-f70c-49dc-bdc5-db4b816d254e", + "id": "46f63124-bf11-45b7-abea-3f8d21c8dcfc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71028,7 +71028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cd0118e-4a24-43b9-b32c-fc3cc08617f9", + "id": "a393fdfd-8fe2-48b7-801d-5ee1491c642d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71073,7 +71073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6f57b99-3d99-4c46-b13b-198c1c5165d7", + "id": "f90eb766-2aa2-4b2c-8ac7-2789a81cdec6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71124,7 +71124,7 @@ } }, { - "id": "50b95814-298d-4051-a927-378722b9ddab", + "id": "b6b1b908-8921-40c8-98bd-1d944b783728", "name": "List Deploys", "request": { "name": "List Deploys", @@ -71154,7 +71154,7 @@ }, "response": [ { - "id": "ce718857-c003-4210-8d23-48d8647a695e", + "id": "8698e541-33fe-4cb7-8d52-749d7d2a719e", "name": "List of existing deploys.", "originalRequest": { "url": { @@ -71198,7 +71198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3afa0b62-b928-43f5-853e-4a70a2bc8dfd", + "id": "a429e726-f9b0-4ec9-b5b7-5d00b9dc9a0f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71242,7 +71242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af6905d-89d6-4c61-82ad-fa5c9710f439", + "id": "b44e2345-5727-4e7d-98cc-a90cb2446711", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71286,7 +71286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ba5e044-7a2d-4475-ae1d-bb5baec8d5bc", + "id": "51859362-3136-4279-ac19-88a0f264d581", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71330,7 +71330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0441458-9953-44dc-88b7-932c7569da5f", + "id": "05d8dd79-95d4-4a34-b03a-21b81ee656c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71374,7 +71374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f33033-2478-44d7-8295-7756495b550d", + "id": "b1a03498-1aa1-48f1-b97c-aadeb7fe115b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71424,7 +71424,7 @@ } }, { - "id": "6b146817-cc2b-4ee8-af66-06f96cd57bc9", + "id": "7c1093f7-e4e2-4f95-a8c8-d7d7a3d0e753", "name": "Create a Deploy", "request": { "name": "Create a Deploy", @@ -71467,7 +71467,7 @@ }, "response": [ { - "id": "612e246a-bc66-4407-974c-2885650176d3", + "id": "ce58d1e3-584b-4dc9-ac6b-e266bafcd5eb", "name": "Deploy job accepted and queued for processing.", "originalRequest": { "url": { @@ -71524,7 +71524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "104521e9-f716-4c9f-9b2d-e69ebd6cace2", + "id": "8d6127af-6c4a-4e04-b27e-ab9b732e8707", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71581,7 +71581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f359ca00-2b10-480b-a270-96ac6053dfaa", + "id": "5a3e9161-ee69-4b2c-aaec-8440efe640cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71638,7 +71638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a91ae2cc-94f8-4c04-b409-b8a5a61006bf", + "id": "e9c374eb-7071-41df-840b-10a74f06a02d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71695,7 +71695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec7bb2dc-f1a9-4b53-ba9b-f8a03d9d6807", + "id": "2c5a61a6-d71d-4240-81b7-2ade882a75aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71752,7 +71752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0aee14a-85f2-41c7-b0ab-7ad82f9a8e82", + "id": "7965a1ae-bd47-46df-b3c9-bb8cfb200443", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71815,7 +71815,7 @@ } }, { - "id": "48b435a9-0aa8-45f2-b73d-e93f76fcd7da", + "id": "37be5be1-e6c1-416b-a0a5-42dac75864a1", "name": "Get a Deploy", "request": { "name": "Get a Deploy", @@ -71857,7 +71857,7 @@ }, "response": [ { - "id": "84d38a0b-fa20-43ae-83de-626f5b72a243", + "id": "a7a84e09-c871-4777-8a70-e3c4f6c31beb", "name": "Gets the details of a deploy.", "originalRequest": { "url": { @@ -71902,7 +71902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59d5a186-32f7-4b68-b79d-a0c4d3159cda", + "id": "defaef53-d67d-4830-a293-70fb3a1b2381", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71947,7 +71947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6cb9271-adff-42f7-a077-27ee68c2b80a", + "id": "fd0bcfde-a87a-4962-9fc7-bc71380169da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71992,7 +71992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca7a1369-d1d6-463b-a7d0-2e88cc6fde9b", + "id": "178b5d1f-2589-42ac-9095-8329c1b325d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72037,7 +72037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a72e538-2bde-43c1-8b83-8808af5c5627", + "id": "3325c8f2-50b1-4818-96a4-11a4f2d8cb2e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72082,7 +72082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3efc928-d047-4f18-b629-6f3ec5ddf4b7", + "id": "c4aac06b-b7f0-4248-8cd8-f9c762d0ce5a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72127,7 +72127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfb93a46-798f-4717-903c-08fc843bcc1b", + "id": "3f51d079-6ece-41a3-adfd-53cb1b456109", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72184,7 +72184,7 @@ "description": "", "item": [ { - "id": "f479fa40-3af6-49e7-bb8f-ed1b159c02ac", + "id": "38e811b6-0457-4efa-9e4f-a2964060f39a", "name": "List Connector Rules", "request": { "name": "List Connector Rules", @@ -72222,7 +72222,7 @@ }, "response": [ { - "id": "349ffa00-dd1f-4798-913f-4194cc50def5", + "id": "f66b68cd-5fa1-4c84-b4f9-c5b05310402f", "name": "A list of connector rules", "originalRequest": { "url": { @@ -72274,7 +72274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cf10716-655d-4151-b061-8d5a768101e9", + "id": "f4f1a9ff-8843-495c-8d62-c91c401e66f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72326,7 +72326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f96591c-db71-4b97-8c09-d78da22899a6", + "id": "84a8546b-39d6-4069-a9f3-79edd8944d6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72378,7 +72378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ff57eba-95cf-4806-aa08-32730c6d9bbb", + "id": "ce2f1daf-b824-4635-9419-e3efb99b730e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72430,7 +72430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6dafb96-f461-469e-a527-87477bba8207", + "id": "bdd5a4d3-2057-4f10-b876-0363d278d7af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72482,7 +72482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83163ced-7de1-4a9d-88c6-23c42914be4c", + "id": "fc38a3c0-a1f4-4065-b1de-8ec3d610555f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72540,7 +72540,7 @@ } }, { - "id": "819e7231-749a-49eb-86ae-4cb37947d942", + "id": "dfcc4a3f-f955-4bc4-ac81-2380e8229928", "name": "Create Connector Rule", "request": { "name": "Create Connector Rule", @@ -72591,7 +72591,7 @@ }, "response": [ { - "id": "91065995-b840-43e7-94b4-265115b2bd89", + "id": "9a853901-6695-4871-bd24-6e1000b42586", "name": "The created connector rule", "originalRequest": { "url": { @@ -72656,7 +72656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a82ce7-3582-40bd-8b23-d4f0e4d5279f", + "id": "fed12c1a-1da4-48da-b6df-fe2f4282e640", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72721,7 +72721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e5e44ee-47c6-4aa1-a8cc-7c6e9f1dd3f7", + "id": "72ed3d4f-4840-4bb7-86de-c9e1c4567ff6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72786,7 +72786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96b1ac38-1c65-4ff4-9c79-33056c6180ee", + "id": "217d3407-fbf0-435d-899a-d58f93f76359", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72851,7 +72851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6081db59-f54e-49a5-833a-94aaf7511bda", + "id": "cb6e99a4-fa54-4d09-9a99-e536a7009c14", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72916,7 +72916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc003e0-7b61-49f9-9bc9-58d14e708404", + "id": "dc4ee12d-4041-4f61-9d12-08852e68239f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72987,7 +72987,7 @@ } }, { - "id": "5c6309a5-4544-4a76-88db-797c1ea1f265", + "id": "4c3aa0b8-e891-4f59-9e41-e4ec0be471f4", "name": "Connector-Rule by ID", "request": { "name": "Connector-Rule by ID", @@ -73037,7 +73037,7 @@ }, "response": [ { - "id": "87acfc4c-6b92-48eb-92c8-535f2447b711", + "id": "58fc2827-3819-4116-997e-1943c6502d4b", "name": "Connector rule with the given ID", "originalRequest": { "url": { @@ -73090,7 +73090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0404608-948e-4600-8a92-9b5d46e01729", + "id": "0ee5425d-423a-4780-9671-ae8ae47d64c2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73143,7 +73143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a13a2ea-076e-4da5-8a72-8c30dc5ba6cf", + "id": "38827d44-258e-4890-bfab-0bc4702d62d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73196,7 +73196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8daa73d-d168-4c44-9a39-7330c5522f0a", + "id": "dc6762f1-60ec-4088-8643-ecdf90bea559", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73249,7 +73249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b12b91e-8fa0-4dd8-8159-bbef38cb42ce", + "id": "b7fc9782-ea13-4df3-a953-5420874a229e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73302,7 +73302,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7db90df-a363-4b8f-a6a1-e2d90cc7e6a5", + "id": "1c0157fa-f9fa-4d9e-a956-184b5df864c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73355,7 +73355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df2bfb2d-bb2d-42df-b9d7-b46577e57fc2", + "id": "d9d8253c-fb8c-4387-ba52-ba8e1fa39348", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73414,7 +73414,7 @@ } }, { - "id": "34671c13-3694-4797-a960-c84a0a822fcd", + "id": "c9165509-b927-4d5f-b95c-13225d0bd8bc", "name": "Update a Connector Rule", "request": { "name": "Update a Connector Rule", @@ -73477,7 +73477,7 @@ }, "response": [ { - "id": "15284c9e-f7ef-4f3c-95f9-c354d4849a4c", + "id": "69b390e5-ca63-46fb-b95b-6c21123e5f70", "name": "The updated connector rule", "originalRequest": { "url": { @@ -73543,7 +73543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8df6349-a407-497f-a077-fc11886ad8e4", + "id": "3ade1241-e671-463c-b72c-920e8feb466c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73609,7 +73609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bf260c7-54ec-48e8-b050-384b51953675", + "id": "4161d6e8-8403-45db-9d72-3e81c206c371", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73675,7 +73675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d47a91c-9266-4167-9479-0f62794b5aae", + "id": "d1cdc11c-16c4-4cfd-b916-6467d73af705", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73741,7 +73741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c980c4a-35a0-4932-8db0-cfa3b77cbe85", + "id": "c3d7cf32-df17-41eb-978c-cd937739ed30", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73807,7 +73807,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34015221-5570-4da1-b486-1c58e44d5fa1", + "id": "8b518507-150d-41bd-8fb9-f563aa3c697c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73873,7 +73873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54c86abe-05e7-4572-85ed-b5cbaf6d64b5", + "id": "d57967d4-6ebf-437c-87e6-9366ab751e52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73945,7 +73945,7 @@ } }, { - "id": "ac2b1534-c4ee-4dda-80c7-0223e91f4372", + "id": "938ea8dc-7565-44ce-b414-f607fc6ea1ba", "name": "Delete a Connector-Rule", "request": { "name": "Delete a Connector-Rule", @@ -73995,7 +73995,7 @@ }, "response": [ { - "id": "90a092ef-796b-480d-bdf4-c5965076813e", + "id": "a98541d3-7f51-4009-9b69-fcf0b14c656d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -74038,7 +74038,7 @@ "_postman_previewlanguage": "text" }, { - "id": "996d5776-1c4c-4d73-b255-7de85db9c128", + "id": "e3efc0fd-bf69-4635-82f1-87b0a4ec8ac0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74091,7 +74091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ad77e1-eb2b-4899-bd4c-086043dda513", + "id": "e910205d-03c4-4d24-9519-e601d7509c75", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74144,7 +74144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e62585d-8c70-424b-a180-7720967a8f32", + "id": "2ed7d324-7b38-436e-a241-051751a1ff34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74197,7 +74197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba4f6341-e942-4eb6-9253-f4241ae71065", + "id": "1d5c263d-86e3-487b-9fda-c117e199939c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -74250,7 +74250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda3aa64-a94a-4abc-bcd3-bf73fa59c2d5", + "id": "b2c0fd34-811d-4da8-9153-808def8ecaf1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74303,7 +74303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "714906d1-1bc6-4cf3-b134-0e43c6326e7c", + "id": "4bd5e0d4-7848-4a0b-8ab7-22a7e190b71d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74362,7 +74362,7 @@ } }, { - "id": "9eebf6c1-af2f-4744-a89d-2ed3f1f953db", + "id": "045c3906-4310-45c8-b349-62408d38016c", "name": "Validate Connector Rule", "request": { "name": "Validate Connector Rule", @@ -74414,7 +74414,7 @@ }, "response": [ { - "id": "2e308ace-e395-45ec-9cad-c2f24fbe7520", + "id": "cf5efaf8-20f5-45c4-9a29-d425094c156a", "name": "The status of the code's eligibility as a connector rule", "originalRequest": { "url": { @@ -74480,7 +74480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d85c3add-683c-4f36-abae-ab5564a88035", + "id": "b5de0d9a-a67d-41b4-bc0a-3a71d4b8143d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74546,7 +74546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd59446a-c135-4816-80d1-339cc8180fbd", + "id": "d2785a34-1ee3-446d-ad4c-65471430356a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74612,7 +74612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c11bbadf-5428-47b9-8097-5bf92e131668", + "id": "bb84f3ac-6051-41bc-ab22-a8992cfbd60c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74678,7 +74678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce1a5d4c-5ac5-40aa-b8e5-bf98760abaf0", + "id": "42a3830e-3d7e-453e-8619-d5ba7090a3ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74744,7 +74744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57b80818-a096-45e3-9d9b-de564db3f3f3", + "id": "1637523a-f347-4e5d-bb8d-1d78577576d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74822,7 +74822,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges Identity Security Cloud uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between Identity Security Cloud and the Active Directory source, a connector can bridge the two and enable Identity Security Cloud to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn Identity Security Cloud, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [Identity Security Cloud Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in Identity Security Cloud.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/docs/connectivity/saas-connectivity/) for more information about the SaaS custom connectors that do not need VAs (virtual appliances) to communicate with their sources.\n\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about using connectors in Identity Security Cloud.\n", "item": [ { - "id": "bd6164c5-289c-4041-8baa-e0b6fbe93125", + "id": "88db902a-5f15-4835-bd0d-5d70464c634f", "name": "Gets connector by script name", "request": { "name": "Gets connector by script name", @@ -74873,7 +74873,7 @@ }, "response": [ { - "id": "b453b33d-8d92-4a85-962e-1311ce1a68c7", + "id": "76887826-9236-4b48-916d-dd85f8046d94", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -74927,7 +74927,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e5aa26e-d23a-4a07-a00c-13eb46faace0", + "id": "71b5b949-c8bf-498f-a61d-17a5973062dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74981,7 +74981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53797345-5447-4743-bbde-865c12f70a1b", + "id": "31915ae8-0a92-4420-afbb-05976e083bff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75035,7 +75035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab8ad964-2d0b-49cc-9eec-55a8172c6fec", + "id": "9d1f9760-cff7-4f9f-8639-32593372eb50", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75089,7 +75089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53f5848e-337f-47f0-b2b5-d4244e868d15", + "id": "556313d5-abe9-4cbb-988b-5c393a79b6e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75143,7 +75143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de30baf9-3aca-4880-850d-77fff0fd13aa", + "id": "774797e6-5a31-4dba-91ac-0efa75da5c73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75197,7 +75197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a6c7dce-8d0e-4e54-8a98-8a773c9785f6", + "id": "91b994b6-67ba-437c-9189-4c83db4cfe4d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75257,7 +75257,7 @@ } }, { - "id": "15ee3904-2a88-4df1-bea2-022d2943d8f1", + "id": "44fad584-892f-4d67-b164-91033339d395", "name": "Deletes connector by script name", "request": { "name": "Deletes connector by script name", @@ -75298,7 +75298,7 @@ }, "response": [ { - "id": "39ab2301-ecc1-428b-bb6e-f8405ea401a5", + "id": "ec99ebf6-af5a-42db-849e-cec6a2814cee", "name": "The custom connector was successfully deleted.", "originalRequest": { "url": { @@ -75332,7 +75332,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0da9ebfe-0ff9-4ce8-87cd-9ad463af8aa3", + "id": "a1e07405-1d38-4452-b58a-32b7db249b1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75376,7 +75376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e119b029-d1ba-48f8-aebe-dc37a3e3a26d", + "id": "2e6d66d3-a53a-45d3-9016-e31838376661", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75420,7 +75420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfa49dda-fdd4-40c8-9fbb-deb21c95e7db", + "id": "48f1b6af-db43-445d-8bd9-59801d10828b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75464,7 +75464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e11425de-cfab-4690-b4a0-66163a987628", + "id": "66d2a25c-8be2-44aa-b5a4-9d1efa15a1ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75508,7 +75508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b8db5b-45e2-42e7-a45b-5a9e02257987", + "id": "1674a355-5ad0-4b2a-b4da-2ece31581825", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75552,7 +75552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c98fc6ec-0260-4b84-a3e9-8e3f8305a4cd", + "id": "7807abee-2299-4f6f-a87c-f06436936ffb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75602,7 +75602,7 @@ } }, { - "id": "ea5aef50-1555-41e6-820c-e8b1f2b5e11a", + "id": "9ec75e5e-68b7-444e-80ec-2694fa376274", "name": "Update connector by script name", "request": { "name": "Update connector by script name", @@ -75656,7 +75656,7 @@ }, "response": [ { - "id": "cae129bc-80d6-42be-a8c0-97e3d47966b2", + "id": "1cee0287-29d5-45ed-94a6-2cefc9d27871", "name": "A updated Connector Dto object", "originalRequest": { "url": { @@ -75713,7 +75713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72338578-4d42-448b-879f-935eebb50d59", + "id": "80dbc498-632e-4ff4-92a4-652628bf0c91", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75770,7 +75770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d20fb175-5dfb-4d02-9699-1c2ce37f5f4b", + "id": "6fe34a78-97ec-4f64-92d6-0144e3fb6c18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75827,7 +75827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f50ba6e4-4752-477c-9a1d-34463030e1f0", + "id": "147a89b4-e6ba-4ac4-8b7b-84e3ffd6e751", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75884,7 +75884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9601ed8f-886c-4345-969e-9bbb510a30ab", + "id": "046e9c13-5a75-4f6f-9fe4-9d39642dbad0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -75941,7 +75941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c9d65c-ac88-49e1-b67d-bc26c9e39e9e", + "id": "892f003d-87fa-4b47-bb07-a09a95584817", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75998,7 +75998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "737ffe6f-829b-4a6f-a2c9-49c18b3ac732", + "id": "938e4703-2177-4dca-9c2c-92ee6a07ecb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76061,7 +76061,7 @@ } }, { - "id": "06ee906e-a76e-455f-8752-39edc0dc7638", + "id": "b35cdf81-73a3-4da8-8ffa-ad7bd24aebc6", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -76136,7 +76136,7 @@ }, "response": [ { - "id": "8119f5cc-c3be-40b5-a062-4812709f9e99", + "id": "536d4a8e-5696-493f-aefa-e9173c4925eb", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -76225,7 +76225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f972c0c-97f8-45ed-88c0-6124500999f8", + "id": "c55d08ec-a8bd-4732-b998-be04376c5f94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76314,7 +76314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "223afcea-95ae-4da8-b91b-aa5938d6b419", + "id": "3997a685-3047-413b-8fc1-14671f60426b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76403,7 +76403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b809db6a-fc8d-4d23-87c2-ba8358403332", + "id": "f13960f9-adb3-402b-86fa-ecd01cca4e45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76492,7 +76492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7576ddf9-fa13-403d-a57e-cb171fb91160", + "id": "73acbfee-d725-4707-8107-dff95102fd0f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -76581,7 +76581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ef34987-0f86-4a23-8f07-6e0d3a16594e", + "id": "31c10e7c-9080-4faf-b13c-1993db34e889", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76670,7 +76670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b7fd4dc-031c-45d9-a752-236c7d386165", + "id": "2db444f2-e304-4acb-929c-9e43321bb0c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76765,7 +76765,7 @@ } }, { - "id": "a9bbf5c7-a588-4e57-b29a-b715de1393a2", + "id": "0d1631dc-60c8-4cbe-9878-570cd8570b85", "name": "Create custom connector", "request": { "name": "Create custom connector", @@ -76807,7 +76807,7 @@ }, "response": [ { - "id": "5ed49681-a8b8-4466-892d-37c3cb691e3f", + "id": "606351da-112f-439f-a554-9ab8534c556a", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -76863,7 +76863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "757b2031-2555-425e-83cc-2638f360f379", + "id": "99147d07-a6ce-4801-ba14-40ce5cb60dcc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76919,7 +76919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1054917-2cbe-4c21-a9cd-cc4fbe847302", + "id": "536d17e6-df65-4c75-a734-8da8f3ba1759", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76975,7 +76975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c08e6c0-d434-447e-8841-917c1094be54", + "id": "8d226106-40b5-4091-a396-ef931f9b920f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77031,7 +77031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9de3b1d-3c96-4216-9f9a-0220659bd2bf", + "id": "3f7a122b-5db7-4211-8556-bf9b176965e1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77087,7 +77087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da3d3b2e-b757-4f91-811d-6ff88ca7f946", + "id": "72bf6d1e-cb3a-4739-a3b7-eb9ab113a3ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77143,7 +77143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8667fcf-5ecf-46a9-9009-6275093946cb", + "id": "d3ab5e8c-84b2-4ec4-95b0-14551c505df2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77205,7 +77205,7 @@ } }, { - "id": "d987155f-c7f6-4bc1-bd7d-af4459ef1de3", + "id": "a520e2cd-452d-48d4-b4b4-ff26c462bb5e", "name": "get Connector Source Config", "request": { "name": "get Connector Source Config", @@ -77247,7 +77247,7 @@ }, "response": [ { - "id": "9e10df2a-c7cd-4949-a663-346b2e196987", + "id": "6d44c5a0-23d2-4318-919a-baecd8977608", "name": "The connector's source template", "originalRequest": { "url": { @@ -77292,7 +77292,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "c84fad0b-30fe-4583-87ba-83d2ec244649", + "id": "30799826-5f9e-4319-b549-bf7432a311b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77337,7 +77337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eabbbc2-989a-4afa-98db-02d4a731e45f", + "id": "31f88e4b-86d8-414d-af5d-f57a7c86c4ff", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77382,7 +77382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcaaa624-7499-45f2-8c3a-00ff66f19628", + "id": "692627d2-f9ba-435a-bf55-cc29ea2df4be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77427,7 +77427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93af06fc-da51-4203-a11e-fd7e7d47614c", + "id": "da71076f-c9d4-478f-b5bb-a4279b03d2b3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77472,7 +77472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdad604e-b5ca-431e-9536-1334db3b1c82", + "id": "58108161-f222-480f-b6cb-0b0d0d76965f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77517,7 +77517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb7f2af-ad0f-4ae0-9558-a332dbaac8d6", + "id": "d813a505-0a5b-444b-8136-44b30565c1dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77568,7 +77568,7 @@ } }, { - "id": "508e8a17-6220-4e02-8be8-cb289e0f76dd", + "id": "02c15f31-3d05-4004-896f-86b2c0f7ba41", "name": "put Source Config", "request": { "name": "put Source Config", @@ -77626,7 +77626,7 @@ }, "response": [ { - "id": "013b4a73-cb9b-486b-a27d-2308eb22c48e", + "id": "2addca2f-e135-4119-91e6-03df516c2766", "name": "The connector's update detail", "originalRequest": { "url": { @@ -77687,7 +77687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0155f60c-4ffb-4be6-bb6a-2f9dcf0a6e16", + "id": "40bbd2a5-acef-4e92-b1cb-2a62df1e4b5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77748,7 +77748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "537a4cd9-8bf5-4218-accb-039227f099a6", + "id": "dcc42e3c-9e99-49a6-b356-1de97c847b22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77809,7 +77809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8947a3e-2857-459c-b723-741f9f706da8", + "id": "0e6264b0-4b73-426b-bfa0-5188fb5f8fea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77870,7 +77870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "583bd68e-d08c-4801-a394-224e84e51125", + "id": "707dbe8d-8710-4ea2-aafd-1d657fb3be50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -77931,7 +77931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73e41a6d-fdf2-442c-8bbd-5a074c8ae92e", + "id": "c4d844e6-c3f4-4cce-b145-fec4d30b60b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77992,7 +77992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85516f54-69fb-498f-ae45-8e69f4399578", + "id": "8463e3a8-92f2-4b51-b6ec-f2325afe65f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78059,7 +78059,7 @@ } }, { - "id": "f24dc12f-41ac-46d5-a558-72953514299b", + "id": "d54f4044-010d-4547-94de-5c74edfd1820", "name": "get Connector Translations", "request": { "name": "get Connector Translations", @@ -78112,7 +78112,7 @@ }, "response": [ { - "id": "a24b9921-54eb-4bb7-a570-2ca8b52aaac2", + "id": "959a3915-c61e-4bf9-b877-55f3ffbd698f", "name": "The connector's translations", "originalRequest": { "url": { @@ -78153,12 +78153,12 @@ "value": "text/plain" } ], - "body": "sint amet", + "body": "dolore ut labore dolore", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "b73558e3-98a6-429c-9224-3af0866eb646", + "id": "abca2df0-afba-4365-a463-7911da8b0b9a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78204,7 +78204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bacf45d-5d35-494b-88c8-7b187910b816", + "id": "d74a1b24-857c-4359-b5fb-881ec2f09c44", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78250,7 +78250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852c3b94-08ec-4eea-89be-68a76a8959b2", + "id": "07a6b689-fa84-4cca-87b0-6db934ae60a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78296,7 +78296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92e6cb12-3d13-4bb5-a723-1eae3964e7fc", + "id": "eae35ad2-0d29-45b2-8fad-069211a17924", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78342,7 +78342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82403831-796d-47d4-aec9-d83611da4612", + "id": "e42b939b-1124-4693-899f-94b6b75d6ca9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78388,7 +78388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48ab5217-0c91-49a5-af72-a4a2b507e9e5", + "id": "58568eea-cb94-457b-b86e-f307a17ec53a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78440,7 +78440,7 @@ } }, { - "id": "a8ec8f0b-c42f-41f0-96f6-23dc0996087a", + "id": "8e7e5e9b-407d-43fd-a85b-621a122f3e34", "name": "put Translations", "request": { "name": "put Translations", @@ -78500,7 +78500,7 @@ }, "response": [ { - "id": "94b52972-3578-4926-bb37-2019211403c0", + "id": "16f97007-b91b-408a-97cb-3a670d8a243e", "name": "The connector's update detail", "originalRequest": { "url": { @@ -78553,7 +78553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4da450b-1842-49e0-bdd6-466f0a6ccfc9", + "id": "06331c43-07b1-4213-9f30-ab2233023f34", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78606,7 +78606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1612dfc-757f-48b2-a536-208e38fdb51a", + "id": "820c4d3f-65ca-4096-b61e-09954521158e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78659,7 +78659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d1dfae0-d282-4882-84cb-6398d2f05091", + "id": "de09eed0-7655-4445-9557-d74ae9edb152", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78712,7 +78712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdb33db5-1c33-458b-b649-f180fe2a44c4", + "id": "00fa53fc-8623-4466-abea-155f411eba50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -78765,7 +78765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "333b96f9-7194-47a9-af61-2c8ba1666d57", + "id": "6d733a75-f964-4c9d-a607-0f6001c83402", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78818,7 +78818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9f8ea2f-4733-4ec8-9023-7b06f11add17", + "id": "2064260f-71c9-4bd7-9c8c-87026ec7e5cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78877,7 +78877,7 @@ } }, { - "id": "cca62979-6408-4063-b863-3a8dab6cc587", + "id": "ab76d3ec-f3b5-4da1-8abb-e58e6e73a6f6", "name": "get Connector Source Template", "request": { "name": "get Connector Source Template", @@ -78919,7 +78919,7 @@ }, "response": [ { - "id": "b86be3df-830e-41b1-acdd-3ff00b42be39", + "id": "1c41e7e4-84be-425b-8f9a-b4c230f5ddbd", "name": "The connector's source template", "originalRequest": { "url": { @@ -78964,7 +78964,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "364cbca0-7573-4bcc-b35f-e8e1655e24c6", + "id": "8aa0d3ca-2b46-4aba-81a5-4612086adaee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79009,7 +79009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "525a90b6-8516-45cc-adde-e767ea533058", + "id": "04dd32f6-45e4-4c2f-b15d-af6d7be7f5d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79054,7 +79054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fe001be-68fd-42d2-9864-df094f40d0a9", + "id": "2c2c6989-e32a-4b68-aa55-de3913e51801", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79099,7 +79099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2403d2e3-4bf4-4aa4-a017-8e7187ba68fc", + "id": "853c7b95-6a25-4f5e-8ab4-7c7c64df4415", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79144,7 +79144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b35f6f-3aa5-4f06-8c50-99e39cc6c0df", + "id": "3cb110e7-ffe6-4b37-a796-b521e8b6f070", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79189,7 +79189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dec986c-bcd3-4637-871d-7ae3948b3d8b", + "id": "66c6f138-3987-425d-9a16-f3a134e3446c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79240,7 +79240,7 @@ } }, { - "id": "74609042-d8fa-4f54-aaf1-d45c6e936765", + "id": "6460859c-e67f-4a5d-b6e1-d0fd467a73ff", "name": "put Source Template", "request": { "name": "put Source Template", @@ -79298,7 +79298,7 @@ }, "response": [ { - "id": "40f534d1-349e-4992-8385-3e6ae73a892d", + "id": "25fc8086-5b47-4f39-b308-bc6566360f52", "name": "The connector's update detail", "originalRequest": { "url": { @@ -79359,7 +79359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "101ad85d-b014-467c-aca3-c6de15656935", + "id": "1b638ff1-862c-4b71-85f7-3e19107f2465", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79420,7 +79420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8daf097-b0fb-4421-9618-d25f3c2ee623", + "id": "cd721ad5-1341-454d-87bb-b1409d8c344d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79481,7 +79481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a21c4977-3b09-4a00-8010-6c439f74e13a", + "id": "8caf8344-75a3-476c-ab0b-c37842470011", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79542,7 +79542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "781b5194-1ad9-435e-bd54-4d6bd4eccf09", + "id": "5d253a0f-0dba-45af-b5f4-56660b36d2f6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79603,7 +79603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "933d17c8-e74b-48c1-b71b-7cb5334a2b1f", + "id": "f0aac380-2330-4954-a5ce-6a18468ecd77", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79664,7 +79664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a80d6d8-7785-4629-8850-1ffb930ede6f", + "id": "a661de18-7567-45e0-880d-0b5e24db0dbf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79731,7 +79731,7 @@ } }, { - "id": "3f68c564-fe2f-40cc-8d47-4b6a8fd73cac", + "id": "cff116cc-9bbb-48ea-b58e-e334fdd04766", "name": "get Connector Correlation Config", "request": { "name": "get Connector Correlation Config", @@ -79773,7 +79773,7 @@ }, "response": [ { - "id": "552fec7a-8752-40f3-8643-e03f6033f4e4", + "id": "9de4324f-529f-4629-86ca-b038ae560b14", "name": "The connector's correlation config", "originalRequest": { "url": { @@ -79818,7 +79818,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "1b9f4597-1138-4725-bc94-ae0cca426e14", + "id": "eb672b41-8883-47a9-baa2-dbb27f64936d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79863,7 +79863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc48580-86eb-4a59-a9fc-8a23f9b6e178", + "id": "490cbf4f-066f-4b5b-b560-565d8fe70075", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79908,7 +79908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66099088-0757-4e8b-86d5-2f3027ef4f6c", + "id": "2421498a-5d0b-4139-8d01-970ef5b38c2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79953,7 +79953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "767bb874-7622-4d56-b7a7-349f3068b4b6", + "id": "9deb0529-91be-47fd-9b7d-1e2f073de610", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -79998,7 +79998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7aaf4c16-9998-4b0f-99bc-03495b903f5f", + "id": "2caf5f09-613d-4ddf-9a58-4f5dff4b8616", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80043,7 +80043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d55a1146-98e2-4778-b3b8-c52b995b004d", + "id": "1993854f-9af9-4a72-b63d-4229985907d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80094,7 +80094,7 @@ } }, { - "id": "78d5dc17-ea71-47be-b014-9ab1bf3c69c4", + "id": "89bc9496-1f8f-4172-9595-0126d4d59d21", "name": "put Correlation Config", "request": { "name": "put Correlation Config", @@ -80152,7 +80152,7 @@ }, "response": [ { - "id": "4a3ffb3a-67ec-4776-a7d2-3a0bf99c8336", + "id": "05363a7c-b508-42ab-a9b4-a998a852821b", "name": "The connector's update detail", "originalRequest": { "url": { @@ -80213,7 +80213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bb2ba93-012d-4686-87c9-fd897201fe88", + "id": "c31db1e7-993f-4240-a4d9-219002f9fc28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80274,7 +80274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b065c7da-2b36-49e7-8bcc-cc531745b52a", + "id": "00f63276-1cd3-4038-b0b2-73645304111c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80335,7 +80335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f6961d-4ee0-47d1-8a6e-e41a8d0705d9", + "id": "54ba3463-5088-4b62-a2ec-08013c4b46be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80396,7 +80396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89b01557-0056-4461-9068-2aac6192561d", + "id": "70700836-8d21-447e-a268-661e7460379f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -80457,7 +80457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea508bdb-0ffc-4543-a138-8edd1d08753f", + "id": "276838fb-7335-4b22-9a34-20b07237f481", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80518,7 +80518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98e4094a-3ac9-4313-800f-aa4c64d3663c", + "id": "1aae5963-1902-4110-92f2-05534e220367", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80591,7 +80591,7 @@ "description": "Use this API to build and manage custom forms.\nWith this functionality in place, administrators can create and view form definitions and form instances.\n\nForms are composed of sections and fields. Sections split the form into logical groups of fields and fields are the data collection points within the form. Configure conditions to modify elements of the form as the responder provides input. Create form inputs to pass information from a calling feature, like a workflow, to your form.\n\nForms can be used within workflows as an action or as a trigger. The Form Action allows you to assign a form as a step in a running workflow, suspending the workflow until the form is submitted or times out, and the workflow resumes. The Form Submitted Trigger initiates a workflow when a form is submitted. The trigger can be configured to initiate on submission of a full form, a form element with any value, or a form element with a particular value.\n\nRefer to [Forms](https://documentation.sailpoint.com/saas/help/forms/index.html) for more information about using forms in Identity Security Cloud.\n", "item": [ { - "id": "ca0548ec-100f-468e-bceb-4d5585cce920", + "id": "8f3a22b1-f8d3-4c47-9c1c-42fbd1afeab6", "name": "Export form definitions by tenant.", "request": { "name": "Export form definitions by tenant.", @@ -80666,7 +80666,7 @@ }, "response": [ { - "id": "61e17819-36c9-42c1-848f-493482422c03", + "id": "71764c04-c02a-423c-8eec-ad859624585f", "name": "Returns a list of form definitions by tenant", "originalRequest": { "url": { @@ -80750,12 +80750,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit Duis eu nos\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip labore elit aute\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim irure qui deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"deserunt proident labore laborum\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"tempor est in Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure ea cupidatat quis\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint et\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliqua\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n }\n ]\n}", + "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint ipsum commodo\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"eu dolore aute\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ullamco\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat do consequat\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint fugiat tempor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor \"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"culpa in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est \"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ca9a1092-397c-43bf-beaf-a68eca4c4386", + "id": "331b8912-867e-4646-b005-2e9c9c0a6b88", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -80839,12 +80839,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fe9aef53-7621-4f91-84d4-cb606bddcc82", + "id": "de71f2ab-438a-4311-a1c0-2b4bad58c47c", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -80928,12 +80928,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2084f302-dd7f-4eb4-830a-d72fce696c9c", + "id": "522e1872-14bd-403a-aaa3-8ea789b2c2ab", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -81017,12 +81017,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c741471b-0089-4ab3-a760-c510926e2a88", + "id": "016b2c93-cb12-47e8-a320-db4640d171cb", "name": "Too many requests", "originalRequest": { "url": { @@ -81111,7 +81111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d2c49b-2023-4578-bd28-af940ce9e734", + "id": "1d777be5-0e86-4a40-b1bc-c26e017a2880", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -81195,7 +81195,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -81206,7 +81206,7 @@ } }, { - "id": "2c66bd97-5fc4-4efa-8895-b5f8f639aeb5", + "id": "b351cc0e-8e94-4ca8-92fc-ea22353588c6", "name": "Creates a form definition.", "request": { "name": "Creates a form definition.", @@ -81254,7 +81254,7 @@ }, "response": [ { - "id": "20edd4a3-c1ef-427e-b07c-b24bca9e0a24", + "id": "304b9bec-517d-4690-8026-65ef9fddd152", "name": "Returns a new form definition", "originalRequest": { "url": { @@ -81314,12 +81314,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna veniam nisi cillum do\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit exercitation dolor irure laborum\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud do dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing ipsu\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim consequat adipisicing\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea elit\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est magna ea deserunt voluptate\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt sint\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "627ebcee-f209-4aa8-8c9f-3677b2f4fc81", + "id": "62ebde6e-3371-4e71-a0a6-77f02a51fede", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -81379,12 +81379,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "94d040dc-cda0-4f15-9e94-788669a5e6f9", + "id": "6d842c17-e6bc-4c5c-8a88-a166c53eb056", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -81444,12 +81444,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6bfa974-1097-4a80-9554-c3ee55fbd592", + "id": "801ed975-0c25-445c-89f2-180e74d8d6b4", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -81509,12 +81509,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a6f8f910-9e2b-4346-985a-51d0c367e3a0", + "id": "03155bd3-92db-4a10-9fa8-2a779ff48718", "name": "Too many requests", "originalRequest": { "url": { @@ -81579,7 +81579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0283853-9251-4e32-a3a2-4bec2cac3373", + "id": "a6e9b57c-e1fe-4b86-9036-ca7badbd54b3", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -81639,7 +81639,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -81650,7 +81650,7 @@ } }, { - "id": "8867e49d-385b-42ec-9416-37152f2e5645", + "id": "99a39b08-75ec-4f96-b21e-1afa7ff371b3", "name": "Return a form definition.", "request": { "name": "Return a form definition.", @@ -81700,7 +81700,7 @@ }, "response": [ { - "id": "c60b2382-4030-4d44-b435-69819d2353e4", + "id": "5c20f352-8247-44ef-a935-4c8d8b1c3c77", "name": "Returns a form definition", "originalRequest": { "url": { @@ -81748,12 +81748,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna veniam nisi cillum do\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit exercitation dolor irure laborum\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud do dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing ipsu\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim consequat adipisicing\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea elit\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est magna ea deserunt voluptate\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt sint\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7c2fe49-5abf-4658-9a69-388598999b81", + "id": "78f4e7d3-be36-40f1-8475-2f5978bd6b32", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -81801,12 +81801,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8a4cabd4-24bb-4bcc-9981-554e9db424f4", + "id": "64b95dd6-7e19-4c98-903f-31942e8b6c4e", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -81854,12 +81854,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eb09b0ea-df3d-4a21-812d-34ad6fc199d6", + "id": "6299bfa5-9a02-488d-8922-1e46c79e52d4", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -81907,12 +81907,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a1699874-f61e-41a5-84c4-519e36933b0f", + "id": "ebf2bef2-ffa1-43d6-be33-e028a649dff9", "name": "An error with the item not found", "originalRequest": { "url": { @@ -81960,12 +81960,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33a2d827-94c9-4ac6-ac40-07b7517b5d20", + "id": "fc2c8b80-20bb-40cd-9570-60825fff780f", "name": "Too many requests", "originalRequest": { "url": { @@ -82018,7 +82018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e5e121-a33b-49e9-a1e8-6c9a6f432fdb", + "id": "86dd20c5-7447-4ed8-bdf9-dc4b60430226", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -82066,7 +82066,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82077,7 +82077,7 @@ } }, { - "id": "552b99ca-60ac-49d4-a3d7-acaecfea014f", + "id": "64972603-00cf-4ca0-b8b9-6c5d702eff6b", "name": "Deletes a form definition.", "request": { "name": "Deletes a form definition.", @@ -82127,7 +82127,7 @@ }, "response": [ { - "id": "0e2194aa-3d41-4e06-91b4-e58e2c2eaa93", + "id": "7989162a-f62e-48ae-b3e4-f85bba97b95a", "name": "Returns an empty body", "originalRequest": { "url": { @@ -82180,7 +82180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fd45d44-ef79-4738-8e61-7bb61bbf2663", + "id": "bd71331e-109f-478e-8c12-35e9bee58788", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -82228,12 +82228,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bade6dbc-a88b-42c2-bf17-9f14b3145918", + "id": "b5cd9f5e-4248-4577-82de-321f2214ee7c", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -82281,12 +82281,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "87c30dcf-8e04-4610-8e14-cd2662d76811", + "id": "669ae259-726f-4529-a9b0-15454d80b170", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -82334,12 +82334,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8d928623-bba5-45f6-bf4e-1e40d3bb2629", + "id": "e36434f0-54f2-4bc9-8048-69a483d39aec", "name": "An error with the item not found", "originalRequest": { "url": { @@ -82387,12 +82387,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fa6ccb6d-f457-4bc6-8ae2-215cf16645ad", + "id": "e00e65ef-e792-4147-9fe0-8fb26a625947", "name": "Too many requests", "originalRequest": { "url": { @@ -82445,7 +82445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c61e022-2231-4877-bcc4-ff912fb356af", + "id": "e9958928-5f79-479c-b2e9-57d2a117af46", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -82493,7 +82493,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -82504,7 +82504,7 @@ } }, { - "id": "a4676f93-0f76-4870-8b62-76d8d1e25889", + "id": "02fff706-4270-44bc-b7d4-1b5630d1f1b5", "name": "Patch a form definition.", "request": { "name": "Patch a form definition.", @@ -82567,7 +82567,7 @@ }, "response": [ { - "id": "d4bd07dc-2e17-4466-a151-bf1eb30b3522", + "id": "829fe9a3-4b4b-4505-aaec-c6ce540bd630", "name": "Returns the form definition updated", "originalRequest": { "url": { @@ -82628,12 +82628,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"magna veniam nisi cillum do\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"mollit exercitation dolor irure laborum\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud do dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"adipisicing ipsu\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", + "body": "{\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim consequat adipisicing\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ea elit\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"est magna ea deserunt voluptate\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sunt sint\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "22e39e84-41f2-4f9d-9a46-402217913bc6", + "id": "44c108d3-baa2-4b99-b6a5-c9c91e363393", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -82694,12 +82694,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e257ac2d-6ab5-4b9d-bd2d-46c0f18eb843", + "id": "1077354e-d92c-4594-8ace-27f1c6c9f1d0", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -82760,12 +82760,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1e5e5b3d-8260-4cbb-a8a9-692cb1ef0b8b", + "id": "1809331c-6b79-4b8d-ad99-5b1c637ca858", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -82826,12 +82826,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5f7d4fde-0ea7-4c6e-982b-efa3df261b36", + "id": "c13187b9-a257-42fa-9717-cf1e86f5688a", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -82892,12 +82892,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c98dd72e-670d-4a11-952c-181d678c1dae", + "id": "1d323dee-e48e-423c-98ee-7fd0a4b1cf7b", "name": "Too many requests", "originalRequest": { "url": { @@ -82963,7 +82963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424a94b7-28eb-431c-ac98-7914eec167f5", + "id": "48557202-61a8-4018-a34a-08723ed7dd60", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -83024,7 +83024,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83035,7 +83035,7 @@ } }, { - "id": "9f80d254-5267-4e10-a289-060c1ff714f0", + "id": "653b8f91-c1b2-4765-8374-94d05bfb8fef", "name": "Preview form definition data source.", "request": { "name": "Preview form definition data source.", @@ -83124,7 +83124,7 @@ }, "response": [ { - "id": "16585d9c-eb8a-47d2-a483-20b0648ef247", + "id": "9cd134e2-69de-44e2-8cac-5164882198e3", "name": "Returns a preview of a form definition data source", "originalRequest": { "url": { @@ -83219,7 +83219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49685fac-616b-4b90-8126-37f0e0f2c685", + "id": "5ead37e8-a8b1-4011-8019-ef579f956482", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -83309,12 +83309,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b5522ee6-a7f7-45aa-8365-e8750c664ad2", + "id": "77fa2c1c-5d7e-470a-a7df-00bc51c6ad5d", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -83404,12 +83404,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dddb4589-b088-4160-846c-2875c36a3f0d", + "id": "0867ce84-e38e-444e-8251-7def0ac38faf", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -83499,12 +83499,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b34056f-5ef3-478d-b76f-e5460756ed70", + "id": "74c1ecb9-4cec-42ac-a339-650c7e4acfb8", "name": "An error with the item not found", "originalRequest": { "url": { @@ -83594,12 +83594,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0c8ec492-adef-4b15-bf0a-81fdae005aa3", + "id": "02ee8fa5-0b59-494a-b6f5-dd51145137ec", "name": "Too many requests", "originalRequest": { "url": { @@ -83694,7 +83694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aff64b33-df83-464f-a0c1-d75ccbd42ec2", + "id": "4021520c-1b5e-4727-9d75-baa9a9436f65", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -83784,7 +83784,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -83795,7 +83795,7 @@ } }, { - "id": "13adcd0a-dae5-462e-b1c0-523ed8a89533", + "id": "b9a0f3bb-6781-461e-9471-d105de2eb652", "name": "List form definitions by tenant.", "request": { "name": "List form definitions by tenant.", @@ -83871,7 +83871,7 @@ }, "response": [ { - "id": "3d8184a6-eb0d-43c7-bed9-1cc2263576f0", + "id": "7d2087ff-6816-4a61-bf69-e2d41c3a1af3", "name": "Returns a list of form definition objects by tenant used by SP-Config", "originalRequest": { "url": { @@ -83956,12 +83956,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliqua incididunt do nulla\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id qui nisi Lorem\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"amet occaecat\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"sit sint commodo\",\n \"version\": 43748599\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"reprehenderit Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sit esse\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat dolor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor mollit sunt elit ipsum\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"consequat qui do reprehenderit\",\n \"version\": -76053569\n }\n]", + "body": "[\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"irure ut cillum Duis\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Ut\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"minim laboris tempor esse\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolore culpa\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"sunt officia\",\n \"version\": 62404488\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"eiusmod ut officia\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"et sunt nostrud\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ex nisi est deserunt\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem ipsum \"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"sed in exercitation es\",\n \"version\": -85635222\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9cc89110-421b-4c84-ab10-8d0561260b9b", + "id": "974bb46b-0ac3-4857-8812-e0d4b7d79f02", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -84046,12 +84046,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fecc9e8a-0688-4ce1-a5ee-37d89afa1ee4", + "id": "e5dc5eff-1470-4a96-9f79-8b3e39bd7892", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -84136,12 +84136,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "afc3fc50-f625-4f80-8383-77e8773e56e9", + "id": "47ee4cd4-4b80-4e7b-8988-7d261ab78ce6", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -84226,12 +84226,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7e9bf61-2d6b-4a62-8e1f-c6cb651eee1a", + "id": "f1c2d16d-77ff-4148-9b57-fdc5307620cf", "name": "Too many requests", "originalRequest": { "url": { @@ -84321,7 +84321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a48ab4fe-a006-4cad-a926-9ef76f386253", + "id": "45af7d80-2463-4e6c-881d-22153b1fdfc3", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -84406,7 +84406,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84417,7 +84417,7 @@ } }, { - "id": "90f194c2-c2c5-4aa2-b751-87840d6cef63", + "id": "83a069e0-267e-4579-844f-5ac3e1eded0f", "name": "Generate JSON Schema dynamically.", "request": { "name": "Generate JSON Schema dynamically.", @@ -84466,7 +84466,7 @@ }, "response": [ { - "id": "4b4b3e23-2f81-4d73-a6cf-95883aa5e7ad", + "id": "aebbe14f-e98a-46fb-9215-bf16103f9185", "name": "Returns a form elements dynamic schema", "originalRequest": { "url": { @@ -84532,7 +84532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f177d28-7cb1-4ee6-9c96-2da292c5962d", + "id": "abe3a696-3554-4b93-870a-5a3774b79b7d", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -84593,12 +84593,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1bf3af0f-0e6a-4b17-9af4-3ba2760ca6f0", + "id": "564f4bd7-8bc4-4479-a377-f14a9786b04a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -84659,12 +84659,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f9d9057c-9a28-4fc1-99d6-685ff57a8ec3", + "id": "0ae53b68-bdeb-4242-b0f6-fa78b1c2ac95", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -84725,12 +84725,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "33f19bb5-c7a7-4d38-ace7-f23a6c43591e", + "id": "5ba6acb8-fe2e-4171-bcb6-dccbe7863671", "name": "An error with the item not found", "originalRequest": { "url": { @@ -84791,12 +84791,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e5b20a01-6f4b-4081-95e4-0e290cab9a20", + "id": "3ece22e7-02c4-412a-a66b-a124ddfa59ba", "name": "Too many requests", "originalRequest": { "url": { @@ -84862,7 +84862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b081a67e-6478-415d-84b2-3a905a56f3c6", + "id": "3ba2aedd-a3f2-4226-9051-27bddfa2daab", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -84923,7 +84923,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -84934,7 +84934,7 @@ } }, { - "id": "a5580964-07af-45ec-a58a-507f6d9b07f8", + "id": "8fd035dc-8c36-44a0-adaf-8fc6a106adcd", "name": "Import form definitions from export.", "request": { "name": "Import form definitions from export.", @@ -84983,7 +84983,7 @@ }, "response": [ { - "id": "a250223e-ce6a-4cda-819d-919a4728be3d", + "id": "6c2f9f98-7b09-4508-afbc-4ad99666f72f", "name": "Returns statuses of those form definition objects imported", "originalRequest": { "url": { @@ -85044,12 +85044,12 @@ "value": "application/json" } ], - "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"commodo_89d\": {},\n \"minim_ea1\": {}\n },\n \"key\": \"ull\",\n \"text\": \"deserunt dolor laboris dolore nulla\"\n },\n {\n \"detail\": {\n \"cupidatat3\": {}\n },\n \"key\": \"aliqua Lorem amet\",\n \"text\": \"in dolor sed sint\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip Ut ipsum\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"veniam in minim cillum non\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sint\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in laboris elit reprehenderit\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"enim officia\",\n \"version\": -17954321\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliqua sint do\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident fugiat deserunt\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"exercitation aliqua laborum anim\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"pariatur id nisi\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"qui sint\",\n \"version\": -64856767\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"voluptatef\": {}\n },\n \"key\": \"eiusmod voluptate sed pariatur\",\n \"text\": \"in cupidatat Ut amet reprehenderit\"\n },\n {\n \"detail\": {\n \"nostrud_40f\": {},\n \"eu__\": {},\n \"incididunt_320\": {},\n \"nulla_38\": {}\n },\n \"key\": \"ut consequat voluptate ipsum\",\n \"text\": \"in\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"qui_fec\": {},\n \"culpaa7f\": {}\n },\n \"key\": \"exercitation fugiat\",\n \"text\": \"ea\"\n },\n {\n \"detail\": {\n \"esse_d31\": {}\n },\n \"key\": \"id veniam dolor\",\n \"text\": \"Lorem ut et\"\n }\n ]\n}", + "body": "{\n \"errors\": [\n {\n \"detail\": {\n \"in_4d2\": {},\n \"deserunt5ae\": {}\n },\n \"key\": \"proident sint cupidatat\",\n \"text\": \"ut cillum velit anim culpa\"\n },\n {\n \"detail\": {\n \"nulla_7\": {},\n \"commodo_317\": {}\n },\n \"key\": \"esse pariatur dolore dolore id\",\n \"text\": \"velit\"\n }\n ],\n \"importedObjects\": [\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"laborum occaecat exercitation\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sit deserun\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat incididun\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliquip esse dolore eu anim\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"amet velit\",\n \"version\": 37105617\n },\n {\n \"object\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"name\": \"My form\",\n \"description\": \"My form description\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180867624cbd7017642d8c8c81f67\",\n \"name\": \"Grant Smith\"\n },\n \"usedBy\": [\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n },\n {\n \"type\": \"WORKFLOW\",\n \"id\": \"61940a92-5484-42bc-bc10-b9982b218cdf\",\n \"name\": \"Access Request Form\"\n }\n ],\n \"formInput\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"STRING\",\n \"label\": \"input1\",\n \"description\": \"A single dynamic scalar value (i.e. number, string, date, etc.) that can be passed into the form for use in conditional logic\"\n }\n ],\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate magna enim sed\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occ\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"ipsum incididunt veniam labore\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sit et nulla magna\"\n }\n }\n ]\n }\n ],\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\"\n },\n \"self\": \"officia quis\",\n \"version\": -86235935\n }\n ],\n \"infos\": [\n {\n \"detail\": {\n \"elit_a\": {},\n \"nulla_748\": {}\n },\n \"key\": \"nulla in consectetur elit\",\n \"text\": \"Duis do ul\"\n },\n {\n \"detail\": {\n \"velit8a\": {},\n \"dolore_c\": {},\n \"reprehenderit2a\": {}\n },\n \"key\": \"anim eiusmod in veniam\",\n \"text\": \"irure sint eu quis\"\n }\n ],\n \"warnings\": [\n {\n \"detail\": {\n \"magna72\": {}\n },\n \"key\": \"id consectetur aliquip\",\n \"text\": \"laboris Duis sed nulla\"\n },\n {\n \"detail\": {\n \"magna03\": {},\n \"voluptate809\": {}\n },\n \"key\": \"laborum\",\n \"text\": \"Excepteur est\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "00af7c8f-b312-4da1-9588-05647aa502c1", + "id": "be9be916-6d2c-46aa-aade-a5778863e6ad", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -85110,12 +85110,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b2069b83-e52f-4c9a-b1cd-a6784c173030", + "id": "c87d96db-6c35-4bca-9241-125492a97827", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -85176,12 +85176,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "302b9825-59b5-4c6c-b2f6-3a7ba75e80aa", + "id": "e0bf8ae7-9b5c-480c-8299-c5cdcdb8b213", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -85242,12 +85242,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36e0fdd6-ff4b-472e-b05c-e3181ff3180a", + "id": "8365b9de-78c3-467e-992b-63fcec9036c7", "name": "Too many requests", "originalRequest": { "url": { @@ -85313,7 +85313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c41b6812-994b-4137-8abd-419baceca936", + "id": "8e57fc91-885c-4201-a435-164c2a356e30", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -85374,7 +85374,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -85385,7 +85385,7 @@ } }, { - "id": "d98e7eed-b76f-4da3-b41f-914dcf139386", + "id": "917c661d-0f4b-418a-b134-1d963e7a3e1c", "name": "Upload new form definition file.", "request": { "name": "Upload new form definition file.", @@ -85453,7 +85453,7 @@ }, "response": [ { - "id": "ed0e74a1-caa7-4263-9008-f8dd4adea445", + "id": "597a0719-80b7-4fa5-9449-baf7e1c8d663", "name": "Returns a new form definition file", "originalRequest": { "url": { @@ -85524,7 +85524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "599b45f5-1bce-45a2-ba74-c76504a0f376", + "id": "33dce3f0-9745-4ae3-87ae-07e956fd4059", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -85590,12 +85590,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9dc89fec-b055-4b38-82dd-6961d2819e3e", + "id": "9d0c328d-b64c-48b6-b0c8-d912f76d3384", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -85661,12 +85661,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "13fcdf05-aae7-47d6-b37b-c3dc742776e3", + "id": "26748c85-6807-431e-a591-98e03220d6d8", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -85732,12 +85732,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b99b4448-04bf-40d8-b88d-54e381ca590f", + "id": "98f825ea-d93a-4aa5-b930-55330163f919", "name": "An error with the item not found", "originalRequest": { "url": { @@ -85803,12 +85803,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dd636371-2b29-432a-8be2-b738ada4e78f", + "id": "b56ed2fd-c4f3-42f5-9911-816700ff111c", "name": "An error with payload size too large", "originalRequest": { "url": { @@ -85874,12 +85874,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a50b5824-bb6a-4f9e-ab17-8134aa28ba99", + "id": "b616c283-502a-42f3-acb6-ca63035ee203", "name": "An error with unsupported media type", "originalRequest": { "url": { @@ -85945,12 +85945,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "797ae569-3a2b-4756-b116-97b24abde347", + "id": "dc424532-e241-45a9-8cd5-ed4063c40490", "name": "Too many requests", "originalRequest": { "url": { @@ -86021,7 +86021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa5f3b10-5130-4267-bf23-ae865929113c", + "id": "e8a81b2f-ce6b-495b-9f56-4718ccf96616", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -86087,12 +86087,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9935789d-5906-4da4-b74f-4f3c9fc28a23", + "id": "c6a3461b-f7b4-4f46-81bc-4a9122e0b866", "name": "An external service is not available", "originalRequest": { "url": { @@ -86158,7 +86158,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -86169,7 +86169,7 @@ } }, { - "id": "9a78e15d-7f03-4e4d-b0fc-05abc653c288", + "id": "1539a871-5a11-40f3-81ab-b3f31afb85e0", "name": "Download definition file by fileId.", "request": { "name": "Download definition file by fileId.", @@ -86228,7 +86228,7 @@ }, "response": [ { - "id": "8bed1e49-d6f1-452f-9674-6e698e47d86b", + "id": "bf1514bb-2e78-4322-861d-937d74705b46", "name": "Returns a file that is referred to by fileID and associated with the formDefinitionID", "originalRequest": { "url": { @@ -86278,12 +86278,12 @@ "value": "application/json" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "439bcb08-b1ad-4121-a46f-3d1e534daf8e", + "id": "a4895fb1-6bc6-4ab9-8a4b-4cd25ea363a8", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -86333,12 +86333,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ca68ff0-6f10-4650-975e-36ab5f080fd6", + "id": "e9266345-d47a-481e-8598-6ca0086480f6", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -86388,12 +86388,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3406923c-18ff-44d5-87cc-7082057184a8", + "id": "b3999de4-7098-4450-a6ca-782feae6f787", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -86443,12 +86443,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c373993f-177b-4b99-a945-6e3275790e61", + "id": "a4f12b13-041a-4212-bc16-0e5efeff5e8f", "name": "An error with the item not found", "originalRequest": { "url": { @@ -86498,12 +86498,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6ffa0e23-6fcf-4248-b958-3ff5771e9286", + "id": "691f99ac-d40d-4ca1-a89b-5d68e683e353", "name": "Too many requests", "originalRequest": { "url": { @@ -86558,7 +86558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e1f3dfb-3ef6-40f3-acc2-40b0f45d430a", + "id": "d28f34d4-77dc-467e-9615-fb6a6387a27f", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -86608,12 +86608,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cca229a9-be9d-4665-9bec-5f9bed342fd6", + "id": "8da4fa41-0623-47cf-8e0c-c622ba0b1894", "name": "An external service is not available", "originalRequest": { "url": { @@ -86663,7 +86663,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -86674,7 +86674,7 @@ } }, { - "id": "0f1d3756-d0ba-461f-b7c5-4e3c8d92c544", + "id": "49262b7d-a3bd-4101-9c30-57c68dc89881", "name": "List form instances by tenant.", "request": { "name": "List form instances by tenant.", @@ -86712,7 +86712,7 @@ }, "response": [ { - "id": "2e13390c-73b5-4bc3-8bee-56a00daf2d3b", + "id": "570939c9-e8aa-40a2-b40f-2c265ef5d8d7", "name": "Returns a list of form instances by tenant", "originalRequest": { "url": { @@ -86759,12 +86759,12 @@ "value": "application/json" } ], - "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Lorem voluptate sit nulla pariatur\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"exercitation mollit in\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"Excepteur tempor\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"anim qui quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"culpa in\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"dolor culpa\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat ex ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"voluptate i\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n ]\n}", + "body": "{\n \"count\": 1,\n \"results\": [\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat tempor commodo irure\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"occaecat cillum fugiat nostrud\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"pariatur sed veniam\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"proident Ut mollit nulla\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n },\n {\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat ex ut officia\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"sed non laborum\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"o\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"aliqua ut e\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c89a2cfb-ff86-449d-a243-54ce243afc64", + "id": "c533f694-2214-4f74-b4e0-9ed642e502da", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -86811,12 +86811,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "edafdee1-2c9a-4fff-b7db-b7afe5fd0a6a", + "id": "77bf74ca-27f0-45dd-9038-dbf4c4f15d81", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -86863,12 +86863,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3671cd3e-fc68-4e45-984d-fcd7fbec9136", + "id": "a1d2e6f3-977e-4f75-bdbb-4faf5118f119", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -86915,12 +86915,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "28672106-b6f7-4eff-ad19-7aaa5c0d0a7f", + "id": "8695b24b-2922-47ab-bf8a-902f7a85ca47", "name": "Too many requests", "originalRequest": { "url": { @@ -86972,7 +86972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff688c0a-c939-4134-b986-6c4636125c07", + "id": "f9a11032-8747-4a72-975e-c1e5ce84f9e4", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -87019,7 +87019,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87030,7 +87030,7 @@ } }, { - "id": "fa7f9ddf-971e-44e4-b528-3327a8279504", + "id": "2d5155fb-dfb2-40fa-9822-be9980938650", "name": "Creates a form instance.", "request": { "name": "Creates a form instance.", @@ -87078,7 +87078,7 @@ }, "response": [ { - "id": "04634a81-2ab3-4bdd-8ed4-d2579d7b7058", + "id": "47e94ee7-4314-45d3-b5a9-2873eb55de62", "name": "Returns a new form instance", "originalRequest": { "url": { @@ -87138,12 +87138,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in nisi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in sed fugiat\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat elit ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud nisi qui enim quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cupidatat elit commodo Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur Lorem\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat qui\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b26d4881-80d7-4ecf-8422-8bdc914cef71", + "id": "dfbfa2d6-e13c-42f9-ad6d-7207e73ae3d2", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -87203,12 +87203,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c042687b-8397-431b-9d1c-b42584416b70", + "id": "96a0f124-1945-4e39-b937-199220c64894", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -87268,12 +87268,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d94c1f00-a987-4068-bfb7-559dc094c647", + "id": "37d6c99d-0892-47ac-a3cd-6fa41d5a02b2", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -87333,12 +87333,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "df94a2d1-9706-43b3-aa40-3d52c23bac5b", + "id": "29855070-6f08-453d-9c51-b9fb3ec11184", "name": "Too many requests", "originalRequest": { "url": { @@ -87403,7 +87403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d139032-5c0f-4fe9-a329-12297838a5ce", + "id": "ba96557f-0d54-4a2d-a524-d6c911516488", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -87463,7 +87463,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87474,7 +87474,7 @@ } }, { - "id": "af8689de-6190-496b-88aa-4543c4008103", + "id": "8a53e734-e318-443a-bb4e-544e8998cfa6", "name": "Returns a form instance.", "request": { "name": "Returns a form instance.", @@ -87524,7 +87524,7 @@ }, "response": [ { - "id": "92c2da61-b071-4f7a-b335-4309612e8944", + "id": "275458a0-2dff-4ae5-a650-31acdb1d0b91", "name": "Returns a form instance by its key", "originalRequest": { "url": { @@ -87572,12 +87572,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in nisi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in sed fugiat\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat elit ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud nisi qui enim quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cupidatat elit commodo Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur Lorem\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat qui\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10d2f4a4-e1f9-48c3-89ba-983870a7ee24", + "id": "cf0d0664-894f-4514-930e-dba5ca8d13d7", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -87625,12 +87625,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a72f08b8-1573-4ec2-b7f9-e3df90821118", + "id": "2ec83950-ae4d-4d16-8628-661d8f553f6a", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -87678,12 +87678,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f44d2c1-878d-400f-a726-6dd50c6c9ff8", + "id": "9df8e411-256d-4dfa-bf0f-b22c6528c7f5", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -87731,12 +87731,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4672fa45-667a-4377-8da3-91cbfb878c80", + "id": "c08aabad-2591-4379-84a8-525fa81f63ca", "name": "An error with the item not found", "originalRequest": { "url": { @@ -87784,12 +87784,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c088b99-2503-4f25-837b-bd41e01906d9", + "id": "4986331a-7a6c-4046-aa23-0e5f310894ca", "name": "Too many requests", "originalRequest": { "url": { @@ -87842,7 +87842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "213cc950-2be7-49bc-b083-2da3bb7469f9", + "id": "8b2179d2-8c79-4671-a12b-c97f141a96af", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -87890,7 +87890,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -87901,7 +87901,7 @@ } }, { - "id": "9d4441c3-bcf3-4a73-a0af-5b85a9d5d5fa", + "id": "6a68dfae-853a-4a09-9a01-4369bdb7d2a8", "name": "Patch a form instance.", "request": { "name": "Patch a form instance.", @@ -87964,7 +87964,7 @@ }, "response": [ { - "id": "e726ef09-22e9-4ed9-b14b-87582e302dbd", + "id": "2dd9395a-86e4-4f1a-b3a2-a2aeedb3b5d6", "name": "Returns the form instance updated", "originalRequest": { "url": { @@ -88025,12 +88025,12 @@ "value": "application/json" } ], - "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in nisi\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"in sed fugiat\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"fugiat elit ad\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"nostrud nisi qui enim quis\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", + "body": "{\n \"created\": \"2023-07-12T20:14:57.74486Z\",\n \"createdBy\": {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"WORKFLOW_EXECUTION\"\n },\n \"expire\": \"2023-08-12T20:14:57.74486Z\",\n \"formConditions\": [\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"cupidatat elit commodo Lorem\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consectetur Lorem\"\n }\n }\n ]\n },\n {\n \"ruleOperator\": \"AND\",\n \"rules\": [\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n },\n {\n \"sourceType\": \"ELEMENT\",\n \"source\": \"department\",\n \"operator\": \"EQ\",\n \"valueType\": \"STRING\",\n \"value\": \"Engineering\"\n }\n ],\n \"effects\": [\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"consequat qui\"\n }\n },\n {\n \"effectType\": \"HIDE\",\n \"config\": {\n \"defaultValueLabel\": \"Access to Remove\",\n \"element\": \"id\"\n }\n }\n ]\n }\n ],\n \"formData\": {\n \"department\": \"Engineering\"\n },\n \"formDefinitionId\": \"49841cb8-00a5-4fbd-9888-8bbb28d48331\",\n \"formElements\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"elementType\": \"TEXT\",\n \"config\": {\n \"label\": \"Department\"\n },\n \"key\": \"department\",\n \"validations\": [\n {\n \"validationType\": \"REQUIRED\"\n },\n {\n \"validationType\": \"REQUIRED\"\n }\n ]\n }\n ],\n \"formErrors\": [\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n },\n {\n \"key\": \"department\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"value\": \"Engineering\"\n }\n ],\n \"formInput\": {\n \"input1\": \"Sales\"\n },\n \"id\": \"06a2d961-07fa-44d1-8d0a-2f6470e30fd2\",\n \"modified\": \"2023-07-12T20:14:57.74486Z\",\n \"recipients\": [\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n },\n {\n \"id\": \"00000000-0000-0000-0000-000000000000\",\n \"type\": \"IDENTITY\"\n }\n ],\n \"standAloneForm\": false,\n \"standAloneFormUrl\": \"https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000\",\n \"state\": \"ASSIGNED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfc2edee-4784-4a1e-9105-613f023f6d27", + "id": "286253ef-2ec2-44c6-b812-2421d2142c0e", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -88091,12 +88091,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "878857e1-ff5e-419a-b3d1-c11d79638cd1", + "id": "b8055287-4a79-431b-86a2-b685a3e3a018", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -88157,12 +88157,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b35753de-a550-47a0-ab9d-553ae3cae65f", + "id": "860e7043-607d-48c9-bfb0-85a68521c844", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -88223,12 +88223,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cfab4003-d1e5-4702-ba0c-b8dd6785d93f", + "id": "a0a504f0-91d6-49aa-9d6b-f7cf08c8f379", "name": "An error with the item not found", "originalRequest": { "url": { @@ -88289,12 +88289,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "60653e6e-2227-4af6-912f-2e6f1e6e7311", + "id": "db0db3c2-968e-497b-81de-116e52619943", "name": "An error with the request property conflicts with stored", "originalRequest": { "url": { @@ -88355,12 +88355,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "89da2ed6-d0b3-4218-bcbd-18f2560c100c", + "id": "70372bb3-edd4-47fa-903e-1f2994780e86", "name": "Too many requests", "originalRequest": { "url": { @@ -88426,7 +88426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93c5bd01-a47a-401f-8c21-5a258cd1dd1b", + "id": "b52e0040-5a36-4f53-858f-27131ff14dd0", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -88487,7 +88487,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -88498,7 +88498,7 @@ } }, { - "id": "ff570483-f4ad-448a-95f2-517ef4d63154", + "id": "0e04611b-44c8-47d7-980c-99deb373841a", "name": "Retrieves dynamic data by element.", "request": { "name": "Retrieves dynamic data by element.", @@ -88588,7 +88588,7 @@ }, "response": [ { - "id": "39ed99e4-69cb-47fc-9805-8671adca91f2", + "id": "85951ade-2c4d-4aa9-99d4-a16c3b0d9af5", "name": "Retrieves dynamic data to aid in correctly completing a valid form by form element ID from data source configuration", "originalRequest": { "url": { @@ -88671,7 +88671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c86520-30a9-4290-be1c-469a6691fbad", + "id": "4a94e0f4-b08c-497c-995f-43bfb591fa5f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -88749,12 +88749,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "80f54358-e220-4f44-8393-7de71f65a98d", + "id": "b8d4ccb4-bef0-4fc1-b254-2eb0460eabc4", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -88832,12 +88832,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "201a4721-93f1-45c7-841b-f14b8596bf63", + "id": "842cc45a-1815-4944-8602-f93706149d63", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -88915,12 +88915,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2f93b004-7794-48fe-8082-42268a4054bf", + "id": "d93cdcf8-517d-406b-a9dd-0c3a71a89073", "name": "An error with the item not found", "originalRequest": { "url": { @@ -88998,12 +88998,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6c56ccc1-fe0d-4896-94ae-37c7445aacda", + "id": "11ed12a4-10b4-471d-8e93-8331d3bbdfe9", "name": "Too many requests", "originalRequest": { "url": { @@ -89086,7 +89086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c46ce8b-e505-41d5-b60f-b3d245cce52f", + "id": "fcef4ee2-319b-4784-a4d2-61877c8ed8af", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -89164,7 +89164,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89175,7 +89175,7 @@ } }, { - "id": "5db70f38-a726-4a1d-bb44-9ed91ef8a4c8", + "id": "e56a5462-c9dd-4faf-b3cb-b45e7dab8b46", "name": "Download instance file by fileId.", "request": { "name": "Download instance file by fileId.", @@ -89234,7 +89234,7 @@ }, "response": [ { - "id": "0d2cc0be-b1c0-4164-bc8a-27f0073e38fd", + "id": "b843f146-6d5d-4aa8-86f5-e8093fca6ff2", "name": "Returns a file that is referred to by fileID and associated with the formInstanceID", "originalRequest": { "url": { @@ -89284,12 +89284,12 @@ "value": "application/json" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4fadbe6c-968e-417f-905d-c87e11509554", + "id": "54db1d4c-a69c-4469-841e-432311135e3f", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -89339,12 +89339,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b913057-7405-4f69-a840-607065b5c4c8", + "id": "8d581993-7413-484c-8125-1a1807b68412", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -89394,12 +89394,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d85fe393-251d-4465-aa2a-1d63714d5d50", + "id": "8450daff-ce59-49f2-90ee-1abcf624dde0", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -89449,12 +89449,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f6e6e69d-3862-4004-b1f7-e0acb83b594d", + "id": "584f2c50-59bf-4666-949f-555ce597ce1c", "name": "An error with the item not found", "originalRequest": { "url": { @@ -89504,12 +89504,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3c693917-9c1a-4d6b-bc38-b408f4075756", + "id": "1ccbe355-eb5d-4ad3-b4f5-52d05cf256da", "name": "Too many requests", "originalRequest": { "url": { @@ -89564,7 +89564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d78e02f-68a5-4b10-a3a8-c2dae233d8c0", + "id": "a6ec2d06-2ecf-471b-8b77-571deedfd1e6", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -89614,12 +89614,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "93a098d1-1ac5-4242-9b46-11f64c4f835a", + "id": "8aed660c-898e-4dd8-a4d2-c610637a7a75", "name": "An external service is not available", "originalRequest": { "url": { @@ -89669,7 +89669,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -89680,7 +89680,7 @@ } }, { - "id": "deb44df2-7869-495a-a75d-494b786e74dc", + "id": "453c25e1-a536-4752-84ad-e29e766cd1fc", "name": "List predefined select options.", "request": { "name": "List predefined select options.", @@ -89719,7 +89719,7 @@ }, "response": [ { - "id": "bd51c068-d1c0-478c-8306-e3d4e9909d31", + "id": "7ba188bd-5d0b-429e-9173-0a30abfbe251", "name": "Returns a list of available predefined select options", "originalRequest": { "url": { @@ -89772,7 +89772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af059d2-0c6d-4f26-928a-65600e113e5c", + "id": "e62d4189-c7e7-49d6-bf9a-21c301ad3d16", "name": "An error with the request occurred", "originalRequest": { "url": { @@ -89820,12 +89820,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bdfcc390-9113-4940-994e-9144a5572dc2", + "id": "cd96fac6-ea13-483a-a400-443562e1fbae", "name": "An error with the authorization occurred", "originalRequest": { "url": { @@ -89873,12 +89873,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "844c6c5c-685f-497d-b9a5-fb3468a4e36f", + "id": "7cd11c74-a013-45d1-92a3-d940c5e9880b", "name": "An error with the user permissions occurred", "originalRequest": { "url": { @@ -89926,12 +89926,12 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "291e047e-ee05-4699-9e7c-eb876f583b21", + "id": "4e4468f7-7b1b-4321-b6f4-dd458911f496", "name": "Too many requests", "originalRequest": { "url": { @@ -89984,7 +89984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2847d45f-f330-4163-b6c7-645ff53377d1", + "id": "c07539dd-a75b-4516-ac2f-ba2f7b356d28", "name": "An internal server error occurred", "originalRequest": { "url": { @@ -90032,7 +90032,7 @@ "value": "application/json" } ], - "body": "{\n \"detailCode\": \"do Ut sint in\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 42515793,\n \"trackingId\": \"nostrud ex do sint\"\n}", + "body": "{\n \"detailCode\": \"esse commodo consequat anim\",\n \"messages\": [\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n },\n {\n \"locale\": \"en-US\",\n \"localeOrigin\": \"DEFAULT\",\n \"text\": \"This is an error\"\n }\n ],\n \"statusCode\": 55117958,\n \"trackingId\": \"exercitation laboris cupidatat dolore\"\n}", "cookie": [], "_postman_previewlanguage": "json" } @@ -90049,7 +90049,7 @@ "description": "Use this API to implement custom password instruction functionality.\nWith this functionality in place, administrators can create custom password instructions to help users reset their passwords, change them, unlock their accounts, or recover their usernames.\nThis allows administrators to emphasize password policies or provide organization-specific instructions.\n\nAdministrators must first use [Update Password Org Config](https://developer.sailpoint.com/docs/api/beta/put-password-org-config/) to set `customInstructionsEnabled` to `true`.\n\nOnce they have enabled custom instructions, they can use [Create Custom Password Instructions](https://developer.sailpoint.com/docs/api/beta/create-custom-password-instructions/) to create custom page content for the specific pageId they select.\n\nFor example, an administrator can use the pageId forget-username:user-email to set the custom text for the case when users forget their usernames and must enter their emails.\n\nRefer to [Creating Custom Instruction Text](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html#creating-custom-instruction-text) for more information about creating custom password instructions.\n", "item": [ { - "id": "941cd2d1-9bf9-49ab-854a-e12ac8bbecd0", + "id": "aaba6974-ef55-4bed-a302-bc57a89b764e", "name": "Create Custom Password Instructions", "request": { "name": "Create Custom Password Instructions", @@ -90100,7 +90100,7 @@ }, "response": [ { - "id": "54745a69-bb4d-4612-9226-3443be3c15b9", + "id": "3c42ff12-8742-4547-b30d-fdb4d2db1ae5", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -90165,7 +90165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d5ff402-fda7-41db-93b3-d1358743934d", + "id": "25f15720-b9df-4c6a-8415-5d388248bfd4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90230,7 +90230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06f13abe-51f8-4270-b623-645938c0b23c", + "id": "a2b9db1c-c91e-4e7a-ab52-f3548ea6c490", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90295,7 +90295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0ade3a3-f3bb-45a9-982e-048e2a69e7a8", + "id": "419bd2cd-bf0e-449c-8b72-7c176e743343", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90366,7 +90366,7 @@ } }, { - "id": "1c849900-3d2f-4bc6-b429-1d2c82e490a3", + "id": "4f5f340c-cce8-422b-8cd7-eb00993763d2", "name": "Get Custom Password Instructions by Page ID", "request": { "name": "Get Custom Password Instructions by Page ID", @@ -90390,7 +90390,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [ @@ -90426,7 +90426,7 @@ }, "response": [ { - "id": "55eec08e-0a31-46ef-a930-17b5462dbb6d", + "id": "6f2029d7-c68b-4742-9c25-1acfaef3b4f5", "name": "Reference to the custom password instructions.", "originalRequest": { "url": { @@ -90445,7 +90445,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90489,7 +90489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b60905c-7a5e-4dd0-9c3f-4baa51ec89e5", + "id": "4c6603a2-7cdc-41d4-a6e4-98fc1c1890ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90508,7 +90508,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90552,7 +90552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1beade02-27aa-4bfc-8ff9-46d9df6a0f2d", + "id": "76b6f1b7-cc29-4ad9-b642-15c20ccf108b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90571,7 +90571,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90615,7 +90615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eebb3708-61d6-4b25-b0e2-89745a10e596", + "id": "3663179f-5cda-48f2-9c86-1e43a301daea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90634,7 +90634,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90678,7 +90678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4dcfb757-c367-4da3-96f2-5b0c3a942a0f", + "id": "70635824-7a09-4bdb-85c2-64f01e20dd68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90697,7 +90697,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90747,7 +90747,7 @@ } }, { - "id": "33145e82-87ba-4bbc-9f5f-6109f27d4d95", + "id": "1291635d-ffec-458b-b41c-bb7e3ca6a749", "name": "Delete Custom Password Instructions by page ID", "request": { "name": "Delete Custom Password Instructions by page ID", @@ -90771,7 +90771,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [ @@ -90807,7 +90807,7 @@ }, "response": [ { - "id": "86cf8130-9c60-413f-a082-a754008a8208", + "id": "3234f24e-4ff5-4084-b705-a2c17d557e60", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -90826,7 +90826,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90860,7 +90860,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c2cecd44-b11f-4a1d-94a2-ea3b0238c85d", + "id": "1dd6de78-70cf-4c34-ac6d-a10b6cd4b9d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90879,7 +90879,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90923,7 +90923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d8d9cbf-1b3d-4952-91b1-4b7ca018ac33", + "id": "b393edb8-cbcf-4718-8d23-6121dd7fe907", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90942,7 +90942,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -90986,7 +90986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae900bf-3190-469a-83af-b7a814329fd9", + "id": "86da5e6d-608e-4a41-8e9e-4718b446e073", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -91005,7 +91005,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -91049,7 +91049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137c2119-c8c7-4cfb-9367-8dacce257be1", + "id": "18997757-0e42-470e-a3c5-c2bb6f3e73d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91068,7 +91068,7 @@ "type": "text/plain" }, "key": "locale", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -91124,7 +91124,7 @@ "description": "Use this API to implement and customize dynamic role functionality. With this functionality in place, administrators can create dimensions and configure them for use throughout Identity Security Cloud. Identity Security Cloud can use established criteria to automatically assign the dimensions to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks. Entitlements represent the most granular level of access in Identity Security Cloud.\nAccess profiles represent the next level and often group entitlements. Dimension represent access selectively based on the evaluation of contextual information that is available or provided. Each Dimension include context attributes and access selection expressions which map criteria to access right assignments. Each dimension can contain up to 5 context attributes. Dynamic Access Roles represent the broadest level of access and often group access profiles ,entitlements and dimensions.Each Dynamic Access Role may contain one or more Dimensions.", "item": [ { - "id": "6d99799a-8320-4630-9582-3401ae4b08ce", + "id": "2040568d-5a35-4f36-9629-cbbf3a4382fb", "name": "List Dimensions", "request": { "name": "List Dimensions", @@ -91221,7 +91221,7 @@ }, "response": [ { - "id": "475b8d4b-39d7-4c57-8295-ce3bbe94a979", + "id": "c471a291-e237-4759-b159-6c83a2a47ce1", "name": "List of Dimensions", "originalRequest": { "url": { @@ -91321,7 +91321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1265832c-29d0-43d9-94df-53f08be2536d", + "id": "b9272ae4-953e-4a60-bdf1-080bf63fa871", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91421,7 +91421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3706da55-3a80-4901-ba00-2dfeee75266b", + "id": "9001eba8-a9ec-4d14-bcec-7a6db724bf68", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91521,7 +91521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12623707-2b8e-4cd4-b43e-a349b2680df7", + "id": "114c6f94-f7f2-4b41-893d-e433a64ad4ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91621,7 +91621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df2b46e2-78d9-41dc-a975-a8de152b8168", + "id": "ffb46431-00fb-4d7f-8441-6c897f697c9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91721,7 +91721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "148d1cf5-ee0f-4af4-9abf-ae4cba9418b3", + "id": "8711655b-328c-4b15-af76-9971b3868ba1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91827,7 +91827,7 @@ } }, { - "id": "87729b0a-4b63-4863-921a-c51f76653978", + "id": "5ec73ae6-6117-47a6-abe0-75bea681fcf8", "name": "Create a Dimension", "request": { "name": "Create a Dimension", @@ -91882,7 +91882,7 @@ }, "response": [ { - "id": "b7902fc7-d1c7-4b1a-b144-4d24fa35d967", + "id": "a2a787c6-a4d5-4650-a61c-37309e8dff79", "name": "Dimension created", "originalRequest": { "url": { @@ -91940,7 +91940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "085b7c8e-2cff-4495-b57c-a767023b6a8f", + "id": "49b5d752-5993-4751-9721-b62667c1976a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91998,7 +91998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac8e227c-314d-4435-91ca-6268b90a3455", + "id": "10e937ce-13f5-4301-ab7d-1c4d5419dded", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92056,7 +92056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "746e4960-2a03-45d5-8729-ac9ab27c68b0", + "id": "279a458f-3fd1-4cbd-952d-f5c5d0c6ce01", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92114,7 +92114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efdf81a6-4792-4e97-a131-ef813b3923d2", + "id": "0ca89313-ee4f-4246-a4c2-f8ae1349020a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92172,7 +92172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d42fbe9-3215-4b64-ab79-8fa30c9b769e", + "id": "5be26d87-dcde-4261-a0ac-877ee7dcd5ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92236,7 +92236,7 @@ } }, { - "id": "9b4b12b3-928a-4d40-8eb3-4213c39049ec", + "id": "fa376484-91c5-446c-8e8d-e78ec44cc3a8", "name": "Get a Dimension under Role.", "request": { "name": "Get a Dimension under Role.", @@ -92289,7 +92289,7 @@ }, "response": [ { - "id": "ea79eac4-5881-4e88-b682-41933357f2a2", + "id": "8bfe116a-bf3e-416e-9413-e6f1690bc78f", "name": "Dimension", "originalRequest": { "url": { @@ -92335,7 +92335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fcc5af6-0ffe-4140-b647-6cdccba34c15", + "id": "09889111-8173-4c7d-9abc-3ae36a6313bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92381,7 +92381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f2d9684-1e93-4dae-86d7-69f2900cd580", + "id": "447726f2-ef66-4d63-9329-ef1253ab60b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92427,7 +92427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b536ef4f-ef22-4d1f-9bd4-d081361ee16e", + "id": "dffc7806-05bc-4176-8a63-dd33729fd01b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92473,7 +92473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f751827-79ae-4666-b96d-898d34cf4c88", + "id": "a742bcb1-813a-4faa-a446-52b40bdae4f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92519,7 +92519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c4bc6bc-5595-46fe-99ed-8d9164f2e4fc", + "id": "6eeb64c0-1002-4a4f-a728-106bbf4aea02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92571,7 +92571,7 @@ } }, { - "id": "4de7f9c5-3cd2-4162-9d12-2e4e2aaf6ddf", + "id": "ab1d2459-2608-4cf4-88a7-b8cd1d8e9de9", "name": "Patch a specified Dimension", "request": { "name": "Patch a specified Dimension", @@ -92637,7 +92637,7 @@ }, "response": [ { - "id": "b34fdc94-4e6b-4162-9636-df7eb329d9ff", + "id": "ad49da70-761a-4488-927d-269fa440a031", "name": "Update a Dimension name and description field in One Call", "originalRequest": { "url": { @@ -92696,7 +92696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce23ed8-99c6-452f-8deb-f4d314882b73", + "id": "250d13b3-8ae1-44e7-b7bc-0fb73d1dca41", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -92755,7 +92755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71c46f89-75ec-4563-8bc4-664c1b7cb2c9", + "id": "9be0204a-76ec-4f62-806c-ace71ad37462", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -92814,7 +92814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f479f782-be6f-45bb-8bb3-f31fb1c1c59d", + "id": "569790b0-eebf-4413-bb64-b779718e745f", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -92873,7 +92873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b91f97f-357d-4153-80c9-2c9253c24cec", + "id": "e018dcd0-fc89-406f-a894-5c4626f5589b", "name": "Update a Dimension name and description field in One Call", "originalRequest": { "url": { @@ -92932,7 +92932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2d9ddb1-d22e-49ad-8545-32922cbd8a1b", + "id": "626ca87a-3526-47cd-9d65-da8885751158", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -92991,7 +92991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37e5a20-3cd7-4591-8f0f-c0aabd12be82", + "id": "f25ff506-2749-4a84-a487-6e06d4803850", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -93050,7 +93050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8837433-833d-4832-bf71-17035888240a", + "id": "8a19b5bf-feb9-4416-88d9-390d749333c0", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -93109,7 +93109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7333f932-1d83-499f-a3b7-e696e6a845dd", + "id": "61394159-0216-4ce5-b16e-1e1de7d8e0f4", "name": "Update a Dimension name and description field in One Call", "originalRequest": { "url": { @@ -93168,7 +93168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19ab899b-58a5-434a-944b-e9f35d3ac9b0", + "id": "4384f9bd-9d9f-4f09-b65b-c43d623c44bb", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -93227,7 +93227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e6e9611-5240-4a1c-b83b-d43130816827", + "id": "339e8545-4648-48c8-842c-e6f3eda0a76b", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -93286,7 +93286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cea62cd-90ec-4475-800c-85c018ce51bb", + "id": "51b71ece-a846-4eae-8ac3-46014d16312d", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -93345,7 +93345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74479221-b0c6-45d2-be89-f1be6ea93455", + "id": "11e3f23f-2b6e-4ceb-b3e6-e9c42ae1c7fa", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -93404,7 +93404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb8c42f-f04a-4d1e-ad7a-d79459d578ca", + "id": "ef77eb40-57a8-46b3-b83a-6023573f1bca", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -93463,7 +93463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef9a960a-cb1f-4bae-ae22-aa1b451ecd89", + "id": "278f1bfc-99e0-4fc3-b788-7a4c2606410b", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -93522,7 +93522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfe8c620-7caa-4f2a-a033-d1ee17011c4d", + "id": "b5f33980-279f-40ec-8496-2115d5297f98", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -93581,7 +93581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beb174ed-8599-4912-af3a-b67b0739f344", + "id": "b55d148d-3212-40af-b7bd-7942632f4ba9", "name": "Update a Dimension name and description field in One Call", "originalRequest": { "url": { @@ -93640,7 +93640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "933c9bc5-d712-42e9-b96b-9b2099ccd12e", + "id": "55fe7d2a-03a7-4464-9f42-a382aa8a366b", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -93699,7 +93699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b26bae7-2b96-4826-8556-c6d22ed5dc73", + "id": "32fe6991-b9c4-4403-883c-b803ace079bb", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -93758,7 +93758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0fe64ff-8cd4-43a2-96c5-0d021d37c0f7", + "id": "1aec2b3f-1415-4fa4-b701-2b144b508bfd", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -93817,7 +93817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6505186e-776c-4a42-afda-0e0731f07491", + "id": "769dc78b-74e7-48f3-b452-5b3f80238ef4", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -93876,7 +93876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c655c472-d111-4b43-bc22-7dc311bc05cf", + "id": "071ac72f-629b-40da-877e-4c0b98fb55e9", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -93935,7 +93935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55400e0a-b2a6-44a2-aada-ac073e5abaef", + "id": "55a29eb2-434d-4ec1-8eaa-22a5eee3b76d", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -93994,7 +93994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b7380a-bc30-402f-9d34-443fa0122445", + "id": "8f18c018-deee-4937-ba08-1283ac2540c2", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -94059,7 +94059,7 @@ } }, { - "id": "8c57d638-3e60-4897-be01-ff162285c9c0", + "id": "3bd09acf-d62e-4f35-af04-39123926bebf", "name": "Delete a Dimension", "request": { "name": "Delete a Dimension", @@ -94112,7 +94112,7 @@ }, "response": [ { - "id": "44868337-0ee8-4db9-a0d0-20999954ca73", + "id": "7a90ba84-77fb-42d1-9706-1e11434f47da", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -94148,7 +94148,7 @@ "_postman_previewlanguage": "text" }, { - "id": "02ee1015-d6b3-4f03-aa94-54162bd10c46", + "id": "1e2ef033-b5b0-454c-9335-bb4f2154bca2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94194,7 +94194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee6711a3-743b-453d-8928-010ca1850885", + "id": "54990a7e-8532-4546-9133-0501b2fcb271", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94240,7 +94240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b945dedd-4415-4547-bf95-897ad40b9a99", + "id": "370b25dc-fd60-4587-84da-6bc32102617f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94286,7 +94286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9879654-e0df-4231-8485-c06e2fcf6a74", + "id": "6c725c73-743b-4821-9c3c-10596ee17769", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94332,7 +94332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eb30cbe-b77b-46b9-a39f-855da11b228c", + "id": "03ea5beb-d2a8-451f-9f39-4e601ea648bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94384,7 +94384,7 @@ } }, { - "id": "a5277058-d7ed-4e9a-87fd-4094468f9f81", + "id": "643d6a6a-ae8e-4ea2-adf5-78f150f0d944", "name": "Delete Dimension(s)", "request": { "name": "Delete Dimension(s)", @@ -94440,7 +94440,7 @@ }, "response": [ { - "id": "a8f93773-58f9-4d79-9d44-2beeaf5e4448", + "id": "59517179-6d8e-47a5-91b4-5964f48d3994", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -94499,7 +94499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fa84baa-a4b0-408e-a9c2-87c04ea19f52", + "id": "ae7dd514-bda5-4113-a4ce-a07891c7c62b", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -94558,7 +94558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c340a8f0-beb4-48f6-9372-393bcfc41a8f", + "id": "3b26b446-a5cc-43fb-a9a6-360cfd2412e5", "name": "400.1 Dimension ids limit violation", "originalRequest": { "url": { @@ -94617,7 +94617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67023ad9-d6f5-466a-903d-062f2016be94", + "id": "a313bc4f-3567-40f8-ba85-381c24bbf64e", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -94676,7 +94676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "331ac655-ee23-45bf-a8d4-2f94d2cdd74a", + "id": "4c826824-91d3-49c4-b1c0-bed1970712eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94735,7 +94735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1592c686-6612-4255-8861-19be42677ac0", + "id": "bfa0dca1-d259-4186-be3c-c0333fcd0203", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94794,7 +94794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d24fba54-4c4a-4c7e-abfc-3d8ba0695ea7", + "id": "0229f7f7-38b1-4855-a3ba-907d360e4e36", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94853,7 +94853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "904e4e77-3443-490e-ac8f-8081e3144842", + "id": "f2fdd5f3-5a79-479b-a9be-15f7dad98962", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94918,7 +94918,7 @@ } }, { - "id": "dd07834f-70f2-47f8-acde-f4835f0a6b27", + "id": "f34f8a75-2b67-42e1-9ad7-6adf79166673", "name": "List Dimension's Access Profiles", "request": { "name": "List Dimension's Access Profiles", @@ -95018,7 +95018,7 @@ }, "response": [ { - "id": "5907c51f-144d-4b64-b175-c86023f0a780", + "id": "f16abd4c-08b3-4d98-a8ee-dda005801039", "name": "List of Access Profiles", "originalRequest": { "url": { @@ -95111,7 +95111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1d9dfe1-3e9e-4a3f-8535-e0a16b4cd0ef", + "id": "421716a5-d51a-47b0-918d-18d35603c4b5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95204,7 +95204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e203e0ba-18a3-453d-b059-c07a27736380", + "id": "f785ac74-ce43-441a-b332-b47738d9dfa0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95297,7 +95297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b188d7e1-120f-493a-86f9-410d1f75c520", + "id": "550285a3-7acb-4b78-bc94-a975c7ba5d47", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95390,7 +95390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf1ed175-5e23-41fc-b151-45f5a5e05a0c", + "id": "d1e3af03-e458-416c-90eb-5a0b4b1420fe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -95483,7 +95483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6af4e186-6ada-45c0-b804-889d7d746ea5", + "id": "51bd3e1e-791d-4382-8df8-eb52781a778e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95576,7 +95576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddc1d1f0-43ec-431d-aa86-7c512466c1c2", + "id": "4b2637de-172b-4346-84af-b345f32417df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95675,7 +95675,7 @@ } }, { - "id": "c3165420-abd9-49e5-8b10-6f85e0c2c75c", + "id": "b2c2773f-21fa-41cc-b5c0-28939a3e361c", "name": "List Dimension's Entitlements", "request": { "name": "List Dimension's Entitlements", @@ -95775,7 +95775,7 @@ }, "response": [ { - "id": "7d7010bd-27ee-4b19-bde6-4e1e1abc78c9", + "id": "c14cae19-73cf-419c-b335-fad97e34a5ef", "name": "List of Entitlements", "originalRequest": { "url": { @@ -95868,7 +95868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4784002a-7db7-4654-ba73-6c1b3964f261", + "id": "00400998-2832-4489-88fc-c4e928535ac2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95961,7 +95961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a59b0853-af9b-4d87-8934-498bcc3a985c", + "id": "6c5cb4b0-a6a3-4300-94e9-b43e7400a834", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96054,7 +96054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd3a3653-01ab-4688-8dd8-9ee11e26848a", + "id": "a9f84f38-3506-48b7-9857-2845ef38f8f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96147,7 +96147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efb09cf1-b641-438c-bdf6-4984b406b6c8", + "id": "6a63f80f-3a14-478c-b4c3-50d92b6ca702", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96240,7 +96240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f96b03d8-c79a-4af7-93a2-d03871247e06", + "id": "bcae3924-d2c8-4bd2-a5f2-e6eb95af7bbb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96350,7 +96350,7 @@ "description": "Use this API to implement and customize entitlement functionality.\nWith this functionality in place, administrators can view entitlements and configure them for use throughout Identity Security Cloud in certifications, access profiles, and roles.\nAdministrators in Identity Security Cloud can then grant users access to the entitlements or configure them so users themselves can request access to the entitlements whenever they need them.\nWith a good approval process, this entitlement functionality allows users to gain the specific access they need on sources quickly and securely.\n\nEntitlements represent access rights on sources.\nEntitlements are the most granular form of access in Identity Security Cloud.\nEntitlements are often grouped into access profiles, and access profiles themselves are often grouped into roles, the broadest form of access in Identity Security Cloud.\n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both.\n\nAdministrators often use roles and access profiles within those roles to manage access so that users can gain access more quickly, but the hierarchy of access all starts with entitlements.\n\nAnywhere entitlements appear, you can select them to find more information about the following:\n\n- Cloud Access Details: These provide details about the cloud access entitlements on cloud-enabled sources.\n\n- Permissions: Permissions represent individual units of read/write/admin access to a system.\n\n- Relationships: These list each entitlement's parent and child relationships.\n\n- Type: This is the entitlement's type. Some sources support multiple types, each with a different attribute schema.\n\nIdentity Security Cloud uses entitlements in many features, including the following:\n\n- Certifications: Entitlements can be revoked from an identity that no longer needs them.\n\n- Roles: Roles can group access profiles which themselves group entitlements. You can grant and revoke access on a broad level with roles. Role membership criteria can grant roles to identities based on whether they have certain entitlements or attributes.\n\n- Access Profiles: Access profiles group entitlements.\nThey are the most important units of access in Identity Security Cloud.\nIdentity Security Cloud uses them in provisioning, certifications, and access requests, and administrators can configure them to grant very broad or very granular access.\n\nYou cannot delete entitlements directly from Identity Security Cloud.\nEntitlements are deleted based on their inclusion in aggregations.\n\nRefer to [Deleting Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html#deleting-entitlements) more information about deleting entitlements.\n\nRefer to [Entitlements](https://documentation.sailpoint.com/saas/help/access/entitlements.html) for more information about entitlements.\n", "item": [ { - "id": "205ca754-6214-4f11-be82-b6507fe9011d", + "id": "7c5cc909-4bd5-4be3-8060-e1cfd5236588", "name": "Gets a list of entitlements.", "request": { "name": "Gets a list of entitlements.", @@ -96470,7 +96470,7 @@ }, "response": [ { - "id": "c807077c-a7e1-4f50-979f-0acf09b8fdee", + "id": "e7574317-cbc1-4ea3-ae7e-4c57b801ecef", "name": "List of entitlements", "originalRequest": { "url": { @@ -96604,7 +96604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f06e41a-e289-456f-b10b-e8b0fd8c1300", + "id": "3b7f7c3c-9636-4075-b3c2-cb0f8082497f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96738,7 +96738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f2dbd5-0cfe-4c22-bfb0-78ad72d561c7", + "id": "0199f46d-8359-4b1f-b971-fd2a8d20efc3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96872,7 +96872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91eb942f-b40c-4e61-b15b-ef11709c77ef", + "id": "a3800a76-b77b-4a5e-83a9-fd3e7039ec70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97006,7 +97006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24a6f58e-dd02-4662-bd27-de1ac342d836", + "id": "44fbe563-ba1c-4a4a-a0b5-02f05fa8aec9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97140,7 +97140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d97b56d3-e252-49b4-8ba4-75dae9101364", + "id": "8cd86260-da85-4fa9-89ff-46d0af268a16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97280,7 +97280,7 @@ } }, { - "id": "cd0cb5dd-2b87-45d1-87fa-ab1c6f174ff3", + "id": "b596a596-4425-46a8-a521-4475995dbfa0", "name": "Get an entitlement", "request": { "name": "Get an entitlement", @@ -97330,7 +97330,7 @@ }, "response": [ { - "id": "7bd789ad-dcda-4310-b0e6-5de43accb723", + "id": "9d12a20c-7136-491f-9a06-f795f1fd42ba", "name": "An entitlement", "originalRequest": { "url": { @@ -97383,7 +97383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb4edd1c-d963-4417-8dbe-3d859ac37b24", + "id": "bf5f6009-2a68-4912-9f2f-ff842f300ad2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97436,7 +97436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8156fcf0-76f5-456b-bc35-ec154888ae0a", + "id": "d4ab3c01-b090-4ab1-b5bc-be3363941c18", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97489,7 +97489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a251093b-af38-45a9-9526-a12572a43a3c", + "id": "47c4a238-0240-4042-96de-a727fc5d8fbb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97542,7 +97542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a6d4404-acf2-4ea3-b3f2-8c6d0c9b44c5", + "id": "3b141e07-5a7e-42b1-8aa9-9fc5105a3ac1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97595,7 +97595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ba38fb2-8d06-4312-912f-79526f04a4db", + "id": "a263bc21-44b0-4b9f-a9eb-5c74016a3f60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97648,7 +97648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "866640f3-d87d-4abf-813e-608c23865c0f", + "id": "8e4450c3-9062-4ff4-87da-c936b397f70d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97707,7 +97707,7 @@ } }, { - "id": "0f9e0c3e-c4a1-4470-a723-bc156701e20e", + "id": "203c514c-f4e6-463d-914a-03ff3618d305", "name": "Patch an entitlement", "request": { "name": "Patch an entitlement", @@ -97770,7 +97770,7 @@ }, "response": [ { - "id": "6656908c-3c34-4011-bd29-c18781e1b052", + "id": "ced97b44-c910-430f-be5e-c657c09eba35", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -97836,7 +97836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa15dd7-b310-42f6-9a9b-b8976d9f6a5c", + "id": "3e9d0212-542a-4dc4-9eb9-b85f75a608b3", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -97902,7 +97902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f186140d-17e9-41b2-821f-316fbae2cc0a", + "id": "305c8e36-2bb4-4358-ad45-179de5ffd505", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -97968,7 +97968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b35a4bfd-2b67-4cb7-93c5-e51120aecf50", + "id": "0c57297a-cbd4-42f4-b4b0-39b25f3755d4", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -98034,7 +98034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40643368-cb47-4afd-b641-fd8ba5c3f957", + "id": "4c2936f9-4fd1-4f99-8997-5aa45d2c776e", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -98100,7 +98100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e26ef8a-93ae-4984-b43b-65d1132d0251", + "id": "ed9226c0-6fbf-4ad0-8a8a-522cc36352b6", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -98166,7 +98166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d12e2302-c0b4-4772-badb-548aa05eca3e", + "id": "f1e845ef-87f8-4aac-8dfe-5470824c29a7", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -98232,7 +98232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa62ba0-ed86-4aa2-9b63-ee05a34fc227", + "id": "5b412c33-7c21-4af1-b41b-3b16045b5aee", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -98298,7 +98298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "903bd1c2-d9f5-4c82-b8d8-1b9af3b1bff3", + "id": "9f20d3f7-2f6b-4155-ac4c-5d76c5dd9b35", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -98364,7 +98364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bd6b2ac-bb6c-4cee-ac60-3f75026f2be3", + "id": "0a488482-dbf0-4e33-a374-6d00edfcb7e3", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -98430,7 +98430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf085e5d-81b0-4381-a83e-3205d6384d40", + "id": "89502aff-5e60-40e0-b0eb-598c2ef2e147", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -98496,7 +98496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57ba24f5-2724-4390-b4a0-4c4642c5941c", + "id": "abfd082c-f7bd-465e-a32d-62ca3b47f199", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -98562,7 +98562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37c625f0-c6a5-4fc5-adbe-d584c7251097", + "id": "b98e979e-8745-4d99-8f20-139f3a037a31", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -98628,7 +98628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b91c5ce9-3722-4319-af5a-01372f4c3972", + "id": "0a254b00-af1e-4088-b717-2c4a2f8a7e01", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -98694,7 +98694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c085adfe-7ce5-4d38-9d0f-db58d3f0ae43", + "id": "565b6c8b-4015-4a52-9ee6-8510c45d8d1c", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -98760,7 +98760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eace6b7a-18aa-4331-89d1-c07623f4e493", + "id": "03300c70-3af6-48f0-963f-d522f705ad2c", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -98826,7 +98826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b292ae9-75cc-4d64-b79a-996fe5dcf652", + "id": "716b3919-5596-4650-8887-38a568c562f6", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -98892,7 +98892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f12e642-3a81-4381-8e45-2aafe2dd1696", + "id": "3b8eb467-95c6-415a-b771-19c592f02c8c", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -98958,7 +98958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16d557e2-41d1-4075-bd1e-ef09378e1c32", + "id": "34d40210-8491-4530-9b5d-60b4d9a8a1b2", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -99024,7 +99024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef65596-d90e-4cb2-8d6f-447e9385c5fa", + "id": "d68c3907-96f1-45da-b9e5-a5e510e44e6b", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -99090,7 +99090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57a28664-816e-4f19-8209-17389366cb59", + "id": "04d04465-d3ab-4b9c-9be4-8b7e29a21740", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -99156,7 +99156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d338fd1-6e2a-4744-87bd-f160a9eae4fa", + "id": "419fe4b7-7166-4c2a-ad86-b0029bc00ee2", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -99222,7 +99222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cba37a6-7c8c-445e-8e48-7184228d5db7", + "id": "ced224f2-5c20-48a3-a969-ce9328c83ae8", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -99288,7 +99288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1adc63df-ec32-4d59-93f4-65c713032fec", + "id": "304fed88-534a-4582-89cf-5f97f42bd538", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -99354,7 +99354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bc38ffe-4617-4be0-a345-2d9e2ba6b257", + "id": "d2c85c62-36d7-4931-9781-662e587114fa", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -99420,7 +99420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b430bef-cf3f-4bae-a218-e73d1272561f", + "id": "0e1f2d83-26fe-476c-a587-1a30d4460f82", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -99486,7 +99486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e863cbc-bc52-4356-8535-3409d62fc562", + "id": "a87e1332-6088-47f2-8852-14288c9a407c", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -99552,7 +99552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b37f4a23-861e-43c0-bad8-36a0883bd0c5", + "id": "2a0e6599-c0e4-40cf-87dc-5d5adf92c9f3", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -99618,7 +99618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fe7a560-8d83-481e-b998-29f25d9d7659", + "id": "164ded09-e221-479b-88cc-e5858dc50081", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -99684,7 +99684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7008775-a6d6-4700-891e-19a5bd712635", + "id": "7fec1725-f81d-4795-9118-26416cd3e93a", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -99750,7 +99750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d223b085-3cbd-436b-9bd6-00fd2560d129", + "id": "a61212a5-c3da-43b4-8e43-2aa25db1024e", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -99816,7 +99816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "520fe117-9a86-422f-93d4-3a00d2864968", + "id": "fbdcf5f3-3448-47dc-9a47-3deeefae670b", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -99882,7 +99882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51ec2c9c-4550-4790-94c2-7a4cc5e751a3", + "id": "757ba33d-8a85-48ec-8b54-d01f1904b53b", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -99948,7 +99948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfd8efe3-b8bf-4e8e-b4ed-d9e7ff9c6819", + "id": "f0683211-aa5f-4599-aaf2-90c2132217b3", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -100014,7 +100014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c10386-41ac-4eaf-9906-cc648d70cbe1", + "id": "a207e312-905c-4c81-b3eb-7d1fb45908af", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -100080,7 +100080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee60fbf6-dbda-499a-bf86-3894d65b6452", + "id": "c4cd4942-2f4d-4ec4-83c8-f972190c44fc", "name": "Make an entitlement requestable and privileged in one call", "originalRequest": { "url": { @@ -100146,7 +100146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9618da6-0a68-42bd-9fcc-d8a57b14266a", + "id": "126ae97a-088b-45d5-bb9f-8a4b9a5cba43", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -100212,7 +100212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1a3291e-2d5f-4282-a901-57fde49c50df", + "id": "4c581444-2951-45fd-ada9-32f6e8fe2872", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -100278,7 +100278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0ab5ff7-ee7c-45c5-8d1a-d11ebff05596", + "id": "8f028810-2013-4c03-b046-23f2a84fa1c7", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -100344,7 +100344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b95f17c5-138c-40ac-bf4a-8d91b01714b4", + "id": "7a7afdad-1ec7-4e92-a231-6e29e09324d2", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -100410,7 +100410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4a7ee9-7ee4-4add-8a72-b6c5bbb482e4", + "id": "6f89e6d8-3bda-49f2-9383-16a9219f3faa", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -100476,7 +100476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df37414-29a0-45c3-b9f7-9e2393b4c746", + "id": "94466f9c-02d8-43d1-aa7f-2d5d805ec6df", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -100542,7 +100542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "378c649e-3cde-4e53-a9dc-4b020c227a0d", + "id": "41faa5fd-f815-469d-a05d-b6954fa80ba1", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -100608,7 +100608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fec8986c-327a-4711-bf58-ecbe8612cff1", + "id": "fba0fc0d-6d47-41cc-a0e9-aa9c1bb2aa4c", "name": "Assign an entitlement to a segment", "originalRequest": { "url": { @@ -100674,7 +100674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cab5f969-01f6-476a-9135-8e4300805fe9", + "id": "846d8fe0-9d9d-422b-9446-41b02ff33c26", "name": "Assign an owner to an entitlement", "originalRequest": { "url": { @@ -100740,7 +100740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81aeeece-1664-499c-8750-9b4b31d245c3", + "id": "26ec26b5-d6ab-4630-9e7a-21b28c202eb6", "name": "Replace an owner for an entitlement", "originalRequest": { "url": { @@ -100806,7 +100806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ddc223f-1ced-4840-9053-8fecfb75d318", + "id": "430a3714-7cac-400c-a1d4-b1c5e903d8c6", "name": "Set entitlement manually updated fields", "originalRequest": { "url": { @@ -100872,7 +100872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e607478-2feb-432b-83c3-49d41367536d", + "id": "3d9ae470-7f5c-4a7b-b04d-79fa397166f4", "name": "Add the description for an entitlement", "originalRequest": { "url": { @@ -100938,7 +100938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d287e63-bd97-4bb5-868c-d2b56c9ba995", + "id": "a2a7db22-f9ab-4fce-884c-bafba9ca5347", "name": "Update the name for an entitlement", "originalRequest": { "url": { @@ -101010,7 +101010,7 @@ } }, { - "id": "90bca14b-0f91-4411-84e6-0206e34b3853", + "id": "c124cbb5-9562-4a30-ae53-6169595c225c", "name": "List of entitlements parents", "request": { "name": "List of entitlements parents", @@ -101107,7 +101107,7 @@ }, "response": [ { - "id": "65b8b62e-f4c0-4182-8dc4-30eeca4d71ec", + "id": "ab5bc306-a2e2-488e-a21c-cb678138557d", "name": "List of entitlements parents from an entitlement", "originalRequest": { "url": { @@ -101207,7 +101207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae3b0ba-8ef4-4931-80ea-ac27cc32daea", + "id": "23d412a3-4b20-436c-a884-c33e901abbbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101307,7 +101307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45bc9c33-8c42-41af-944a-092f6416d3a5", + "id": "9671dcca-10d4-48e8-95ee-c6f3bb424d85", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101407,7 +101407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38b75a53-4091-4c3c-b593-6cc9ad0d7af6", + "id": "53260e56-0d0e-4ffe-903b-a31f336fbc07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101507,7 +101507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a42cb5f-87b9-4c7f-a564-dd3f2ab09191", + "id": "4c79e57d-3b56-454f-8342-c41604703712", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101607,7 +101607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9d696f0-33de-4223-a34c-8d9d30eb87ca", + "id": "8776843a-fd32-4a6b-9d82-dfa720803b72", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101707,7 +101707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe72657-bf7a-4540-9c3c-314576b42e4c", + "id": "2c17ac16-80ed-4727-a7d6-d9021cabb2a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101813,7 +101813,7 @@ } }, { - "id": "96587671-71cb-4e98-9878-d228dd8d90c0", + "id": "4ca4e988-3e49-4f38-82e5-0a441ada999e", "name": "List of entitlements children", "request": { "name": "List of entitlements children", @@ -101910,7 +101910,7 @@ }, "response": [ { - "id": "f57645ca-85fb-4b5e-9420-2ef648546164", + "id": "5bfed0ae-07b1-4fbc-8fd6-fc02740ab7b9", "name": "List of entitlements children from an entitlement", "originalRequest": { "url": { @@ -102010,7 +102010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddf3b622-9280-457d-bfd4-fd94d3cb1c4a", + "id": "e88061bb-ef42-4dbe-9f4a-7acc0e6bcdf0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102110,7 +102110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b000481-87d1-44f8-9cf7-04d3d54bc786", + "id": "d585cafa-5dad-41d8-9668-599d763ae5d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102210,7 +102210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2f2fd50-9ed9-4250-9128-abdc509ea30b", + "id": "5bf56f46-8ba0-4008-a05e-059d3435ff90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102310,7 +102310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "479a7697-31f5-43ab-ae2c-c206a1f3dac7", + "id": "47e7c1f4-205d-4ebe-9642-b573338c7e77", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -102410,7 +102410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6d57a4f-7808-420b-9c92-281427a9df1e", + "id": "2b014eda-9531-4c23-9828-dc40ea1af7c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102510,7 +102510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c48afda-9259-4bdb-ac87-71dc163bc326", + "id": "49b917be-4864-48f7-8fc5-44125e1f0897", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102616,7 +102616,7 @@ } }, { - "id": "f631514c-5e30-4cea-ad77-d225cb46cfbf", + "id": "4f91c7fe-00a8-4001-89ef-7e7953a98c1c", "name": "Bulk update an entitlement list", "request": { "name": "Bulk update an entitlement list", @@ -102668,7 +102668,7 @@ }, "response": [ { - "id": "6f8f6e55-f1f1-43ae-be1d-7e1cb7d36dd5", + "id": "2e6286fd-d3ec-4cfb-a741-bf6e32928405", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -102724,7 +102724,7 @@ "_postman_previewlanguage": "text" }, { - "id": "803eb30d-4c5c-470e-aba7-3fa29c681b75", + "id": "4875237b-c6ff-4065-96c6-4a4696da1e49", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102790,7 +102790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66fb26b2-511c-4bc1-baf8-d2e37c6cc472", + "id": "75d984e1-a823-41b1-b354-708515dd2835", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102856,7 +102856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df19c3e4-95ac-4087-b139-8a6e983b1019", + "id": "8ed1dea4-b87c-4ede-8496-3d00da1549ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102922,7 +102922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ffb6907-922b-452c-be22-d32e8cd7a38d", + "id": "be82bff7-148d-434e-9d6b-652c73727afa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102988,7 +102988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d497b5b-2cf0-40f4-92e7-972d6ba25ee1", + "id": "fa5ecf8e-1d9b-4703-8686-74cb2caeaa55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103060,7 +103060,7 @@ } }, { - "id": "d9d1c569-e463-4b18-95c9-d4041ec240fe", + "id": "ce1d9431-0bdf-41db-9871-b4ee0d50e1ea", "name": "Get Entitlement Request Config", "request": { "name": "Get Entitlement Request Config", @@ -103111,7 +103111,7 @@ }, "response": [ { - "id": "9100d4af-2666-45d4-b1e7-af0b79a52eb4", + "id": "b5c322e1-7477-48a8-865b-0d2136b98108", "name": "An Entitlement Request Config", "originalRequest": { "url": { @@ -103165,7 +103165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16372f59-f4ee-4474-b75c-8a889bafb026", + "id": "8b9950c9-9a46-47ba-8b66-fc46c009f036", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103219,7 +103219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7c62436-9bb8-45d0-8c9d-f7c31ee9c23d", + "id": "272f0abc-e404-4e99-ad43-d8f18252f345", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103273,7 +103273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59d3836d-744e-45ba-bc8b-c3fec391f881", + "id": "3f02eecc-93a6-465f-a5c9-6cbc3d7ea15b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103327,7 +103327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6d0067-6040-4189-9320-f6fd1d6b3c35", + "id": "5c1b7967-b75d-453f-bb3e-468339bbfcc5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103381,7 +103381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4fead61-57a1-4e7b-ad01-7e73b48f2564", + "id": "b1c6da1c-7d26-4ac3-9bcd-d14eed914f48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103435,7 +103435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90bd7393-ac7e-4ede-9eb3-2f1afd4b1f8e", + "id": "4e3bcbb6-5d72-449c-8187-a28bfc90ac72", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103495,7 +103495,7 @@ } }, { - "id": "f26d42e0-cac4-48f9-a5a5-839b5895ff53", + "id": "746f8190-04bd-4299-93cd-54726c5bb6a2", "name": "Replace Entitlement Request Config", "request": { "name": "Replace Entitlement Request Config", @@ -103559,7 +103559,7 @@ }, "response": [ { - "id": "15245576-681b-4cf1-84b4-d77ce5fdeb55", + "id": "1100ccd6-6595-4b41-9e9a-6033964bcf7c", "name": "Responds with the entitlement request config as updated.", "originalRequest": { "url": { @@ -103626,7 +103626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "116cfef9-f339-4ac6-986a-f729836b0eab", + "id": "aa5da895-ea88-4258-b917-7d8bf9c888fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103693,7 +103693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef813851-6773-45b1-b5fb-c5dba1734972", + "id": "6644156d-a085-42dd-9f47-8697459d6565", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103760,7 +103760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28a260f-ac44-4480-89bb-dd58f393e84f", + "id": "5e6b45ad-db2a-41f8-a633-31b6d6f44d8a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103827,7 +103827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "496b1fad-df21-499a-8f8e-ae8999368192", + "id": "a243f91f-5802-4067-bf59-77975a0ce40b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103894,7 +103894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eba1fcc2-72e9-46d4-b7e5-28208f054d16", + "id": "1085802c-4bc6-4319-9a98-cc7be8ec360f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103961,7 +103961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eea6e0e6-ac20-4a76-bd42-44cea4195048", + "id": "135843df-352f-46f5-a765-7d52c1c32afe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104034,7 +104034,7 @@ } }, { - "id": "ad751203-acd5-4dbc-96a1-48d19d705f8f", + "id": "9505a082-5e3d-4e6b-9af6-428197d878d5", "name": "Reset Source Entitlements", "request": { "name": "Reset Source Entitlements", @@ -104086,7 +104086,7 @@ }, "response": [ { - "id": "d095ca27-71c4-425c-bc10-0f3294c4bccd", + "id": "62aa78f6-1508-48ea-b1f6-a9432b75bb98", "name": "Entitlement source reset task result", "originalRequest": { "url": { @@ -104141,7 +104141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bd2813d-7acd-495f-ba1b-fc24600dfc80", + "id": "bf242c3f-0e2a-4fc5-abb5-16e5d13b8de4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104196,7 +104196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bee4ff60-64a0-4794-9cda-3d4a282715c5", + "id": "a5410cf5-5874-4250-88f0-66eea4048427", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104251,7 +104251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a1acffe-3b99-43e4-9c10-28431094623f", + "id": "7d9f1eec-9398-4b1d-a74d-8684ed46b703", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104306,7 +104306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03c6b4f0-678d-4b17-ace8-a58dcb308a4d", + "id": "fb6982fb-279a-4dd8-84dc-a1a38626f714", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104361,7 +104361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82f50964-c00b-4bf3-b5f1-38376337015e", + "id": "93347d69-9355-4068-b929-3f4d3adc6e53", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104422,7 +104422,7 @@ } }, { - "id": "49af659f-2191-4c2c-9720-575b7576f0ee", + "id": "af048589-1e8a-4d70-923e-6a063674874f", "name": "Add metadata to an entitlement.", "request": { "name": "Add metadata to an entitlement.", @@ -104496,7 +104496,7 @@ }, "response": [ { - "id": "213c241b-6e4d-4bdc-a79e-720c1325fea7", + "id": "7b823301-0289-4dc3-9791-ec51c336aeb8", "name": "OK", "originalRequest": { "url": { @@ -104553,7 +104553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c8343b-218d-40ae-bff6-77a842aa12b9", + "id": "25a28d3e-488f-416c-bb34-8fab9267befa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104610,7 +104610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66154024-92bb-4f0e-a709-e96da63c38b9", + "id": "b4e6bf55-5675-4750-b053-8bc7ed7f3b29", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104667,7 +104667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f5fa21b-22af-4d8d-a9cc-23f35fce0757", + "id": "de18aac4-7b0f-48e3-af47-4347c102dca0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104724,7 +104724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfee3c99-28f6-4804-bba7-cedac475354b", + "id": "1ca6ae1f-20f7-412b-8315-7acb865a018e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104781,7 +104781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "198de46d-ccb1-456b-b4ee-951ff58e2bb3", + "id": "a727d5aa-1025-4398-826d-80416f1ceed0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104844,7 +104844,7 @@ } }, { - "id": "742097ed-fe84-4179-a5c7-1e4287b68ed1", + "id": "363c222d-fde8-4e1b-999e-ba6cd7b99c92", "name": "Remove metadata from an entitlement.", "request": { "name": "Remove metadata from an entitlement.", @@ -104918,7 +104918,7 @@ }, "response": [ { - "id": "a4e5279f-0089-4e10-95e5-be84f34b7b78", + "id": "0eb0bca8-70e5-43ca-84d2-b8ac6dae8d27", "name": "OK", "originalRequest": { "url": { @@ -104965,7 +104965,7 @@ "_postman_previewlanguage": "text" }, { - "id": "69666162-1f39-43e5-a366-ffec9beba66c", + "id": "6ba198fa-9014-499b-b6b8-ec398c8e35ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105022,7 +105022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c46192f8-e880-47d3-baf1-24fb0187d274", + "id": "8f476ab1-0c55-49c0-83e1-3babadb88f31", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105079,7 +105079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f63f4c08-aabb-4bc7-b92a-d957ee635f83", + "id": "e1bdaf9c-ed0c-4fce-bf51-9f25a37d5047", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105136,7 +105136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78c8fb37-68aa-4833-a96c-82e2250d2cba", + "id": "2d16e9e0-75a2-496b-a1a2-268be5492639", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105193,7 +105193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75d9db09-f9a7-4e3c-b7d4-72600eff98e3", + "id": "7fab2e53-d020-4a84-a704-17e9ae3ea118", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105256,7 +105256,7 @@ } }, { - "id": "a7da8322-d910-49cc-aed9-19e44fa50bfa", + "id": "ece1b086-af43-40aa-9845-da3fe2ef486a", "name": "Aggregate Entitlements", "request": { "name": "Aggregate Entitlements", @@ -105324,7 +105324,7 @@ }, "response": [ { - "id": "24dd6b45-205f-4948-a0b6-119d218a0dc5", + "id": "a4de44b6-f7af-4347-ab08-7c7eeeea4fa2", "name": "Aggregate Entitlements Task", "originalRequest": { "url": { @@ -105395,7 +105395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c058dbf-ff4a-4c95-9960-03a6fd78f7f4", + "id": "cd8aa7a8-7f7e-4a2f-96f8-ecfe49b1e106", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105466,7 +105466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21158354-c348-4601-97dd-e147017f6f15", + "id": "255a920d-acf8-483b-8de7-ba33da5755e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105537,7 +105537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9eafdabb-9120-4ed5-a34b-23f8f8770008", + "id": "99090886-057e-4b5f-87d8-2c011bb0c943", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105608,7 +105608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f49b4d84-8c63-4f72-b061-9baa0fc859ce", + "id": "dede5584-aeed-4d48-bc93-47064ab1169b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105679,7 +105679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da26de98-1a0c-44fa-82f0-afca72ff3d51", + "id": "bceb1960-756b-4c37-8322-1e9e11e86d2c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105762,7 +105762,7 @@ "description": "Use this API to implement and customize global tenant security settings.\nWith this functionality in place, administrators can manage the global security settings that a tenant/org has.\nThis API can be used to configure the networks and Geographies allowed to access Identity Security Cloud URLs.\n", "item": [ { - "id": "be5518ab-448f-4f0a-9f05-0d13f5ce2b76", + "id": "824c8602-11c8-4062-b877-aef7eaa95826", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -105792,7 +105792,7 @@ }, "response": [ { - "id": "e75ef9a8-e899-4fc8-89f2-342448541f5b", + "id": "c6bac6b6-88b4-4f38-84b8-d3e9b3016950", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -105836,7 +105836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63f01205-4555-4eb1-ae8e-3c4e88446a72", + "id": "faf493f0-872a-42ad-82ec-fc894dca1f30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105880,7 +105880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9219c3a1-7582-447d-9754-72c363984ac8", + "id": "fb0773c4-fc47-4a2e-a7ef-8a5157b78e36", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105924,7 +105924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d941595-cc39-4151-a62c-57e37287ad95", + "id": "dff174ae-43b8-43d5-b773-201a5adf16ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105968,7 +105968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69eff05b-8573-4429-a766-4508203775aa", + "id": "9af6f0ec-cc09-4fcd-a25e-ad988cae7f88", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106012,7 +106012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e300359-ad41-4b7d-8f85-970f2273dca1", + "id": "293fb05f-549c-4788-a0a5-de530774fdf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106056,7 +106056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8acf1ff0-d169-4c40-a377-af8af01dae69", + "id": "752a906f-3d55-4f3e-b54f-77fd5e01e8eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106106,7 +106106,7 @@ } }, { - "id": "6c8b582e-4f8d-4127-99ca-ca013d67076c", + "id": "497b863a-9112-47b0-a422-7c9873df287b", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -106149,7 +106149,7 @@ }, "response": [ { - "id": "a1cdcf55-9606-4365-80fd-0452469ef8f8", + "id": "50a692ba-cd50-419f-8d3c-a1b2f5114a66", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -106206,7 +106206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2084b60-bc71-4d1f-9c4a-919bb31c2700", + "id": "95291952-28d3-45c2-af8a-3beb097b688d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106263,7 +106263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae578733-9526-4a74-a010-0747eed38bdc", + "id": "da488252-0b42-4c38-8d75-2b198d9507c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106320,7 +106320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c93372-a916-4c62-94ef-e1b52e33318d", + "id": "88026a51-401a-415b-865a-a48a5c7dace4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106377,7 +106377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a3b8bd-22c2-4b94-8c1c-0e828cd058f4", + "id": "6d9218df-bba8-4011-b72d-648c131fd662", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106434,7 +106434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad544663-25b3-4544-8e2c-23b4e6e4d808", + "id": "fbc9364d-cb02-4115-b112-a99981361067", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106491,7 +106491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73215c59-d6b0-4b8e-bd8e-104ba412d40a", + "id": "52437e02-b54a-44a3-a92c-8fa415cdcfb9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -106554,7 +106554,7 @@ } }, { - "id": "8fc199cf-52ea-4316-8e2c-c9e8a0fc732e", + "id": "118ac44c-5266-4939-915e-418daff8d3f0", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -106597,7 +106597,7 @@ }, "response": [ { - "id": "4ab8e346-f6ad-465b-8dc9-33aff4fc8466", + "id": "a05e6603-082f-4c33-991d-46db30edcced", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -106654,7 +106654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e878aa4-699b-45c5-9a2d-0265d742819f", + "id": "d33bdfe7-c76b-4c8f-8d42-419c6a4e52b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -106711,7 +106711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19fa4a54-7840-4667-a6bf-9444e82e9e51", + "id": "65864309-a285-4519-90ba-3d935c2c5e32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -106768,7 +106768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "032d844a-9588-45e7-a4d1-86e28ef6ac1b", + "id": "71c5d35c-5675-48ce-ab89-a2066e307c68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -106825,7 +106825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4b7bba6-238b-46ba-b974-b6ef16786805", + "id": "cec58efc-3a65-4001-8e2c-4ee76b35b024", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -106882,7 +106882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54eead8d-a227-4609-aec6-732c7bfa5ce5", + "id": "38378e19-023a-4a99-bda6-3294e17cc9d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -106939,7 +106939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e69c7ee-ef50-43ba-84ba-ec271fa89c89", + "id": "0d13846b-0ec0-49e7-bf4a-60b73ae537ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107008,7 +107008,7 @@ "description": "Use this API to implement and customize Governance Group functionality. With this functionality in place, administrators can create Governance Groups and configure them for use throughout Identity Security Cloud.\n\nA governance group is a group of users that can make governance decisions about access. If your organization has the Access Request or Certifications service, you can configure governance groups to review access requests or certifications. A governance group can determine whether specific access is appropriate for a user.\n\nRefer to [Creating and Managing Governance Groups](https://documentation.sailpoint.com/saas/help/common/users/governance_groups.html) for more information about how to build Governance Groups in the visual builder in the Identity Security Cloud UI.\n", "item": [ { - "id": "eb52f0f0-a498-4e59-99c9-bce1029db21a", + "id": "a3f74141-54aa-4783-a975-ebde294a1087", "name": "List Governance Groups", "request": { "name": "List Governance Groups", @@ -107092,7 +107092,7 @@ }, "response": [ { - "id": "4bbf7dab-0aac-40cd-98c4-e11fbb0cca0a", + "id": "1001cf3e-3486-4245-afb0-c6148dadf78d", "name": "List of Governance Groups", "originalRequest": { "url": { @@ -107190,7 +107190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a48afd9a-dfbd-4538-9865-d0ace30c5f04", + "id": "187c1c52-2ef0-418b-86fd-71862131b3ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107288,7 +107288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ad05ac0-0769-4875-8269-cc2b2c539b2f", + "id": "f94af633-770f-4b52-a1f7-91dde10f2434", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107386,7 +107386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "699de265-1975-4e7a-adc9-b279b0aa7c15", + "id": "1166c425-8a2e-46cb-a34f-bbff11d46389", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107484,7 +107484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "193164e4-e504-4b47-9585-0c88fac58fd0", + "id": "40130153-4a1c-4f4f-b412-d35286ccde63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -107582,7 +107582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c9531b7-de27-462b-9347-11e6358e3fe4", + "id": "ca6b9de7-1844-4901-93ec-23f5335b26ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -107686,7 +107686,7 @@ } }, { - "id": "e6a27af6-a82a-4bbf-9b40-f90f0fc734e2", + "id": "a48bff19-e208-4d8e-bd9d-b09bddb9e613", "name": "Create a new Governance Group.", "request": { "name": "Create a new Governance Group.", @@ -107737,7 +107737,7 @@ }, "response": [ { - "id": "d14a853a-617d-4d8f-938d-c1a2b45910c1", + "id": "164213c8-41bf-47b2-8135-800e9abfdb72", "name": "Governance Group object created.", "originalRequest": { "url": { @@ -107802,7 +107802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bdaa764-dc71-4e90-82b3-f06f0f7b932e", + "id": "7e6b3dab-a6c7-40f5-ba41-efc632cc1ea6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107867,7 +107867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de42d14-9b58-4735-b6b8-9458628d93c9", + "id": "c9638406-ee2c-4591-8b34-6cd9e21a478d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107932,7 +107932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f24dec81-7352-4c9a-a134-33edb608ace1", + "id": "37c15e52-9123-4964-9330-ccaf64562da4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107997,7 +107997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40989b40-5740-49f5-b677-d865a288759f", + "id": "954f407b-97d4-404d-8fcb-4fa63472d81d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108062,7 +108062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9934eb60-ee2d-45e4-a04e-d30740abd1fe", + "id": "2a9f6957-dece-427c-93e4-f801b8dde15e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108133,7 +108133,7 @@ } }, { - "id": "597e51ec-0885-4013-8c49-0fa752785e9f", + "id": "662d4c93-787a-4d23-b285-e12227a40fe0", "name": "Get Governance Group by Id", "request": { "name": "Get Governance Group by Id", @@ -108183,7 +108183,7 @@ }, "response": [ { - "id": "b6faa454-1c19-48dd-b9c2-e1c075badcb5", + "id": "4acd3ef2-54af-4423-bb72-22f3a48560b9", "name": "A Governance Group", "originalRequest": { "url": { @@ -108236,7 +108236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d520537e-9a87-4598-8a25-5f7c1d9b5d8e", + "id": "588ec7f3-996a-4aa9-bffb-a9ccd5aca3d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108289,7 +108289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aaec193-e6be-4cd2-9128-a620ab7fd56b", + "id": "b4cf3030-8705-4d7a-a937-c86dc52ea54a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108342,7 +108342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7a0c635-ded5-467f-b5fa-884596000518", + "id": "ad4881b4-15a4-40cf-976b-0e36772b9c28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108395,7 +108395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d43458be-ff3e-4335-9063-11dae9455073", + "id": "76e29827-d4c0-4379-9667-036b90d07a30", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108448,7 +108448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aec270b9-aaef-41a2-a4b3-04f0691716eb", + "id": "ebf6f80f-794e-4731-a129-043ff1585885", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108507,7 +108507,7 @@ } }, { - "id": "603b7ae2-e792-420f-8d78-e1f65eb1f26f", + "id": "cf29d410-8b28-42e6-b128-da4031d5680f", "name": "Delete a Governance Group", "request": { "name": "Delete a Governance Group", @@ -108557,7 +108557,7 @@ }, "response": [ { - "id": "a16ee036-0504-47e0-9bbc-4a5f81d6d501", + "id": "4e8cb6a5-efd8-4225-b4de-88d2eac37702", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -108600,7 +108600,7 @@ "_postman_previewlanguage": "text" }, { - "id": "36f0eba8-0245-471b-bfa4-4b78975b4585", + "id": "f13303d0-264f-4f74-b5f5-c454868de684", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108653,7 +108653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ad10c9-b69a-43ac-84a0-5b58648d36e0", + "id": "053285cf-2e87-41bd-a0a8-16f3abd95a16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108706,7 +108706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c19b56-33b3-4593-9517-835ddebc38f7", + "id": "4d0dbad3-a9c1-4bd2-9263-eaa951d15bfc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108759,7 +108759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf8f605c-712d-410b-8b8f-5a46c0f5b0f2", + "id": "ce513458-d8fa-4e4c-80b7-09ad53060fdf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108812,7 +108812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb39691f-7431-411c-bbd6-3df8308162da", + "id": "c7b84323-9dc3-4465-b790-8f393d6dd35e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108871,7 +108871,7 @@ } }, { - "id": "cefc9b0b-6ca3-4fa0-938a-d23b50de45a3", + "id": "3efd2736-4275-46c5-bb84-884837dbc602", "name": "Patch a Governance Group", "request": { "name": "Patch a Governance Group", @@ -108934,7 +108934,7 @@ }, "response": [ { - "id": "15843e28-05c2-4c32-9dda-38d82b0d48c2", + "id": "264522ac-4473-4a1f-9540-e9635a7ef885", "name": "A Governance Group.", "originalRequest": { "url": { @@ -109000,7 +109000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625ca644-b677-441f-b60a-d3c3fbfd8538", + "id": "dfc78a11-84cb-4aea-93f6-83ba10cda37e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109066,7 +109066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d604b2f-c4ab-4299-9700-32d36bb926e4", + "id": "252debf2-7d68-443e-826c-f9029e98b076", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109132,7 +109132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72f0adeb-36cf-49ec-8292-1eb4b8b746e4", + "id": "ace9b4e0-bb8e-4356-8e5a-d8525fff0c77", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109198,7 +109198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "336bb1cc-7502-478f-9edc-27a76b86486d", + "id": "e540830c-26cb-4d79-9595-09819c20b4ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109264,7 +109264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90629bca-ff50-4ea6-965a-7a8be0fe8f59", + "id": "08a0b403-da4a-4c56-90ad-0f38108d3cff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109336,7 +109336,7 @@ } }, { - "id": "26c0815b-dfd6-4a8a-8a31-e91e2c40005a", + "id": "cecfbdcd-313b-4920-94de-69677f582fbe", "name": "Delete Governance Group(s)", "request": { "name": "Delete Governance Group(s)", @@ -109388,7 +109388,7 @@ }, "response": [ { - "id": "7b9b8e99-3f6a-418d-9a3f-48e66aee4b19", + "id": "ff58eee3-ab26-4bb2-ab2d-6c0428f99b38", "name": "Governance Group bulk delete response.", "originalRequest": { "url": { @@ -109454,7 +109454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2553434d-2449-4aa9-a215-7a6862d631c3", + "id": "1ec28a83-733f-4c38-a258-a6ea0be7ab74", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109520,7 +109520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e47a90fe-ac73-4b19-bd82-48c3f09c46b1", + "id": "e9b94316-d427-49ed-8a6c-486f9f973192", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109586,7 +109586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "301c392e-5143-4f02-80da-342a5492b78c", + "id": "8e6714e7-9a2f-47fb-a6aa-d06b3e6b39d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109652,7 +109652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbd2d5ad-8a1d-4d7f-a082-dfbaa5339efd", + "id": "2e42d33e-73e4-4f2e-a496-02a4a8678e5c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109718,7 +109718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7dbd0a7-34a9-4f88-864b-326f110d01ff", + "id": "5924f9c1-5798-437b-b0e4-e49e4734823d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109790,7 +109790,7 @@ } }, { - "id": "ff85566a-80d9-409f-a3fe-b154c582e1ec", + "id": "6569dd2d-7498-49d9-8d33-b124352507bc", "name": "List connections for Governance Group", "request": { "name": "List connections for Governance Group", @@ -109878,7 +109878,7 @@ }, "response": [ { - "id": "eb06d63f-e4a2-44ac-baf3-64e792da18e6", + "id": "69473a50-1b42-41a9-bf12-a2db16e65688", "name": "List all connections associated with a Governance Group.", "originalRequest": { "url": { @@ -109969,7 +109969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb99c0b-5d20-467c-a71c-0b075ea05190", + "id": "428c50a8-fb85-4c0c-b883-5f0eadb7244e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110060,7 +110060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92cfaba7-1f14-4b7e-b046-4d2b70920dbe", + "id": "c684e801-ee3d-4d55-bd83-75dd9a617870", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110151,7 +110151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc83eee8-0c0a-4b03-9e64-55ee083f3e56", + "id": "a053a82d-1d93-4fb2-b404-5260790888ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110242,7 +110242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f416e7c-de6f-48ab-a0d7-b55f626f6b0c", + "id": "72025061-3996-4368-93cd-6f3300376649", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110333,7 +110333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ea42c1a-3efa-4c33-987d-74aecea5d2d2", + "id": "bcec30b0-6d92-4acc-9868-725aa692ee41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110430,7 +110430,7 @@ } }, { - "id": "ba4434dc-1e32-409b-9ce0-af72a312f826", + "id": "b0b7a43c-e169-46d0-b543-c954af784ece", "name": "List Governance Group Members", "request": { "name": "List Governance Group Members", @@ -110518,7 +110518,7 @@ }, "response": [ { - "id": "eb2bc68f-cedf-4690-a01b-adedd0fbeb15", + "id": "1cf99c81-5c7b-441e-9ba7-854b98d82116", "name": "List all members associated with a Governance Group.", "originalRequest": { "url": { @@ -110609,7 +110609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579cf5ea-26dd-42cb-ad8f-a346d922ddea", + "id": "7df768c2-c913-4cb4-b103-f8c0753fe55e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110700,7 +110700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61c0968f-c7c1-4c4c-977a-bd4c5d0d8ef7", + "id": "7b1ba932-9fc2-43f7-b05b-d129a860a7e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110791,7 +110791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c50d1f23-9443-4a93-8552-3e3a4ea3e45c", + "id": "b4ee4803-04f7-48e2-829b-a6786dc02e8b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110882,7 +110882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf90b7c7-8478-4c3b-b7e9-e34ffec4b816", + "id": "f12eb51a-266d-414c-b1f9-3028af52ef31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110973,7 +110973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89dc37a1-e41b-4445-9af3-459b6425764c", + "id": "3722bd9d-c907-4345-9cf3-f540e7532f03", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111070,7 +111070,7 @@ } }, { - "id": "6b31450a-b95d-41bb-a233-6865ee98a177", + "id": "4fcaa27a-c6a1-4224-9658-c91e7c9f833a", "name": "Add members to Governance Group", "request": { "name": "Add members to Governance Group", @@ -111135,7 +111135,7 @@ }, "response": [ { - "id": "cbde358e-2035-44ce-b9bf-5511c663d501", + "id": "57158731-eac1-4ad8-a8f2-689037d914e0", "name": "List of added and not added identities into Governance Group members list.", "originalRequest": { "url": { @@ -111203,7 +111203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5d2d15c-cdf0-4054-baab-d4c8cc226e86", + "id": "698ff423-0571-48a9-8885-75d02b06a2a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111271,7 +111271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed5e735-ce77-4335-af70-1090b31afdd1", + "id": "6ab44087-4652-47cb-939f-6953f3c024d0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111339,7 +111339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "843fc978-cf0c-40df-ace4-ec464464c925", + "id": "9afbc279-2288-4c6d-b14d-597e71a4b3ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111407,7 +111407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d824201-1d08-47e2-93cd-56fd47f4cc6f", + "id": "8891b7df-9621-4ddd-a99f-ee56e07f0263", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111475,7 +111475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7745039c-a2fc-4ad9-9294-9e97fb7388e3", + "id": "79a0fe48-d2c7-4e01-a44e-9720c1e3f81f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111549,7 +111549,7 @@ } }, { - "id": "cd2d6887-f410-4e0e-b266-d51a292ed592", + "id": "0ae411d6-8eb0-4d6c-a01d-79f911f475eb", "name": "Remove members from Governance Group", "request": { "name": "Remove members from Governance Group", @@ -111614,7 +111614,7 @@ }, "response": [ { - "id": "3c3b4701-f975-4e65-99e3-929b2860f77e", + "id": "c321ed69-7d67-4edb-83a7-7a4b1966b48b", "name": "List of deleted and not deleted identities from Governance Group members list.", "originalRequest": { "url": { @@ -111682,7 +111682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a9ba23d-7ede-40a9-af41-78bf0f6df6c2", + "id": "965a61a1-b76b-4460-8b8b-0502fcea5f78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -111750,7 +111750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a06a635-d8cf-4fca-aa6e-e46cf8bba027", + "id": "4da41fa0-8a74-4764-9da4-986a07579d63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -111818,7 +111818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55c21fe6-49e6-47bf-a340-bb16a93e4555", + "id": "d54000a8-ac57-46ec-b130-594611bf359b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -111886,7 +111886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65f153fc-624f-4b94-87de-2b6f35adaad4", + "id": "bb54e249-4a6b-405c-9d3f-be0165d718d4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -111954,7 +111954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc4611ed-b348-4373-8679-b2362f49b2d8", + "id": "c3ac0451-fc00-49f8-ad59-8239e15a8cd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112034,7 +112034,7 @@ "description": "", "item": [ { - "id": "68e14dc0-b59a-48db-a3f8-2973c0ef90ca", + "id": "6d20d4ca-fca5-4912-9f84-9a13c2d859cb", "name": "Identity Access Request Recommendations", "request": { "name": "Identity Access Request Recommendations", @@ -112111,7 +112111,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112136,7 +112136,7 @@ }, "response": [ { - "id": "c8d28036-9da5-47ac-9c16-44aef3ccdcd0", + "id": "45c71729-0af8-4af4-ad26-6488f38ef9c7", "name": "List of access request recommendations for the identityId", "originalRequest": { "url": { @@ -112208,7 +112208,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112252,7 +112252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b156be94-8b56-4dd8-83be-f86a04900619", + "id": "0f382b92-0456-4680-b238-4209d304d2a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -112324,7 +112324,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112368,7 +112368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852d33a9-0e7d-4e4d-8e1f-7ab3690d4a5d", + "id": "9fa39c6a-9625-47d4-9701-ecf91ab586fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -112440,7 +112440,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112484,7 +112484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f8e6e10-a1eb-48e6-b56a-c9818aa1cb38", + "id": "fb832986-89fb-419a-9bed-5d793da2c39c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -112556,7 +112556,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112600,7 +112600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "793db49f-507d-4913-a77d-2751f7f69680", + "id": "7b07bb84-c382-40da-a9fc-90c71d5e7d7d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -112672,7 +112672,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112716,7 +112716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cf50450-d828-47ef-8c88-5f5f68877312", + "id": "00b46fc3-9316-429c-94cc-f163c9d33f06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -112788,7 +112788,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -112838,7 +112838,7 @@ } }, { - "id": "41265b2b-b312-4001-ac87-691fa16ad093", + "id": "36a6b41c-d255-4e80-bfae-0ad90254d34a", "name": "Notification of Ignored Access Request Recommendations", "request": { "name": "Notification of Ignored Access Request Recommendations", @@ -112890,7 +112890,7 @@ }, "response": [ { - "id": "b4098386-e8c9-4f8c-9489-bebb9b62daae", + "id": "214edb3c-e1c5-4a24-8959-b0e86340567a", "name": "Recommendation successfully stored as ignored.", "originalRequest": { "url": { @@ -112956,7 +112956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "688706c7-137d-4873-93ce-fdcd3ec89342", + "id": "cfd9aa93-71cb-4eed-9788-032d7b094d05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113022,7 +113022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4ef9889-8e66-45a0-bd57-1fbd785ce3ec", + "id": "7ed47b27-940e-48fd-9a02-785a94a05062", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113088,7 +113088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b56c1dd0-81f4-4360-90c0-403a7e96955a", + "id": "82db293b-d288-4731-8159-081003b06367", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113154,7 +113154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9654cd3c-9c8b-4cc4-83e2-f3fd52f6a9d1", + "id": "cd8ed2ba-5ef5-4976-a444-ca71fe6bf2c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113220,7 +113220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b57083e-4362-4d66-a9e1-7b7ae8c67401", + "id": "f3f3eb03-b12c-41eb-94c2-a430be54951b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113292,7 +113292,7 @@ } }, { - "id": "a181c7e3-b0cb-469b-be27-012acf53fa42", + "id": "da3be723-9b30-4d76-bc00-471a7f31d19d", "name": "List of Ignored Access Request Recommendations", "request": { "name": "List of Ignored Access Request Recommendations", @@ -113377,7 +113377,7 @@ }, "response": [ { - "id": "722b6252-191b-41f2-9424-35aca2b80d49", + "id": "c9c79c60-077b-495f-a17e-a6334841cf9e", "name": "Returns list of ignored access request recommendations.", "originalRequest": { "url": { @@ -113476,7 +113476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6faed42d-b935-4852-801d-f9bcefacc1ec", + "id": "3b0e3fb1-196e-4aea-b1a8-89b6f167ad89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113575,7 +113575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b86cca4-50af-44fa-a142-7fa43c1be1b9", + "id": "f6ed038e-2635-4fa9-96df-0220c268d660", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113674,7 +113674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6a186ba-e329-4e50-af1e-61544426b613", + "id": "61538d7e-34eb-4127-a764-bace9698432c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113773,7 +113773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c5ec8aa-145c-407f-9325-626d6078d0eb", + "id": "4c4e300c-f1a8-4284-8481-a7cd76c69729", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113872,7 +113872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "876d0574-f8af-42ba-8d4e-7e2eb3f87cd7", + "id": "3174e3f2-aab7-4f5d-8a10-b1cebd0c516b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113977,7 +113977,7 @@ } }, { - "id": "9cbe42ca-433a-4f3d-a51a-f26f6ebe83cf", + "id": "35998b99-19e7-4013-9a33-bd47849b0c10", "name": "Notification of Requested Access Request Recommendations", "request": { "name": "Notification of Requested Access Request Recommendations", @@ -114029,7 +114029,7 @@ }, "response": [ { - "id": "32d282dc-f164-4fea-b57f-14fb21a26892", + "id": "1faaa032-9c30-48d1-a41e-8bd09e2aee60", "name": "Notification successfully acknowledged.", "originalRequest": { "url": { @@ -114095,7 +114095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbda8a5d-0b0c-4e09-a4e7-b9b37f2db2a1", + "id": "2561b737-1c02-44f3-849b-6828363c1599", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114161,7 +114161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3163da0-bb13-4eea-bbf9-82a6e960cd2f", + "id": "33f558b7-90fe-41dc-9a0c-45d2c8a53b8c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114227,7 +114227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776505d9-7af6-4bcd-81f9-50a5a3ba12d5", + "id": "1dfae0a5-06ef-4c96-88fc-da32a2fc35f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114293,7 +114293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d8d4a57-0992-4845-9c4e-992bbee07244", + "id": "3db4d717-dd80-421c-9507-0e205cd9f348", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114359,7 +114359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49c9536d-03de-4041-acbc-a9facb18491c", + "id": "134acc21-9152-49d2-93dc-ffd926b57b6b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114431,7 +114431,7 @@ } }, { - "id": "a1db0137-e9cc-408a-969c-be146efb4c56", + "id": "8aa1a46c-ad18-44ef-abbf-c357daf43574", "name": "List of Requested Access Request Recommendations", "request": { "name": "List of Requested Access Request Recommendations", @@ -114491,7 +114491,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -114516,7 +114516,7 @@ }, "response": [ { - "id": "ba12b94a-9fa5-40dd-bc61-ca8d91d3af7b", + "id": "087b603f-cee9-4051-82b3-1526f6e878e8", "name": "Returns the list of requested access request recommendations.", "originalRequest": { "url": { @@ -114571,7 +114571,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -114615,7 +114615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d92d3a8-58bb-4540-96a4-001ea62f0408", + "id": "7645078f-f4e4-47bd-b658-e7da1a922e3e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114670,7 +114670,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -114714,7 +114714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d13f8050-f14b-4e94-b54f-b76fb42ff835", + "id": "658205ef-ae7a-4b6a-a0a9-b75858f878ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114769,7 +114769,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -114813,7 +114813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af70f9b8-7d88-420f-af88-b925875dc603", + "id": "80161563-869f-4f76-95e6-437d9b356e1d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114868,7 +114868,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -114912,7 +114912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "899ae465-ade4-427b-a385-e1784ca4d09e", + "id": "75a90786-b445-4a75-a359-7ecee224fdab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114967,7 +114967,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -115011,7 +115011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "373d03e9-2091-4159-b42d-2f3f59ebf088", + "id": "5d7ecc63-1657-4588-a793-1b5717e424dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115066,7 +115066,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -115116,7 +115116,7 @@ } }, { - "id": "94126054-540f-4155-813b-376c5971eec4", + "id": "831d219b-a6ad-4457-b7c5-558a47242fdd", "name": "Notification of Viewed Access Request Recommendations", "request": { "name": "Notification of Viewed Access Request Recommendations", @@ -115168,7 +115168,7 @@ }, "response": [ { - "id": "82434b0c-3999-49bb-b0a6-79ef9de18fdc", + "id": "7f630a27-e36e-44fd-8615-f08d893386ae", "name": "Recommendation successfully stored as viewed.", "originalRequest": { "url": { @@ -115234,7 +115234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5273a24-7db1-494e-a89e-a8497738aa5a", + "id": "0b9e63e0-ebed-463d-a80b-2624224b62f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115300,7 +115300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db41dea8-ee85-4765-9fbe-1af0f00a7180", + "id": "08f52307-b169-4382-a6ee-e9eb6ad9c186", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115366,7 +115366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da3dbbc7-cb79-4cf5-9690-505698154e2f", + "id": "cbd11530-9486-4815-8f55-25e8de1f0f53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115432,7 +115432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e605609-ea87-47ca-a2a5-bd42d2e195dd", + "id": "fcc27483-ec22-48c5-b16b-c527700d1256", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115498,7 +115498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aa1abcd-ba5c-405f-b87f-08374dfe11ab", + "id": "637cf75c-9444-40b4-af06-dc46b06847e5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115570,7 +115570,7 @@ } }, { - "id": "a931e48c-2cfe-4663-969d-c22e3d361a51", + "id": "bcb37ffd-8a6a-4b91-a3b7-d052d4978f63", "name": "List of Viewed Access Request Recommendations", "request": { "name": "List of Viewed Access Request Recommendations", @@ -115630,7 +115630,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -115655,7 +115655,7 @@ }, "response": [ { - "id": "a27f96bd-eab2-4340-8df6-9167a43a13b0", + "id": "d3056c10-e84c-4d4d-8979-9064d935ce42", "name": "Returns list of viewed access request recommendations.", "originalRequest": { "url": { @@ -115710,7 +115710,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -115754,7 +115754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c93e85d-61bd-4322-86a0-a057693a4184", + "id": "c47ca158-546c-4c56-b8d5-0920084d718b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115809,7 +115809,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -115853,7 +115853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cf686c7-33e1-4631-ba46-e980b7ef5449", + "id": "1bcb130b-ea7d-4ca2-924c-42e0a8fadccd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115908,7 +115908,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -115952,7 +115952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8781fb8-9ae8-4438-bbef-b03d25c4b612", + "id": "35733eab-50d1-471e-aa54-af2f3e0a2e85", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116007,7 +116007,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -116051,7 +116051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fdb7acc-1533-47a0-aaec-dcd3b73786e8", + "id": "a4f6f94f-78bd-4854-8936-fff67c6f8200", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116106,7 +116106,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -116150,7 +116150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bb3bbfc-417f-4b02-8772-82c624e16257", + "id": "91bcba1a-27b0-4301-9a80-2f45815bc686", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116205,7 +116205,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], "variable": [] @@ -116255,7 +116255,7 @@ } }, { - "id": "fddb4e3b-94ab-4554-8918-c6460bb0f3f4", + "id": "a9150264-2eb8-4964-8b6e-04c812f314b8", "name": "Notification of Viewed Access Request Recommendations in Bulk", "request": { "name": "Notification of Viewed Access Request Recommendations in Bulk", @@ -116308,7 +116308,7 @@ }, "response": [ { - "id": "f18234ff-6b4e-4aa2-9e9f-6017ea6fd1fb", + "id": "97cc6f3f-680f-4b13-bd7c-8b66289c6174", "name": "Recommendations successfully stored as viewed.", "originalRequest": { "url": { @@ -116375,7 +116375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b021df3-38e0-4157-8530-9b9684a29511", + "id": "83b85fcc-762d-435b-841b-8f06c058f91a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116442,7 +116442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "971e7c6a-dff5-4c91-9120-0fe449cb90b8", + "id": "79b9aad6-0a3c-4568-9f88-475fc5f194da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116509,7 +116509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b92249c-e43f-4ef5-929f-1c3e91ff2b54", + "id": "014414e4-875c-4a54-bacb-fe9c35cd2bea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116576,7 +116576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a4b56c7-3ba7-4131-88a5-18aa7c2e993e", + "id": "46eec876-6d58-4e08-92bf-f99f5a7f5a96", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116643,7 +116643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "132bd147-3bf7-4e93-92a6-298038c19a6f", + "id": "33dc08ab-f346-44fe-bf70-97a222861812", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116722,7 +116722,7 @@ "description": "", "item": [ { - "id": "bf0a1398-008d-44c9-b77a-52e89dbf3f08", + "id": "91633b7f-81d0-4efc-8a1c-0072aaccd624", "name": "Get a paginated list of common access", "request": { "name": "Get a paginated list of common access", @@ -116806,7 +116806,7 @@ }, "response": [ { - "id": "ac71da93-2a68-4b41-993e-8d0201b822c1", + "id": "1204ca0e-0528-4632-b4f4-c7ebc9d0133c", "name": "Succeeded. Returns a list of common access for a customer.", "originalRequest": { "url": { @@ -116899,12 +116899,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"cillum ut mollit in\",\n \"type\": \"ROLE\",\n \"name\": \"qui aute\",\n \"description\": \"adipisicing nulla pariatur laboris ea\",\n \"ownerName\": \"aliqu\",\n \"ownerId\": \"\"\n },\n \"status\": \"do elit proident sit\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"1987-08-01T16:55:22.835Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"2020-04-04T16:04:29.213Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"dolor in laboris\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"eu \",\n \"description\": \"velit est \",\n \"ownerName\": \"veniam exercitation fugiat aute\",\n \"ownerId\": \"anim sunt eu ut Lorem\"\n },\n \"status\": \"ut velit Lorem aute\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"1978-07-26T02:22:10.846Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"2020-01-09T22:19:58.658Z\",\n \"createdByUser\": false\n }\n]", + "body": "[\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"nisi proident velit\",\n \"type\": \"ROLE\",\n \"name\": \"pariatur do\",\n \"description\": \"do fugiat pariatur\",\n \"ownerName\": \"Duis occaecat elit\",\n \"ownerId\": \"proident magna sed nisi consectet\"\n },\n \"status\": \"dolore veniam\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2005-04-22T18:02:20.922Z\",\n \"reviewedByUser\": true,\n \"lastReviewed\": \"2015-07-17T18:39:33.606Z\",\n \"createdByUser\": false\n },\n {\n \"id\": \"555ab47a-0d32-4813-906f-adf3567de6a4\",\n \"access\": {\n \"id\": \"dolore fugiat\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"ullamco\",\n \"description\": \"occaecat dolor magn\",\n \"ownerName\": \"irure in sed sint\",\n \"ownerId\": \"aliquip reprehenderit non et irure\"\n },\n \"status\": \"non minim labore ipsum\",\n \"commonAccessType\": \"UNSET\",\n \"lastUpdated\": \"2019-05-29T06:21:31.959Z\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"1945-02-10T16:28:33.434Z\",\n \"createdByUser\": false\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5977e50-1cae-4f74-a510-fb220830d526", + "id": "fb28ed14-ae0b-4a44-9cc9-9fdc21c69c61", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117002,7 +117002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf3fb902-98a4-4075-bc4c-1b28aa95f612", + "id": "5a5983ac-50c1-4664-82f2-0d50a8327b60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117100,7 +117100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdde3ca3-9db0-47ee-827b-6d70e224e1a5", + "id": "39df88d4-4074-43ed-8a45-52110ffe130f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117198,7 +117198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a17fc3dc-cb06-410c-ba29-1622256a3e90", + "id": "ac21c807-8519-486f-80e6-c88ad1af06a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117302,7 +117302,7 @@ } }, { - "id": "222f6c59-5078-443b-ac0d-d98e3c6513d0", + "id": "d5fc4625-9a93-4d8e-bb19-68617c16880f", "name": "Create common access items", "request": { "name": "Create common access items", @@ -117342,7 +117342,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117353,7 +117353,7 @@ }, "response": [ { - "id": "3e352297-8742-4765-a8a2-66c4c6c373bd", + "id": "808feed9-ccd1-4d85-a859-e36e7597b916", "name": "Returns details of the common access classification request.", "originalRequest": { "url": { @@ -117396,7 +117396,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117413,12 +117413,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"aliquip mollit\",\n \"access\": {\n \"id\": \"minim\",\n \"type\": \"ROLE\",\n \"name\": \"est do elit nulla\",\n \"description\": \"ullamco\",\n \"ownerName\": \"in\",\n \"ownerId\": \"ipsum aliqua aute occaecat\"\n },\n \"status\": \"DENIED\",\n \"lastUpdated\": \"enim Ut eiusmod\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"quis nulla officia dolor\",\n \"createdByUser\": \"sint eiusmod est do pariatur\"\n}", + "body": "{\n \"id\": \"aute reprehenderit ad Ut\",\n \"access\": {\n \"id\": \"ea consequat\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"qui pariatur adipisicing fugiat dolor\",\n \"description\": \"amet aliquip nulla\",\n \"ownerName\": \"irure fugiat reprehenderit eu ut\",\n \"ownerId\": \"amet\"\n },\n \"status\": \"CONFIRMED\",\n \"lastUpdated\": \"sit ex\",\n \"reviewedByUser\": false,\n \"lastReviewed\": \"sint sunt ex fugiat\",\n \"createdByUser\": \"laborum dolor cill\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "309930f9-8284-4d4e-928e-fa650ae92296", + "id": "48ffbab9-b8e2-494f-9772-b125a605bd08", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117461,7 +117461,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117483,7 +117483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b33a53a-58be-4089-94b0-fa4860344fb2", + "id": "cc3f7f2c-9243-4ec1-870e-320ef3c69a00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117526,7 +117526,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117548,7 +117548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76b8f643-3dcd-4ad2-93ee-01e547ca3a8b", + "id": "ce802c8a-3632-4ee8-b83a-89e476169aad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -117591,7 +117591,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117613,7 +117613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47310cc3-8d4b-44d4-8d67-28b9f7058034", + "id": "40e1b070-4276-4944-91c8-462d5f517649", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -117656,7 +117656,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117678,7 +117678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70cd4e0c-6d5c-4a96-83ca-dbaffb6e71ff", + "id": "a4726b2b-c865-4b0b-bead-d0e41bd93aff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -117721,7 +117721,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"access\": {\n \"id\": \"cillum Duis ad\",\n \"type\": \"ACCESS_PROFILE\",\n \"name\": \"deserunt minim\",\n \"description\": \"enim elit nostrud\",\n \"ownerName\": \"sunt culpa qui quis\",\n \"ownerId\": \"culpa commodo in cillum\"\n },\n \"status\": \"DENIED\"\n}", + "raw": "{\n \"access\": {\n \"id\": \"proident veniam nostrud\",\n \"type\": \"ROLE\",\n \"name\": \"ad reprehenderit ex magna\",\n \"description\": \"ipsum irure velit\",\n \"ownerName\": \"qui eiusmod exercitation in eu\",\n \"ownerId\": \"exercitation occaecat dolor\"\n },\n \"status\": \"DENIED\"\n}", "options": { "raw": { "headerFamily": "json", @@ -117749,7 +117749,7 @@ } }, { - "id": "e3eeb28c-736b-40ee-90bc-426bf6849c48", + "id": "703715bf-0ea6-48e3-b578-eec80ce8743c", "name": "Bulk update common access status", "request": { "name": "Bulk update common access status", @@ -117790,7 +117790,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -117801,7 +117801,7 @@ }, "response": [ { - "id": "a89de310-0b58-4b43-9e54-113dc8da33d9", + "id": "0055391a-27be-4e6c-b4cc-efc554e24c7f", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -117845,7 +117845,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -117867,7 +117867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f835e4d5-3f49-4d7a-af73-eae7f0b02f3b", + "id": "a9647119-ad4a-42bd-acc7-0d71e045132d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -117911,7 +117911,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -117933,7 +117933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ce08ec5-bb6c-44ec-97ed-c47c41fa4636", + "id": "4b3a160e-6db2-4d79-a60d-50040779e06c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -117977,7 +117977,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -117999,7 +117999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "304985ae-46f9-46a2-a462-9af6e3452915", + "id": "7ef28ef5-3af8-488d-9de1-3569a9ede3a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118043,7 +118043,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118065,7 +118065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d08e2f7-5901-45a9-a4ae-7343ccf4811b", + "id": "4d8c8302-dd3b-4ae4-ad05-e031197f344c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118109,7 +118109,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118131,7 +118131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2094f488-3678-4aef-83f9-78fe635138c5", + "id": "c7bbd608-6954-4fdb-95bd-1e152b0afbb7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118175,7 +118175,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:8f65c7a4-66ca-0783-3862-00ac23945292\",\n \"urn:uuid:528764e9-d4b6-41fd-e502-b0afd0a8fefa\"\n ],\n \"deniedIds\": [\n \"urn:uuid:ef9b8326-d122-9a94-5712-6f364f6052f5\",\n \"2c6607e7-df96-f2c0-55a4-5bb4833b4991\"\n ]\n },\n {\n \"confirmedIds\": [\n \"urn:uuid:04a65643-fc8e-cb01-09c5-20fe20f2f62f\",\n \"urn:uuid:af1ed547-51bf-8e8b-c711-01942ed9946c\"\n ],\n \"deniedIds\": [\n \"urn:uuid:35e0a33d-32a7-d91a-b467-44ab09188c65\",\n \"urn:uuid:2a2e5f8d-2195-1ce7-4ad3-529faceea12b\"\n ]\n }\n]", + "raw": "[\n {\n \"confirmedIds\": [\n \"urn:uuid:51bd0929-81c7-cfa0-d9a8-a06f32de7724\",\n \"urn:uuid:d48d8a31-1319-e098-20b8-ec70d7be89cb\"\n ],\n \"deniedIds\": [\n \"urn:uuid:82c3912e-eed0-d189-53ea-13dfc8cf8140\",\n \"urn:uuid:2bb12da9-b584-ae2c-d344-26e4e07cfdae\"\n ]\n },\n {\n \"confirmedIds\": [\n \"59e5038b-1a22-a864-59b5-eadcfd68dec6\",\n \"urn:uuid:68bdbb1e-b25e-41fa-899c-1f37c9259459\"\n ],\n \"deniedIds\": [\n \"259297a1-20c4-ed8e-e114-a50f9ea5d347\",\n \"c4f24b88-03e0-7f8e-f390-a4898169fd49\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -118214,7 +118214,7 @@ "description": "", "item": [ { - "id": "0f321915-f989-4009-ac39-35ab35643371", + "id": "e6c64e58-d928-4b90-bc57-0d60275eec00", "name": "IAI Identity Outliers Summary", "request": { "name": "IAI Identity Outliers Summary", @@ -118255,7 +118255,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118298,7 +118298,7 @@ }, "response": [ { - "id": "196bd787-327c-484b-a8a2-e2bdc3b8e370", + "id": "7f89bafe-7807-4455-8072-2c835ad8ee8e", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -118334,7 +118334,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118397,7 +118397,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "71107131" + "value": "-48612490" } ], "body": "[\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n },\n {\n \"type\": \"LOW_SIMILARITY\",\n \"snapshotDate\": \"2021-05-01T18:40:35.772Z\",\n \"totalOutliers\": 50,\n \"totalIdentities\": 5000,\n \"totalIgnored\": 0\n }\n]", @@ -118405,7 +118405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a14822b6-cd1b-4eaa-9ffd-3d895650d9ea", + "id": "d337019c-e6bf-4ae5-986f-0cda1b360a40", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -118441,7 +118441,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118503,7 +118503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "096e33c5-d3b1-4131-8fb9-cacf2905edfd", + "id": "20a6bac2-3923-4705-a842-2940a3da2b47", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -118539,7 +118539,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118601,7 +118601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd02445-6d0d-4d42-bdeb-cd407f8e4676", + "id": "a6723251-d40c-4440-acb2-c435c4fd6266", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -118637,7 +118637,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118699,7 +118699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4a51d5a-17ff-482b-82a1-f5a25c6c102a", + "id": "e71ae712-5ff2-4b1e-813d-f3a7bd83aca6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -118735,7 +118735,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118797,7 +118797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "149d6403-7689-4274-a08b-33e645ad6c34", + "id": "62a7b4df-4cd9-471d-af02-f343fe0259de", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -118833,7 +118833,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118895,7 +118895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0382e752-6016-41f4-82e9-cd3f04b66a2e", + "id": "f32546ac-0cb4-4ea8-a8df-cd8792ae9e4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -118931,7 +118931,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" }, { "disabled": true, @@ -118999,7 +118999,7 @@ } }, { - "id": "8f6c06d4-0ba1-4227-8fdd-1e073b58a3b0", + "id": "2679a037-d979-4ba4-8841-bf8007465303", "name": "IAI Identity Outliers Latest Summary", "request": { "name": "IAI Identity Outliers Latest Summary", @@ -119023,7 +119023,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119048,7 +119048,7 @@ }, "response": [ { - "id": "6a2e0650-ca38-4216-aa74-494e20435489", + "id": "27b2d8fc-758a-452e-be7f-2176e30172cb", "name": "Succeeded. Returns list of objects. Each object is a summary to give high level statistics/counts of outliers", "originalRequest": { "url": { @@ -119067,7 +119067,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119111,7 +119111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d35acff8-7b92-4d0b-8c27-3425e960ed1f", + "id": "d5b60257-cfce-4019-a5d8-c0ba1c9dc4d9", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -119130,7 +119130,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119174,7 +119174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d8732ad-a0dd-4830-9b45-c5e23573e5a3", + "id": "a8a4cf3c-3c03-4912-944d-dd52ebcee360", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119193,7 +119193,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119237,7 +119237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49e963af-df85-473e-bae7-c2b6027ab213", + "id": "ee7cf35f-2ab0-4959-a54e-f739e4a44c21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119256,7 +119256,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119300,7 +119300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f8a334f-f6c4-4f10-902f-24ed4d57db16", + "id": "41e2ac19-9e57-4bdc-831f-d2c3deeafad1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119319,7 +119319,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119363,7 +119363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f3dbd71-0493-4da8-8d70-010038e04f6e", + "id": "eae402ae-4e2c-471a-a637-08d4d0f977e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -119382,7 +119382,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119426,7 +119426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b13d66ec-bed3-4a0b-8169-1f2f69f9a9e7", + "id": "868b504d-1d44-484e-a784-f0759e389a63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -119445,7 +119445,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -119495,7 +119495,7 @@ } }, { - "id": "217fc1e5-f975-460a-95a0-a9516b042028", + "id": "b70ad21a-4892-493d-a636-ac95c8431ca9", "name": "IAI Get Identity Outliers", "request": { "name": "IAI Get Identity Outliers", @@ -119588,7 +119588,7 @@ }, "response": [ { - "id": "0eb69a5f-7a4e-41f5-ba64-c36292a0956b", + "id": "09c6946c-5b27-42c9-abaa-2f0aa8ed6bf8", "name": "Succeeded. Returns list of objects. Each object contains information about outliers", "originalRequest": { "url": { @@ -119696,7 +119696,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "71107131" + "value": "-48612490" } ], "body": "[\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n },\n {\n \"id\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"identityId\": \"5be33d3e-c54d-4ed7-af73-2380543e8283\",\n \"type\": \"LOW_SIMILARITY\",\n \"firstDetectionDate\": \"2021-05-01T18:40:35.772Z\",\n \"latestDetectionDate\": \"2021-05-03T18:40:35.772Z\",\n \"ignored\": false,\n \"attributes\": {\n \"displayName\": \"John Smith\",\n \"jobTitle\": \"Software Engineer\",\n \"department\": \"Engineering\"\n },\n \"score\": 0.92,\n \"unignoreType\": \"MANUAL\",\n \"unignoreDate\": \"2021-06-01T18:40:35.772Z\",\n \"ignoreDate\": \"2021-06-01T18:40:35.772Z\"\n }\n]", @@ -119704,7 +119704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e695214c-1cdd-4c2c-ba74-b15ef50372d0", + "id": "cd3ae985-dd95-4340-95fc-6dfb1f703e5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119811,7 +119811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e42dd85-ffbf-4989-853e-7a1fb5edd31b", + "id": "8d63f10c-f44d-4f8f-a82d-81f3e4014088", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119918,7 +119918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "735376be-d0ef-49cd-b5f8-a5dec87fb30a", + "id": "cc48faf6-195e-49d3-9b18-a83eac6adc58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120025,7 +120025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3f10f08-6e4f-43a1-a479-2413e7cb25f2", + "id": "1f1652e9-6160-45f8-91c2-f710da4703d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120132,7 +120132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88026436-4b66-43a0-a8ab-e95c44c7b9cc", + "id": "872f4ff4-c3c7-42ba-8a96-29141723f662", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120245,7 +120245,7 @@ } }, { - "id": "8755ada8-596a-4742-a8c2-5573223e70e0", + "id": "1ebaad76-7297-4e00-b229-d056960cf7b2", "name": "Get identity outlier's contibuting features", "request": { "name": "Get identity outlier's contibuting features", @@ -120342,7 +120342,7 @@ }, "response": [ { - "id": "da8fe913-561a-4568-826f-61bd612901ce", + "id": "d506b136-9297-4577-8b46-662ac4adad44", "name": "Succeeded. Returns list of objects. Each object contains a feature and metadata about that feature", "originalRequest": { "url": { @@ -120443,7 +120443,7 @@ "type": "text/plain" }, "key": "X-Total-Count", - "value": "71107131" + "value": "-48612490" }, { "disabled": true, @@ -120452,15 +120452,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], - "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.5622152049585809,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n },\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.650949650491836,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.08774323991699129,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n },\n {\n \"id\": \"66e38828-5017-47af-92ff-9844871352c5\",\n \"name\": \"entitlement_count\",\n \"valueType\": \"INTEGER\",\n \"value\": 0.09963360279081002,\n \"importance\": -0.15,\n \"displayName\": \"Number of entitlements\",\n \"description\": \"The total number of entitlements belonging to an identity\",\n \"translationMessages\": {\n \"displayName\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n },\n \"description\": {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f90a5ea8-d4de-428d-98a5-9076542e86b0", + "id": "bb5374ca-c378-46b4-991b-3d1a2f07e616", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120560,7 +120560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e202340-a5d1-4e01-abf1-700b24d0ef03", + "id": "d815d9c0-5a20-4bdf-8b49-be5cb0648dae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120660,7 +120660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6386e018-2c33-43cf-9fae-ae3ed689a746", + "id": "a21aa938-540a-4549-87bc-91cb458e1521", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120760,7 +120760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4920165d-4ce3-48f3-a0fb-d6fb0fc68bd6", + "id": "e1643ba0-f161-4c7d-93b2-c73e476b56b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120860,7 +120860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b61ea884-9332-4300-a83f-f7515731b7ea", + "id": "33cc5660-69e7-4ae0-b5a3-909d239413bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120960,7 +120960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee39a3d7-2b7b-4dda-94c4-746069eb8ad6", + "id": "517fe304-8a54-4270-b3f8-994685cf0683", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121066,7 +121066,7 @@ } }, { - "id": "0d9a0c1d-ae55-4db4-b775-9af0d9b8a6ab", + "id": "86c4d7ed-a77f-4830-b765-8f9865db4937", "name": "Gets a list of access items associated with each identity outlier contributing feature", "request": { "name": "Gets a list of access items associated with each identity outlier contributing feature", @@ -121175,7 +121175,7 @@ }, "response": [ { - "id": "7799befd-e157-4b45-906d-847475d2ffb1", + "id": "0102f3e4-6786-41e6-80a8-f31e7e27afbd", "name": "The list of access items.", "originalRequest": { "url": { @@ -121277,7 +121277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7038df47-ffce-4ed3-be23-e69c6e45e76f", + "id": "2f0d0b35-e666-442f-803e-e7c77d4a7d6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121379,7 +121379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dbf5d27-ed4c-41a6-b950-4d8575b8dd64", + "id": "779f6f07-2586-4b28-8c13-cb8ab0e50919", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121481,7 +121481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3265c182-da85-42e1-902c-a2a4fde21b80", + "id": "6d47e238-8843-411f-9d36-c1a528de3a8a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121583,7 +121583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12a74ccc-79a4-4c80-a8c4-3edce5a44dea", + "id": "4d02c823-c55a-4979-b6a4-3633fe2b761a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121685,7 +121685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd9eb729-4e3a-47dd-bdd8-5584522ad3c5", + "id": "4b1a3d02-5899-4e22-a097-ebd0fd0582c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121787,7 +121787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03d8a796-bb3d-4b76-b6df-c3a83e749153", + "id": "a695a094-ca83-45bb-9fab-2d6b2f938cd4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121895,7 +121895,7 @@ } }, { - "id": "413dc7ce-a259-4ecf-a8ea-2156a1586bd8", + "id": "5aab5847-8d10-40ee-abad-c4b124831259", "name": "IAI Identity Outliers Ignore", "request": { "name": "IAI Identity Outliers Ignore", @@ -121947,7 +121947,7 @@ }, "response": [ { - "id": "8906daa1-3f23-465b-91fd-4c0fcb3e2018", + "id": "2bd1c9db-0d73-456c-80b4-43a202fce107", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -122003,7 +122003,7 @@ "_postman_previewlanguage": "text" }, { - "id": "42eb5bde-8966-4faf-9751-94899fced7cd", + "id": "332679a0-7751-479b-867c-d4bb6b85a552", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122069,7 +122069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "183a726c-e59b-43db-a96d-28115bc30d41", + "id": "635093be-dd56-4107-80c6-b336ca0baaad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122135,7 +122135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49dbe922-f97a-4bbf-93ef-760861c32c59", + "id": "52459a15-0156-4946-b43a-814a91c1095e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122201,7 +122201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7f22e99-788e-4796-ae0d-832ff509cd6d", + "id": "336941bc-892e-49e9-9de5-71764b406f7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122267,7 +122267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309e0cf1-1603-4ab6-a99b-e716dfbdbeb5", + "id": "ee2ddad1-7101-43d0-94c2-915591647120", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122339,7 +122339,7 @@ } }, { - "id": "7636b2d4-1ab8-47e3-8e09-d51844757857", + "id": "1609ea96-3e8e-4c83-a08d-d14094047101", "name": "IAI Identity Outliers Unignore", "request": { "name": "IAI Identity Outliers Unignore", @@ -122391,7 +122391,7 @@ }, "response": [ { - "id": "f7d76d7e-3c81-4338-97c3-492cc3ac0dce", + "id": "c7a4b6aa-9f51-4435-94d0-481893bf6e96", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -122447,7 +122447,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8622ee45-d353-47f8-9270-9af8a925da26", + "id": "99125754-4d87-4f6b-a9d9-3da8b624e90b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122513,7 +122513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f53c1ed-a71c-43f3-84c7-1336ff0328be", + "id": "7c018ad8-73ea-4e09-9e89-3a4dca974a1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122579,7 +122579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c366a375-c990-4f77-90c5-77998180d380", + "id": "071db057-a3ae-4481-bb7d-a6fdd45821e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -122645,7 +122645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f2143af-60fa-4ce1-9749-e7d242d1b9e3", + "id": "df450fe4-c0d0-4a01-bdef-79cb57b5bbde", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -122711,7 +122711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5817d3da-592a-4391-9a65-f6bbaeb7f9a0", + "id": "007a3e85-7bb0-4f06-b1e3-71adf209567e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -122783,7 +122783,7 @@ } }, { - "id": "2b2fdb4d-98c9-4b39-b090-92a2264d408f", + "id": "f0b2c1f5-b82f-4fd9-9a6d-4cf11743aeb5", "name": "IAI Identity Outliers Export", "request": { "name": "IAI Identity Outliers Export", @@ -122807,7 +122807,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -122832,7 +122832,7 @@ }, "response": [ { - "id": "bc5dab0a-abe0-4d9e-8b76-67c4f52d8972", + "id": "5b4d3258-6e8b-41be-adea-e22432d3e942", "name": "Succeeded. Returns zip of 2 CSVs to download. 1 CSV for ignored outliers and 1 for non-ignored outliers", "originalRequest": { "url": { @@ -122851,7 +122851,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -122890,12 +122890,12 @@ "value": "application/zip" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "9977e978-2858-4da4-9d27-9c80adf69e2d", + "id": "819cf504-117a-46c4-b0c3-4637ea6d6253", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -122914,7 +122914,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -122958,7 +122958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a4b31f6-4aa0-4858-90e7-dd61c46e4835", + "id": "db290d7b-7207-4367-9cd9-79f63fc27aab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -122977,7 +122977,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -123021,7 +123021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1268349-c499-4f3c-9ee0-9956d2353f6f", + "id": "690817ab-1989-42a5-99f3-16a351e1a157", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123040,7 +123040,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -123084,7 +123084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f494816e-3571-422c-8d3a-24aa8f21e8bc", + "id": "742cd146-34df-4488-8064-bd9fcdd7d3b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123103,7 +123103,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -123147,7 +123147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c14bffd-3ff8-4736-8649-2d34340e5767", + "id": "e4bff940-1233-4835-bd39-088177b92f1e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123166,7 +123166,7 @@ "type": "text/plain" }, "key": "type", - "value": "LOW_SIMILARITY" + "value": "STRUCTURAL" } ], "variable": [] @@ -123216,7 +123216,7 @@ } }, { - "id": "74c16ec7-2dad-4fd3-8b89-61954a2f59f8", + "id": "16762497-891b-4460-a87c-903090d18956", "name": "Get identity outlier contibuting feature summary", "request": { "name": "Get identity outlier contibuting feature summary", @@ -123266,7 +123266,7 @@ }, "response": [ { - "id": "7a2ebce5-4017-4b16-ab4d-de367531d103", + "id": "2ecad134-5f2d-48ab-b205-6d441f248908", "name": "Succeeded. Returns selected contributing feature summary for an outlier", "originalRequest": { "url": { @@ -123320,15 +123320,15 @@ "type": "text/plain" }, "key": "accept-language", - "value": "sint amet" + "value": "dolore ut labore dolore" } ], - "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"nisi Excepteur ut\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"ut eiusmod\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", + "body": "{\n \"contributingFeatureName\": \"Rare Access\",\n \"identityOutlierDisplayName\": \"John Smith\",\n \"outlierFeatureDisplayValues\": [\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"nisi ad ullamco non\",\n \"valueType\": \"INTEGER\"\n },\n {\n \"displayName\": \"Aliza Chris\",\n \"value\": \"aliqua\",\n \"valueType\": \"INTEGER\"\n }\n ],\n \"featureDefinition\": \"Identity total number of entitlements\",\n \"featureExplanation\": \"An identity that has too much rare access has a higher change of becoming a security threat due to the unique access they possess\",\n \"peerDisplayName\": \"Mary Jane\",\n \"peerIdentityId\": \"9f9d5d53ad0e48fba7352f6da9f1b8gbg\",\n \"accessItemReference\": {\n \"displayName\": \"All Rare Entitlements\",\n \"searchPlaceholder\": \"Search by name or description\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "53ae8b3e-1473-4983-8eef-de286d709c2b", + "id": "4326974f-f27d-4a12-9f8f-c953607fc8ef", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123381,7 +123381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a3ffc02-2c3f-451d-9d6d-3430e1b0998b", + "id": "3b933a59-0a8b-4420-8900-757f5a52c4f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123434,7 +123434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ad822b-3ff0-4bb6-826d-8b130a1b4f4d", + "id": "37b344bd-eded-47b2-83ac-5f8b59ea6163", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -123487,7 +123487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbe692e9-cbed-404d-a13c-29fbc015762f", + "id": "5a5ff011-cf7e-4bbd-9976-bd5bd366c3bf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -123540,7 +123540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbbbf286-971b-431f-9086-95adfdf51937", + "id": "6fd3aac9-fa0e-4e41-9738-0eefecd63d7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -123593,7 +123593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9c35a49-a889-47c6-8d07-3f556d399e60", + "id": "772e89b5-c03c-407f-8766-f56fb45a9501", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -123658,7 +123658,7 @@ "description": "", "item": [ { - "id": "ebdcdcc8-3d61-4c1b-8684-13d6b53213e6", + "id": "d2704b76-f853-48b5-aac6-b7da38432c41", "name": "Identity Outliers List", "request": { "name": "Identity Outliers List", @@ -123737,7 +123737,7 @@ }, "response": [ { - "id": "06d438a5-bd0e-4d48-996b-5a70737f92b1", + "id": "d85ac213-d2be-4a8e-a7c3-43215d49d435", "name": "List of identities that are not included in peer groups.", "originalRequest": { "url": { @@ -123814,12 +123814,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"in ex est\",\n \"type\": \"dolore officia incididunt mollit\",\n \"peer_group_id\": \"ea sin\",\n \"attributes\": {\n \"dolore_d\": {},\n \"ex3\": {},\n \"sintd34\": {}\n }\n },\n {\n \"id\": \"aute sed nisi laboris\",\n \"type\": \"commodo ut\",\n \"peer_group_id\": \"reprehenderit labore dolore sed aliqua\",\n \"attributes\": {\n \"Ut_a58\": {},\n \"in2\": {},\n \"reprehenderit_9f\": {}\n }\n }\n]", + "body": "[\n {\n \"id\": \"ea\",\n \"type\": \"in et esse\",\n \"peer_group_id\": \"aliqua dol\",\n \"attributes\": {\n \"eu6a5\": {}\n }\n },\n {\n \"id\": \"id ea\",\n \"type\": \"et cillum est aliqua eiusmod\",\n \"peer_group_id\": \"sunt Excepteur\",\n \"attributes\": {\n \"velit_ce\": {},\n \"ind\": {},\n \"doa4\": {}\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "113e5464-f920-4957-bbfa-caf1508c84e2", + "id": "4ed8c735-e1be-49db-8328-44dd947fceb9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -123901,7 +123901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcc1a831-bb99-456a-832d-5b4f4340e868", + "id": "d39fdbdc-7e36-4fda-8f5e-79ba75489501", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -123983,7 +123983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9c7a789-d422-49df-8711-758bb25d4e66", + "id": "4b355f7e-b137-4a1f-93eb-a8d0f19c703c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124065,7 +124065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc2d3abb-fd35-4733-8308-75c7dff11d6f", + "id": "211245b5-2eee-4391-bc35-6966da18fb51", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124147,7 +124147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fba9aef4-4700-4430-a0e8-7e17692e707f", + "id": "2f70eb2e-40ea-433b-a4eb-db89a64a4975", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124241,7 +124241,7 @@ "description": "", "item": [ { - "id": "4ecd92d4-a0ef-49d8-b818-7ec9799a257f", + "id": "c9ed6a7d-4e02-4b2a-9412-75e42d9d7634", "name": "Returns a Recommendation Based on Object", "request": { "name": "Returns a Recommendation Based on Object", @@ -124293,7 +124293,7 @@ }, "response": [ { - "id": "daa78887-fd97-4158-a43b-1822596fb528", + "id": "7eb7d84b-90b2-452b-86d4-b1ae530ee02e", "name": "The recommendations for a customer", "originalRequest": { "url": { @@ -124354,12 +124354,12 @@ "value": "application/json" } ], - "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 5224994.622015849,\n \"featureWeightedScores\": {\n \"id__\": 3463430.4682216346,\n \"voluptate_02\": 85757007.51347554,\n \"pariatur1\": -62556316.30587386\n },\n \"threshold\": -81817531.06564318,\n \"identityAttributes\": {\n \"officia_7\": {\n \"value\": \"sint aliquip ea in\"\n },\n \"commodo_c80\": {\n \"value\": \"nisi ullamco dolor\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 98303218.86674765,\n \"featureWeightedScores\": {\n \"Excepteur_0\": -96124559.24589467,\n \"et_14\": -48246908.3832505\n },\n \"threshold\": 80028383.7053442,\n \"identityAttributes\": {\n \"dolore_48a\": {\n \"value\": \"culpa\"\n },\n \"do_82\": {\n \"value\": \"dolore incidid\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", + "body": "{\n \"response\": [\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": 92598664.70157826,\n \"featureWeightedScores\": {\n \"non_da\": -17776093.735979974,\n \"dolor_d94\": 7110093.663498461\n },\n \"threshold\": 2644959.657647878,\n \"identityAttributes\": {\n \"ea7\": {\n \"value\": \"Excepteur consectetur tempor qui in\"\n },\n \"id3c\": {\n \"value\": \"mollit dolore Ut\"\n },\n \"laborec8e\": {\n \"value\": \"i\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n },\n {\n \"request\": {\n \"identityId\": \"2c938083633d259901633d25c68c00fa\",\n \"item\": {\n \"id\": \"2c938083633d259901633d2623ec0375\",\n \"type\": \"ENTITLEMENT\"\n }\n },\n \"recommendation\": \"YES\",\n \"interpretations\": [\n \"75% of identities with the same department have this access. This information had a high impact on the overall score.\",\n \"67% of identities with the same peer group have this access. This information had a low impact on the overall score.\",\n \"42% of identities with the same location have this access. This information had a low impact on the overall score.\"\n ],\n \"translationMessages\": [\n {\n \"key\": \"recommender-api.V2_WEIGHT_FEATURE_PRODUCT_INTERPRETATION_HIGH\",\n \"values\": [\n \"75\",\n \"department\"\n ]\n }\n ],\n \"recommenderCalculations\": {\n \"identityId\": \"2c91808457d8f3ab0157e3e62cb4213c\",\n \"entitlementId\": \"2c91809050db617d0150e0bf3215385e\",\n \"recommendation\": \"YES\",\n \"overallWeightedScore\": -95245700.08989532,\n \"featureWeightedScores\": {\n \"et_12\": 67350086.61041924\n },\n \"threshold\": -13568549.671693116,\n \"identityAttributes\": {\n \"amete7\": {\n \"value\": \"adipisicing dolore incididunt\"\n }\n },\n \"featureValues\": {\n \"feature\": \"department\",\n \"numerator\": 14,\n \"denominator\": 14\n }\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d5b85c7b-6ca7-46d9-a8db-061f7ed96b30", + "id": "3ce82e28-9109-4d53-8269-b4f631d3a75b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124425,7 +124425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac6e6fb-5997-4849-b339-db24e4d6ea50", + "id": "e97906ee-65a4-457b-959b-b33147fb1ac5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124491,7 +124491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e738cbe-b564-4416-b4d0-8b8d24a18a37", + "id": "7e50cb6e-fff5-49a3-bf45-a9704e323da8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124557,7 +124557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "388d2589-71f2-49f8-bfc0-ed5b56bfbf2e", + "id": "0bf7cbce-deea-4530-a221-a6193f9c7f04", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -124623,7 +124623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed0a3ba2-9e59-476c-b56c-324eee95ff88", + "id": "7e607c73-8d20-4835-9b34-b7b2da86dd61", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -124695,7 +124695,7 @@ } }, { - "id": "40ab8e8d-6634-4132-a6dc-7b60e0e3a55c", + "id": "1e4a3c83-b86d-401c-94b5-b18f7934a143", "name": "Get certification recommendation config values", "request": { "name": "Get certification recommendation config values", @@ -124734,7 +124734,7 @@ }, "response": [ { - "id": "3069f432-d26a-4822-a178-b5d2c7e84cd3", + "id": "c67a8f14-27bc-41eb-828a-7ea047afda0f", "name": "Cert recommendation configuration attributes", "originalRequest": { "url": { @@ -124787,7 +124787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b19b4107-f10d-4b16-90e5-79acff138337", + "id": "e41a4cfb-fb27-4314-9da9-1e65c104b724", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -124840,7 +124840,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19f6b785-3c16-4b18-8132-c529f2231b69", + "id": "abc96bfe-049b-4c40-a59d-19832b64a02b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -124893,7 +124893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cbcdf63-398c-4c9a-98fb-b93125c93508", + "id": "a86c6fc4-c202-42d1-9398-2386bd3921c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -124946,7 +124946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3f44508-2f23-4cbf-8d1f-5b9c043b5178", + "id": "97e2b01c-6c74-49a2-ab4b-0df38cd9e4b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125005,7 +125005,7 @@ } }, { - "id": "dd40a1fd-ac43-4a54-8451-d4c28fbbbfb5", + "id": "c8767f9e-dad2-4011-aeb2-7e6ef456b4ac", "name": "Update certification recommendation config values", "request": { "name": "Update certification recommendation config values", @@ -125057,7 +125057,7 @@ }, "response": [ { - "id": "d7b5c0a5-c7a7-4ec5-9411-d85c7e095ee9", + "id": "0dced5e3-3270-48a1-b501-7c2e3e2b1136", "name": "Cert recommendation configuration attributes after update", "originalRequest": { "url": { @@ -125123,7 +125123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bde0f413-95ba-4a33-91d6-0e0613ddb967", + "id": "c4f172e3-5d84-4f1c-80c7-04a87411fdc7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125189,7 +125189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e84e10f8-9bbb-4cee-a51e-42e3c8a12eb0", + "id": "fa4ecfd1-9222-48cf-8e64-1d81c48ac920", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125255,7 +125255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4827340e-3541-4c9b-9647-c7d6353080b4", + "id": "0083aa7d-4182-4f84-b9a0-84181515150e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125321,7 +125321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f61c7056-eb7a-4ec5-aecd-b597dd40ddcf", + "id": "ae9506ab-3ddb-4569-84af-a754b3502ae2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125399,7 +125399,7 @@ "description": "", "item": [ { - "id": "61a47c72-a797-40df-af79-cb5d5654f8ff", + "id": "52e8d2af-d0ce-477d-8a4a-84811f80b0a4", "name": "Create a role mining session", "request": { "name": "Create a role mining session", @@ -125450,7 +125450,7 @@ }, "response": [ { - "id": "3da4bd06-0787-46b6-9652-16f8055713c9", + "id": "cba03b6f-ea76-47e7-8d74-2a03669ddb42", "name": "Submitted a role mining session request", "originalRequest": { "url": { @@ -125515,7 +125515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6d0db08-b55f-434c-98e1-c25da040c8ca", + "id": "07e94cca-b943-488b-a061-7ec37abddc30", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125580,7 +125580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309b6a67-7ce9-4029-87ce-3fd7d424b560", + "id": "698c2ba5-b698-4697-8bef-ca5f6bbf068d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125645,7 +125645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2863d963-e789-451c-9a10-64a0ec68ae0e", + "id": "3a29ff9f-6c26-4eed-aaf9-b5e58bb62560", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125710,7 +125710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aa908d0-8ccd-400e-9928-ec66590ae685", + "id": "9e8f94ea-7a34-44c8-aa01-e4893609a368", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -125775,7 +125775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05811364-0ca7-4112-a667-28b4839f85f0", + "id": "124d0d2f-c879-4bad-8526-952f81cf681e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -125846,7 +125846,7 @@ } }, { - "id": "041dd53a-d5a0-47f2-a5dc-bece35597d56", + "id": "00bc5474-d7ba-41ca-8b55-ed53ec506b1c", "name": "Retrieves all role mining sessions", "request": { "name": "Retrieves all role mining sessions", @@ -125930,7 +125930,7 @@ }, "response": [ { - "id": "8043b5ea-226a-4cdd-859e-cd7347aff62c", + "id": "4672be55-49e5-49f2-a6ac-7a1f8d681170", "name": "Succeeded. Returns all role mining sessions that match the query parameters.", "originalRequest": { "url": { @@ -126028,7 +126028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e589c4-9f78-4d04-8d3a-22cc3ab37ff1", + "id": "647a2646-c274-42a9-85a9-815ba84751e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126126,7 +126126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f247f0f-a0d3-464d-bd59-f9e01d6a08e6", + "id": "8b763e4f-e726-416f-a07f-ce4934300fe8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126224,7 +126224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8597c62e-eae4-48dc-a371-09efe6bebcbf", + "id": "69029e30-60d6-4d1f-b859-4cebd96ad2a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126322,7 +126322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e113963a-c2cc-4d40-97d1-4b9133df88d2", + "id": "55e12a25-da4a-43d4-b86d-5b870fa47c4b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126420,7 +126420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e2d99d4-8391-484a-b46c-ba1126669c12", + "id": "29e2118d-9e65-43e5-9256-15e56bd5b0cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126524,7 +126524,7 @@ } }, { - "id": "4d29739e-1730-435b-a2d0-9daad8a7b0d7", + "id": "139c7203-84f5-473d-b73a-571a9afa41a5", "name": "Patch a role mining session", "request": { "name": "Patch a role mining session", @@ -126587,7 +126587,7 @@ }, "response": [ { - "id": "2cc6a040-9761-4457-a673-a7c7b17b88b9", + "id": "52d8058e-d379-4c81-b8e1-e9d3fc0bad09", "name": "Success", "originalRequest": { "url": { @@ -126653,7 +126653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0ad2bda-9520-4c67-93bb-b89fd83c200d", + "id": "67a4a55e-0441-4685-b2e8-72cd57dafe4d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -126719,7 +126719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "275f465a-bcd2-4f1c-987c-1e800b16e530", + "id": "bbb471fd-827d-4718-9816-1559d0721d2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -126785,7 +126785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92f71910-cfe9-4a83-bf09-1ddb6ec151b4", + "id": "cecd1899-40f8-4217-81c9-7b3cbffe6ea5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -126851,7 +126851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18dbc206-76c9-4adf-bb5c-52ed09ae562c", + "id": "13f9439f-1d17-4e42-bd73-152433dee118", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -126917,7 +126917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fef1d5b-9004-48a8-bf6d-98636299d6e0", + "id": "fc7402e9-8bc1-4ff4-98f6-b1830bc99721", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126983,7 +126983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d841f99-f174-4c70-9cc3-8d07d6f04c89", + "id": "d5044c2d-7da6-4331-a3bf-0477cd52207d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127055,7 +127055,7 @@ } }, { - "id": "61d3c554-9371-4760-85d7-6f700f4236d4", + "id": "66dd452d-63d5-4317-9085-a92c0882f4f4", "name": "Get a role mining session", "request": { "name": "Get a role mining session", @@ -127105,7 +127105,7 @@ }, "response": [ { - "id": "d77b361f-5c80-49a3-9722-df83bd035a45", + "id": "b871e044-72c4-4a5d-9e06-ccdc2d0261f1", "name": "Returns a role mining session", "originalRequest": { "url": { @@ -127158,7 +127158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e00cdd-f573-47de-a62b-ef853775b54b", + "id": "25b9d0bd-6339-4189-9cf0-50a2922f3edb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127211,7 +127211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6950381-3e72-4db2-8648-7c1d72f50385", + "id": "d42a20e4-8cc8-47e7-847f-dc4eb27fec78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127264,7 +127264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd6bd5a3-efcf-4007-a827-e705cdb28302", + "id": "23ed9a9d-168d-4253-ac49-7d7053b19c64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127317,7 +127317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66a7a937-7686-4d18-b469-4a436d396466", + "id": "834f6383-5b0c-4c7c-91de-07aa3915c5f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -127370,7 +127370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66db190d-471c-4bab-b63b-d111ef4159ae", + "id": "5bcacca8-5f23-40df-9c15-7f3064fceeb3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -127423,7 +127423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37c81851-f71a-4a9e-89f7-f0ab499e8747", + "id": "0cea0c30-1058-4797-b56b-a6377960d5b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127482,7 +127482,7 @@ } }, { - "id": "95a9179f-5b71-4eee-90ec-980400c4734c", + "id": "b214ff77-7114-4c4e-9155-a57577d4be07", "name": "Get role mining session status state", "request": { "name": "Get role mining session status state", @@ -127533,7 +127533,7 @@ }, "response": [ { - "id": "758eff7f-d8ab-4496-9602-16cd8f40c273", + "id": "ea484ddd-22b4-45dc-9cbf-959015dabe2a", "name": "Succeeded. Returns session status", "originalRequest": { "url": { @@ -127587,7 +127587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c95c837f-586c-44b6-b37e-48d2f875bf8e", + "id": "20386dc5-4296-46cf-b017-d2e3ee0dba19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -127641,7 +127641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac024fa-95a8-44ea-82cb-aef70cbeb2d7", + "id": "7ac30565-accd-49db-8896-570ec30a41f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -127695,7 +127695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c7a6503-1bd1-4f2c-b4c5-3a04660e90c0", + "id": "123ec510-3ab8-4c96-9687-3e4d6cfb7220", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -127749,7 +127749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07aaae62-f473-45eb-a87a-cd2f06fe1ef7", + "id": "153a4035-7c61-4644-8e8d-43551f9a949b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -127809,7 +127809,7 @@ } }, { - "id": "82939c46-64b2-45fa-89dc-7d1ea260697b", + "id": "55a7b262-87cc-49ed-906b-cd41176dca7a", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -127906,7 +127906,7 @@ }, "response": [ { - "id": "b7f6c313-40a5-4a9b-a54e-e610b8767a98", + "id": "1475af20-d50d-4a08-8f54-eaa25a441f1a", "name": "Succeeded. Returns a list of potential role summaries for a role mining session.", "originalRequest": { "url": { @@ -128001,12 +128001,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2023-08-15T10:27:02.513Z\",\n \"saved\": true,\n \"description\": \"qui aute\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1961-03-04T09:22:14.804Z\",\n \"saved\": true,\n \"description\": \"in id dolor\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2003-05-02T00:43:35.344Z\",\n \"saved\": true,\n \"description\": \"nostrud voluptate anim in\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1989-05-19T14:52:14.831Z\",\n \"saved\": true,\n \"description\": \"consectetur ex est\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "537be7a5-f484-4aa8-b6ea-6f13007b34fe", + "id": "d217f276-463f-46d3-bd70-206e5eb19a18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128106,7 +128106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb065102-63f2-4b53-904f-2332ee695beb", + "id": "c64a2106-4e6a-4ae9-8a75-f886a5302917", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128206,7 +128206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ede989e-950d-4006-98f2-8c68db9fc29c", + "id": "338f859b-4e18-4872-9fd9-8af120abf532", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128306,7 +128306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bb2ec68-bd8e-4cc9-83cd-012a0038a662", + "id": "d5312bb7-f191-4c83-9a43-1ec13e156069", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128406,7 +128406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa7dfa66-a25c-4640-9f78-945e6449c870", + "id": "41366a96-f5d3-4293-9d54-b6f52ac56565", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128512,7 +128512,7 @@ } }, { - "id": "ef158841-4e8a-4dbe-bef9-08abeda5a74a", + "id": "39c26d5a-aa26-4b16-9be3-ee32d86be671", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -128574,7 +128574,7 @@ }, "response": [ { - "id": "3ae5544a-ba67-4a91-8b5f-10b4a9ec67df", + "id": "01214eb6-efea-498e-b38a-391d5057ef42", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -128624,12 +128624,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"dolorb38\": \"consectet\"\n },\n {\n \"ipsumd16\": \"proident occaecat esse\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"Excepteur_96\": \"nostrud reprehenderit commodo in\"\n },\n {\n \"adipisicing_c6\": \"sed\",\n \"Excepteure\": \"irure voluptate\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1960-11-10T07:53:40.662Z\",\n \"modifiedDate\": \"1954-01-11T18:33:20.144Z\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"pariatur8\": \"sint consectetur ipsum\",\n \"proidentfd\": \"amet eni\",\n \"irure7\": \"Ut exercitation cillum laboris\",\n \"anim59\": \"Lorem ex laboris si\"\n },\n {\n \"sit76\": \"tempor eu sunt\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ipsum_17\": \"sed et Lorem ea dolor\"\n },\n {\n \"Lorem__\": \"qui\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1977-02-13T04:47:52.421Z\",\n \"modifiedDate\": \"1966-07-24T12:56:42.439Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ac7ac5fe-33bf-49b7-b5bf-a1a78ed03ce3", + "id": "11a4da5a-7dcd-4e5d-a2ed-b6446e7841cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -128684,7 +128684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64faf024-ce24-4aed-aceb-727c0d3648d3", + "id": "6bbe8cc6-8f5a-4dfb-ab7f-af3c0dd8c26c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -128739,7 +128739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e3521a3-6141-4c74-ba0f-0c008dac3dbb", + "id": "c83674ea-dbfb-4461-b497-6a0ff8ffa503", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -128794,7 +128794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e5f25d6-6bd4-4bdb-9655-7e37f59c7356", + "id": "46d91473-318c-40bf-b571-51f32b25a23b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -128849,7 +128849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702479b1-b187-4645-ada1-33f26649acf8", + "id": "93b6234a-51e6-4ce1-a461-827a46213c3a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -128910,7 +128910,7 @@ } }, { - "id": "ea5c463b-04e0-4f79-999c-2e54cc1f0244", + "id": "482f3ba5-064e-4a45-b571-d83af8265cfc", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -128985,7 +128985,7 @@ }, "response": [ { - "id": "39effe5d-dd9e-4071-8940-35464ceedc88", + "id": "597f2d77-73f5-45d2-85ef-b20cc5fb40d5", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -129053,7 +129053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90374b15-601b-4243-bda8-e6b6c4690efc", + "id": "fb048227-4b01-42b8-8f62-5b5a3088edae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129121,7 +129121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dfcf1fe-f1a6-427c-8c45-6aaabda08179", + "id": "ae73495e-165e-4713-93d8-91171349657d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129189,7 +129189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28684b45-4cb5-4352-a193-b4fa0c4d0019", + "id": "251d7ddc-357c-4b32-b450-0ffda1df0eb9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129257,7 +129257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc46951b-60e7-4087-8e5a-4dfeeef706f7", + "id": "e7a4de35-f08e-4be0-b38d-84dddf9dfb8f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -129325,7 +129325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22e4a2c9-4962-4757-b1d5-6a81d81cb241", + "id": "8c53c10e-d98d-4954-a631-e5ad6ee1e9a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -129393,7 +129393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9751b494-0d09-435b-862e-9295f9002309", + "id": "e9836f25-fcff-498a-a16b-16f279c9b989", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -129467,7 +129467,7 @@ } }, { - "id": "4046ab28-87a7-41bc-8a8d-ffecc64bf2eb", + "id": "eb99ce52-bf31-4c89-b7e9-a62bd7ffca3b", "name": "Retrieves the applications of a potential role for a role mining session", "request": { "name": "Retrieves the applications of a potential role for a role mining session", @@ -129567,7 +129567,7 @@ }, "response": [ { - "id": "c35d3d3f-b0eb-4654-bd60-07b5c0853f98", + "id": "6227632e-07fb-4f0c-8119-ccaf7fc9fd4f", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -129655,12 +129655,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"elit dolore\",\n \"name\": \"laboris\"\n },\n {\n \"id\": \"in\",\n \"name\": \"laboris incididunt laborum\"\n }\n]", + "body": "[\n {\n \"id\": \"consectetur nostrud eiusmod\",\n \"name\": \"deserunt nulla ame\"\n },\n {\n \"id\": \"adipisicing ipsum et cillum\",\n \"name\": \"proident paria\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "cdb333b3-6a63-4e3a-b0cc-7c09a632a103", + "id": "c5194f02-e9d4-4079-a6b8-d40827cd7b83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -129753,7 +129753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "251e0ab6-6f5d-4eaa-968b-ec5bd497beda", + "id": "0b8aa719-8c37-4d30-8b83-367ee67bf806", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -129846,7 +129846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a173ee7c-f088-456c-8871-6bbc96f1c61f", + "id": "016564de-19af-46d7-9a8e-943a970957b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -129939,7 +129939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "315ac5b0-1eb1-4cac-851a-6da22c6adb29", + "id": "35a8bb55-673f-43b0-9d36-4d3cb5f7977a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130032,7 +130032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4d8aca1-d050-41fa-95b2-82f81f6b0388", + "id": "1a02217e-3a50-43fa-ae96-3921284c1538", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130131,7 +130131,7 @@ } }, { - "id": "4503b19c-fc11-4982-819a-cccb9986610c", + "id": "96866cac-03fc-4778-a1a0-bfc5350cda35", "name": "Retrieves the entitlements of a potential role for a role mining session", "request": { "name": "Retrieves the entitlements of a potential role for a role mining session", @@ -130231,7 +130231,7 @@ }, "response": [ { - "id": "00809d64-1dea-4094-9c18-0f2efc5cb568", + "id": "80e05d66-2da1-4a36-b9e1-e849a663b677", "name": "Succeeded. Returns the entitlements of a potential role for a role mining session. session.", "originalRequest": { "url": { @@ -130319,12 +130319,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"pari\",\n \"name\": \"amet cillum sunt labore\"\n },\n {\n \"id\": \"officia est nulla\",\n \"name\": \"commodo aute est nisi\"\n }\n]", + "body": "[\n {\n \"id\": \"ut ullamco est\",\n \"name\": \"cillum cupidatat tempor Duis aliqua\"\n },\n {\n \"id\": \"ea esse\",\n \"name\": \"nulla dolore ut in dolor\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bd95ac8a-6891-412e-ab90-a80f0dd8816c", + "id": "97495e84-2d9b-44ca-b0d9-0a975d324f77", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -130417,7 +130417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc0378c-be63-47b5-8c0b-aeac378e1a6d", + "id": "e90c7e9b-a19b-4af6-b2ff-1d8454214441", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -130510,7 +130510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31fdf0f3-9697-4597-89b7-b045774c286a", + "id": "55f3819a-8699-4f34-9cda-a3b3e479cc4e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -130603,7 +130603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b87507f7-5d53-4881-b6ce-d8d290fcb76a", + "id": "80b4125c-0208-444e-afc2-0ac01ae875cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -130696,7 +130696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd955255-6b4a-4f68-ab6d-640b9d016378", + "id": "5207e1d4-f8e9-43a5-821a-cd58f8abc00f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -130795,7 +130795,7 @@ } }, { - "id": "009f8a15-17c7-4c11-ae95-76c0dc09884f", + "id": "a98a263f-a0b4-4861-bb11-92f3d269165b", "name": "Retrieves entitlements for a potential role in a role mining session", "request": { "name": "Retrieves entitlements for a potential role in a role mining session", @@ -130913,7 +130913,7 @@ }, "response": [ { - "id": "6f7b0aaa-b7d2-4cce-b442-a6cf1b174810", + "id": "88c79cd2-2f88-4494-a795-0f2f5b555318", "name": "Succeeded. Returns a list of entitlements for a potential role.", "originalRequest": { "url": { @@ -131024,7 +131024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69887be3-f9df-4211-b21e-934adbd4df37", + "id": "624e255f-ed64-4256-9563-43a715936ef6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131135,7 +131135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b4b3ff-14fb-410b-bb37-86cba7e46ff8", + "id": "8e3a8a1b-0432-41a8-96bf-737cb2a691f6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131246,7 +131246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "948441ba-d16c-4382-9157-fe516cbb5ada", + "id": "a444589d-bb15-46e4-81a0-c2d40d313aa9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131357,7 +131357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b229e51d-e6c7-4c78-85dc-2c0c0e78cdeb", + "id": "d650e5f8-de45-459f-8d53-ad1bbb58d0cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131468,7 +131468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2aa1e41-3ad6-4081-bc7b-4dd3f9a75520", + "id": "38f8ab31-415b-4ec7-a3ca-fe059039d5c8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131585,7 +131585,7 @@ } }, { - "id": "af84f8f6-8283-48ea-90d3-889e7dab4165", + "id": "02cb9a8c-b00e-4451-8fb4-00c3fc9f305c", "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", "request": { "name": "Retrieves entitlement popularity distribution for a potential role in a role mining session", @@ -131658,7 +131658,7 @@ }, "response": [ { - "id": "2807a155-9615-4bb5-a72e-dd56dfe9d0b6", + "id": "861d5ce7-2b88-4c3e-ae76-5ef730123b4a", "name": "Succeeded. Returns a map containing entitlement popularity distribution for a potential role.", "originalRequest": { "url": { @@ -131719,12 +131719,12 @@ "value": "application/json" } ], - "body": "{\n \"culpa_5\": -6012311\n}", + "body": "{\n \"ipsum_f91\": 66782276\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "abbab35c-8bcc-480f-a012-1bb88d22b26c", + "id": "f6bb8b79-3a21-4393-8e7c-443136b18400", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131790,7 +131790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab9e88e2-c754-4c07-8a8c-940252ef5118", + "id": "d88401ee-6e84-478e-b391-d3ef346f3122", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131856,7 +131856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c7ac180-98ad-47ce-a8f6-669f3015e152", + "id": "e08a2019-2296-4a15-b0e9-9c9f0e69243a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131922,7 +131922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c96ad9c-cc2f-4bf4-985c-a5d8d1d9c600", + "id": "8f372cb7-bf58-4d6a-8c13-8e333388a764", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131994,7 +131994,7 @@ } }, { - "id": "fcc4fda9-f695-4053-b6d4-c7090054c9db", + "id": "c6dfb0d8-1a6b-4af6-a08d-2a393e610764", "name": "Edit entitlements for a potential role to exclude some entitlements", "request": { "name": "Edit entitlements for a potential role to exclude some entitlements", @@ -132070,7 +132070,7 @@ }, "response": [ { - "id": "fc18a0a0-39fc-4ced-9822-9c411b4cce6a", + "id": "a3f6f0c6-e579-436a-a70c-e4371d0a73ec", "name": "Adds or removes entitlements from a potential role's entitlement exclusion list.", "originalRequest": { "url": { @@ -132134,12 +132134,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"dolorb38\": \"consectet\"\n },\n {\n \"ipsumd16\": \"proident occaecat esse\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"Excepteur_96\": \"nostrud reprehenderit commodo in\"\n },\n {\n \"adipisicing_c6\": \"sed\",\n \"Excepteure\": \"irure voluptate\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1960-11-10T07:53:40.662Z\",\n \"modifiedDate\": \"1954-01-11T18:33:20.144Z\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"pariatur8\": \"sint consectetur ipsum\",\n \"proidentfd\": \"amet eni\",\n \"irure7\": \"Ut exercitation cillum laboris\",\n \"anim59\": \"Lorem ex laboris si\"\n },\n {\n \"sit76\": \"tempor eu sunt\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ipsum_17\": \"sed et Lorem ea dolor\"\n },\n {\n \"Lorem__\": \"qui\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1977-02-13T04:47:52.421Z\",\n \"modifiedDate\": \"1966-07-24T12:56:42.439Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "597f101a-351f-4305-a719-7eaeefa633c9", + "id": "65988563-c751-4aac-85df-1547d60678fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132208,7 +132208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aca74064-0002-4905-b595-f3cc4e9ce389", + "id": "002264c0-540a-4c79-be6f-ed419d6d99c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132277,7 +132277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea83f3f-63e0-4dbf-98b1-ae60587db4b5", + "id": "249c59ee-1258-479f-a425-9323be714cf4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132346,7 +132346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bbd91d0-b217-4e92-8319-a49bd3e13db7", + "id": "d8c70113-9b02-40ec-ab7c-b5ec742181b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132421,7 +132421,7 @@ } }, { - "id": "66045fb0-d303-4d1c-b6e2-0ec6000d7f05", + "id": "7913f8e4-d401-4356-ba06-13cec2fa3451", "name": "Retrieves identities for a potential role in a role mining session", "request": { "name": "Retrieves identities for a potential role in a role mining session", @@ -132457,7 +132457,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -132530,7 +132530,7 @@ }, "response": [ { - "id": "6fe601a1-6d4a-4d2c-8b24-e74fe2310f3d", + "id": "f9532517-1397-4aea-bc01-35309159899c", "name": "Succeeded. Returns a list of identities for a potential role.", "originalRequest": { "url": { @@ -132561,7 +132561,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -132632,7 +132632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4aa0d19-34bd-40ac-93b2-9f1a6614e1ea", + "id": "1b0e6660-6619-4d55-9697-f41dc99dabf2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132663,7 +132663,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -132734,7 +132734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77fc4c19-6efb-4ec9-9f0f-8eb8f32067fe", + "id": "a83829b9-209f-4e68-8288-359538e7ad05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132765,7 +132765,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -132836,7 +132836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bffce34d-04d7-45f5-8942-4ad4a95b7ae3", + "id": "24474294-7e00-49db-b5b4-e0c1cb55e45e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132867,7 +132867,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -132938,7 +132938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20ec1a3b-49b5-44d0-b043-566f32066d78", + "id": "5e7aae7a-2479-40aa-b909-70d8606d95db", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132969,7 +132969,7 @@ "type": "text/plain" }, "key": "filters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -133046,7 +133046,7 @@ } }, { - "id": "0ab23cb6-a292-4052-89ce-7ed07535076b", + "id": "0192f5cd-0077-4139-bfd6-713a71a68709", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -133109,7 +133109,7 @@ }, "response": [ { - "id": "43cdcbf0-2e26-41a5-a418-5747a362b1b9", + "id": "9996f1cc-074c-4b9b-b02a-f323999cc256", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -133160,12 +133160,12 @@ "value": "application/zip" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "afe100c7-52db-44d9-92a9-81fa4efe7c62", + "id": "eb17d217-1ee2-4fb0-89e4-70da7b10e1d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133221,7 +133221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523b3a8c-35f1-4968-b25a-21c165deb6df", + "id": "57a5c4c9-abff-44c5-8f57-a7b6bda91132", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133277,7 +133277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8416a6ff-2910-41ac-8cf5-3950e64d1462", + "id": "07fc26c1-a636-4617-b8dd-3ede97f65401", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133333,7 +133333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47814ece-8952-47dd-966b-09069f79af4d", + "id": "f54c9537-de64-4e12-a948-0974b25872a9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133395,7 +133395,7 @@ } }, { - "id": "22abd48a-f7d0-4473-b0b7-41b51f9c1df1", + "id": "210eb5a4-c88c-4486-b8d0-e1df1a81d12f", "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", "request": { "name": "Asynchronously export details for a potential role in a role mining session and upload to S3", @@ -133471,7 +133471,7 @@ }, "response": [ { - "id": "ed1ec41d-e04d-4a71-a600-74dea032e6a5", + "id": "57d83006-927c-4597-abb1-818b8415b574", "name": "Job Submitted. Returns a reportId that can be used to download the zip once complete", "originalRequest": { "url": { @@ -133540,7 +133540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5d26b69-04f7-460d-90fc-b54752be2a46", + "id": "b8f45444-47e7-45c7-8e91-583fabb939e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133609,7 +133609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96901562-2796-4d7d-9dd2-3222a9c7e6a1", + "id": "62a16b5c-90fc-44ce-9ceb-062e51970346", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133678,7 +133678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d517e68-8c74-4258-af1d-c433d75d2e35", + "id": "e2fecdf9-6ab6-490e-98eb-5ccb3e257a1d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133747,7 +133747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c59d5e6-3dc1-4d61-9a2c-c4f5e8bbb836", + "id": "b2ff2afe-5355-4268-b33f-734ae8a90082", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133822,7 +133822,7 @@ } }, { - "id": "77bca3ae-7024-45d8-b36c-e9ee1bca0b68", + "id": "797d5b40-c5fd-4c89-a043-8a24a10ffedb", "name": "Retrieve status of a potential role export job", "request": { "name": "Retrieve status of a potential role export job", @@ -133896,7 +133896,7 @@ }, "response": [ { - "id": "4cdf9148-a59e-4eea-add8-f860d449813f", + "id": "701a02cd-9451-49cb-9215-1f7811778a3e", "name": "Success. Returns the current status of this export", "originalRequest": { "url": { @@ -133953,7 +133953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b66f0902-1606-4ea1-8a5c-70cb09f9cf36", + "id": "5923ca46-447e-416e-a0c4-bad57a55f65a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134010,7 +134010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7b2032b-cc2b-4a6e-bf18-05ed0a5df6d6", + "id": "f881e0a5-1a57-470c-a78d-6ea27cce354e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134067,7 +134067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e647f20b-b83c-44d0-a17e-6684cbbcd6ca", + "id": "f71886cb-d334-4126-8f32-f4ea08192539", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134124,7 +134124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0ba58dc-a63b-42f2-b848-d71cf5d16cc7", + "id": "791a74cb-cfc9-4a3e-8807-ad6d3f0d5285", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134187,7 +134187,7 @@ } }, { - "id": "b057ed94-b2cd-41a1-ae66-e55025e411a5", + "id": "fa0cb5da-2eaa-4926-be6b-d353863b62a9", "name": "Export (download) details for a potential role in a role mining session", "request": { "name": "Export (download) details for a potential role in a role mining session", @@ -134262,7 +134262,7 @@ }, "response": [ { - "id": "b7373f91-2e69-4eeb-af7f-9504969b4873", + "id": "1affe821-5ab6-4736-8fb4-e7b01891c6e4", "name": "Succeeded. Returns a zip file containing csv files for identities and entitlements for the potential role.", "originalRequest": { "url": { @@ -134315,12 +134315,12 @@ "value": "application/zip" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "37a81773-7d60-455b-a02c-25dae0ddd2ee", + "id": "38efd1b0-c89e-480b-87e0-06397c3659a9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134378,7 +134378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aebeb0a-c2a8-42ed-9c24-c36160dd7b0c", + "id": "deb703c2-c483-4579-868e-5a1c937a3057", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134436,7 +134436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c4b0544-1ca3-40d9-b10c-2cdc3abea09c", + "id": "81b37b07-2a57-4362-968d-19b514e3b66f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134494,7 +134494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f36bc4b-1ed8-4bbe-be98-42c6364e2606", + "id": "636fd317-03f3-40c2-8360-7ca0d3c42332", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134558,7 +134558,7 @@ } }, { - "id": "8e130e4e-8c91-43a8-980d-5741e1f303f2", + "id": "495f6a5c-0f99-4633-9e6d-9408dc79b917", "name": "Create request to provision a potential role into an actual role.", "request": { "name": "Create request to provision a potential role into an actual role.", @@ -134653,7 +134653,7 @@ }, "response": [ { - "id": "14d2d82e-e37b-47fa-9b14-c909bc3ddef8", + "id": "930a35c3-5c74-4366-b680-73c685b51fe8", "name": "Accepted. Returns a potential role summary including the status of the provison request", "originalRequest": { "url": { @@ -134736,12 +134736,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1981-09-23T02:08:45.001Z\",\n \"saved\": true,\n \"description\": \"aliquip Ut est eu\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n}", + "body": "{\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2003-02-17T13:05:09.812Z\",\n \"saved\": true,\n \"description\": \"magna esse ut\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7a211659-e6e0-41b7-ac25-3c9aefca16fd", + "id": "5003f702-3361-43ef-8131-efbe7586bbed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134829,7 +134829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a8a6d22-a652-4ab0-8002-41bf31ad02d6", + "id": "97a7c1cb-297e-4f2d-98e8-6687e2080828", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134917,7 +134917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5b345f-c047-4391-b34b-334628ae5b4f", + "id": "d28a8859-98c1-4889-b564-05193e27fbe0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135005,7 +135005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f93ed23-ca43-4a0f-93c8-3d29768b5c56", + "id": "a7632535-c7a8-46bc-a2a3-462eb3d67194", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135093,7 +135093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04734c53-ec45-49f4-b71c-11a38d1958ec", + "id": "90cc7b6d-2d4d-4ef7-825e-9179e5365ddf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135187,7 +135187,7 @@ } }, { - "id": "d30faf23-9f8f-4829-aefc-092f45557513", + "id": "3b60aaf2-05f4-4186-9f56-484790a2d5a1", "name": "Retrieves excluded entitlements for a potential role in a role mining session", "request": { "name": "Retrieves excluded entitlements for a potential role in a role mining session", @@ -135296,7 +135296,7 @@ }, "response": [ { - "id": "e7276c72-c441-4122-bef1-2e860521037d", + "id": "d650a37b-c6e8-496e-9cd6-9f2b3f06727c", "name": "Succeeded. Returns a list of excluded entitlements for a potential roles.", "originalRequest": { "url": { @@ -135398,7 +135398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c02a67-e79c-477d-88f2-0c102a101643", + "id": "c69222f6-ffcb-470e-9960-d9492d26a434", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135500,7 +135500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "344c20b3-90e9-4efc-9bcd-89c04b8a850a", + "id": "ceac9658-daa7-4f43-bdbd-bcb0451e562b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135602,7 +135602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "407ed52a-8822-4e8b-b0c6-93c4f73ccf28", + "id": "88857d4b-f96c-4102-b9fa-4f8d3e5548cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135704,7 +135704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4881efb7-6bea-41c4-9cad-f0a0ba460a30", + "id": "f229f24a-00d3-4359-b8a9-26895f66cdb4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135812,7 +135812,7 @@ } }, { - "id": "168b82cf-043f-4b04-b55d-b49c4d9e8643", + "id": "03417831-7898-4999-a132-a4019b7830c1", "name": "Retrieves all potential role summaries", "request": { "name": "Retrieves all potential role summaries", @@ -135896,7 +135896,7 @@ }, "response": [ { - "id": "52663f37-5b6e-45df-acfa-19839bf3384e", + "id": "88a77c5e-2174-43a2-b453-b79e79289ca7", "name": "Succeeded. Returns all potential role summaries that match the query parameters.", "originalRequest": { "url": { @@ -135989,12 +135989,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2023-08-15T10:27:02.513Z\",\n \"saved\": true,\n \"description\": \"qui aute\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1961-03-04T09:22:14.804Z\",\n \"saved\": true,\n \"description\": \"in id dolor\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"2003-05-02T00:43:35.344Z\",\n \"saved\": true,\n \"description\": \"nostrud voluptate anim in\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n },\n {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\",\n \"potentialRoleRef\": {\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"name\": \"Potential Role - e0cc5d\"\n },\n \"identityCount\": 25,\n \"entitlementCount\": 15,\n \"identityGroupStatus\": \"OBTAINED\",\n \"provisionState\": \"PENDING\",\n \"roleId\": \"2a4be6fbcf3c4e66b95a0c15ffd591\",\n \"density\": 90,\n \"freshness\": 70,\n \"quality\": 80,\n \"type\": \"SPECIALIZED\",\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"createdDate\": \"1989-05-19T14:52:14.831Z\",\n \"saved\": true,\n \"description\": \"consectetur ex est\",\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "64af6dce-7f25-4086-a93f-3405fc9a4cbd", + "id": "e3641fd8-30c2-4812-9c4b-212514ea6f9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136092,7 +136092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9831d59c-1b5c-4dec-ac3d-7a4fb2d3ba87", + "id": "4a31d66a-c7bc-4b2d-8d9c-93677ad561c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136190,7 +136190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad82aa6-a4d6-48ed-9404-d7dfe70c52de", + "id": "00e62e14-e8f2-494c-8bd2-f73763280185", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136288,7 +136288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99fbf056-3070-4610-9c4c-30fa6dc265b7", + "id": "b980371f-44a0-4c85-8cd6-ea901f07b170", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136386,7 +136386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1665dd06-16bf-40f6-b6bc-57a1d71ed129", + "id": "01b5c09f-9623-4b5c-888c-474b4b9cfefa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136490,7 +136490,7 @@ } }, { - "id": "ec38a6f9-3cb7-41ea-b330-44b8a94b0170", + "id": "d295e384-93d9-45b1-96d5-27e9c35549b1", "name": "Retrieves a specific potential role", "request": { "name": "Retrieves a specific potential role", @@ -136540,7 +136540,7 @@ }, "response": [ { - "id": "aae70501-f269-4374-8ea1-aa50c89c5ff6", + "id": "363e9b16-de32-49d8-a0ef-633775e90a92", "name": "Succeeded. Returns a list of potential roles for a role mining session.", "originalRequest": { "url": { @@ -136588,12 +136588,12 @@ "value": "application/json" } ], - "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"dolorb38\": \"consectet\"\n },\n {\n \"ipsumd16\": \"proident occaecat esse\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"Excepteur_96\": \"nostrud reprehenderit commodo in\"\n },\n {\n \"adipisicing_c6\": \"sed\",\n \"Excepteure\": \"irure voluptate\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1960-11-10T07:53:40.662Z\",\n \"modifiedDate\": \"1954-01-11T18:33:20.144Z\"\n}", + "body": "{\n \"createdBy\": {\n \"id\": \"2c918090761a5aac0176215c46a62d58\",\n \"displayName\": \"Ashley.Pierce\"\n },\n \"density\": 75,\n \"description\": \"Potential Role for Accounting dept\",\n \"entitlementCount\": 25,\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"freshness\": 75,\n \"identityCount\": 25,\n \"identityDistribution\": [\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"pariatur8\": \"sint consectetur ipsum\",\n \"proidentfd\": \"amet eni\",\n \"irure7\": \"Ut exercitation cillum laboris\",\n \"anim59\": \"Lorem ex laboris si\"\n },\n {\n \"sit76\": \"tempor eu sunt\"\n }\n ]\n },\n {\n \"attributeName\": \"department\",\n \"distribution\": [\n {\n \"ipsum_17\": \"sed et Lorem ea dolor\"\n },\n {\n \"Lorem__\": \"qui\"\n }\n ]\n }\n ],\n \"identityIds\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"name\": \"Saved Potential Role - 07/10\",\n \"provisionState\": \"POTENTIAL\",\n \"quality\": 100,\n \"roleId\": \"07a0b4e2-7a76-44fa-bd0b-c64654b66519\",\n \"saved\": true,\n \"session\": {\n \"id\": \"9f36f5e5-1e81-4eca-b087-548959d91c71\",\n \"name\": \"Saved RM Session - 07/10\",\n \"minNumIdentitiesInPotentialRole\": 20,\n \"pruneThreshold\": 5,\n \"saved\": true,\n \"scope\": {\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"criteria\": \"source.name:DataScienceDataset\"\n },\n \"type\": \"SPECIALIZED\",\n \"state\": \"CREATED\",\n \"scopingMethod\": \"MANUAL\"\n },\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1977-02-13T04:47:52.421Z\",\n \"modifiedDate\": \"1966-07-24T12:56:42.439Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f7be2736-d52b-4771-bc85-b692ad0abc6a", + "id": "c81785b3-04fd-4dfd-9795-1d552f3fa90a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136646,7 +136646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a69f9cfd-74f8-4a03-a25a-0cd1b08725a9", + "id": "9d9defeb-dacf-4d2b-be6c-f4a7649186be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136699,7 +136699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7295c108-c235-443d-938e-2056a83f1014", + "id": "a67773d3-e7aa-4b1c-90ca-ffb3f0997696", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136752,7 +136752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4df7e6a-9de2-4587-b8de-26feba9aa01a", + "id": "cee1ae08-866e-4954-af4e-b91c18883cb2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136805,7 +136805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96c09481-2018-4e56-a0d7-678cf559d1f0", + "id": "c3f20b23-5b11-4c49-82de-b086ee868719", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136864,7 +136864,7 @@ } }, { - "id": "3e57bcd4-a490-4f73-8760-46ca767d7327", + "id": "4a0757c9-091b-4a99-9061-723a4686035e", "name": "Update a potential role", "request": { "name": "Update a potential role", @@ -136937,7 +136937,7 @@ }, "response": [ { - "id": "3af69c46-0a5a-4425-bb8e-da90997c9368", + "id": "c2f9b4fb-2fb1-42a3-af39-8889dd8edb3a", "name": "Succeeded. Returns the potential role summary based on the potentialRoleId provided.", "originalRequest": { "url": { @@ -137003,7 +137003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "914824c6-b77b-4653-8045-6c12feb85f5f", + "id": "bfed5860-de4d-4465-b819-d45abd108683", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137069,7 +137069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23715609-a2bc-4e85-972e-8bb5bcc8e5cb", + "id": "4d2d0279-f66e-448a-9a7c-c1d0c566f597", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137135,7 +137135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f234a769-5680-4f36-9211-8ebe8e0e8c1c", + "id": "524258c0-a6ae-4ec4-ab21-f2b1f480cdf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137201,7 +137201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce274895-c060-4af7-ac99-4a7dd280c98b", + "id": "660f6196-47d9-4dbc-871d-b8d53103858f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137267,7 +137267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7d61db4-d44a-47a2-9b67-69020b2a6dac", + "id": "6d595c32-63fe-47d5-940a-74d90878af06", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137333,7 +137333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c377c9a-f29c-47bc-be68-184a6fd88e89", + "id": "c9ea681d-278b-4300-840c-284ee9dfa781", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137405,7 +137405,7 @@ } }, { - "id": "b1fdfd45-fa1b-4a14-b580-50704d51fde1", + "id": "ff788fc5-d2ad-4bf8-82f2-6f51a5988161", "name": "Retrieves all saved potential roles", "request": { "name": "Retrieves all saved potential roles", @@ -137481,7 +137481,7 @@ }, "response": [ { - "id": "580dfecd-465e-49b0-af27-32aaf1caa44f", + "id": "6f7a15b3-fba9-414f-96ad-f0797aaae81b", "name": "Succeeded. Returns a list of draft roles for a role mining session.", "originalRequest": { "url": { @@ -137566,12 +137566,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1991-01-16T06:10:07.024Z\",\n \"modifiedDate\": \"1979-07-21T01:43:47.600Z\"\n },\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1979-02-08T07:12:00.585Z\",\n \"modifiedDate\": \"1975-12-11T06:29:14.249Z\"\n }\n]", + "body": "[\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1967-03-05T10:45:27.813Z\",\n \"modifiedDate\": \"1958-11-01T22:18:56.819Z\"\n },\n {\n \"name\": \"Saved RM Session - 07/10\",\n \"description\": \"Person who develops software\",\n \"identityIds\": [\n \"2c918090761a5aac0176215c46a62d58\",\n \"2c918090761a5aac01722015c46a62d42\"\n ],\n \"entitlementIds\": [\n \"2c91808a7624751a01762f19d665220d\",\n \"2c91808a7624751a01762f19d67c220e\"\n ],\n \"excludedEntitlements\": [\n \"07a0b4e2\",\n \"13b4e2a0\"\n ],\n \"modified\": \"2020-09-16T18:49:32.150Z\",\n \"type\": \"SPECIALIZED\",\n \"id\": \"e0cc5d7d-bf7f-4f81-b2af-8885b09d9923\",\n \"createdDate\": \"1956-01-24T21:50:43.083Z\",\n \"modifiedDate\": \"1966-06-01T21:38:35.709Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "bb6ddb6c-cbe2-40a7-b2a7-1e8918061fd3", + "id": "2cf739ef-109b-435d-9b82-1d334686d289", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137661,7 +137661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97154c70-495d-4a7e-a21e-b39084283622", + "id": "b83ffd20-8b9a-4181-8d8a-5bed86ee1f87", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137751,7 +137751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6d17dd-ed58-48dd-89d4-2eb21c174209", + "id": "4a9f363a-7906-4283-b1fc-03c7ac953504", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137841,7 +137841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0a3be49-cea2-4923-a041-629891249d95", + "id": "015388c2-e2a5-46b0-a83e-9104b7ed5116", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137931,7 +137931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74756289-e51e-46e3-9742-90e85230659b", + "id": "e4f0148a-05ac-4761-a276-77878503f115", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138027,7 +138027,7 @@ } }, { - "id": "1b0cc5a9-4aba-49d4-984d-2c3bf5f23f49", + "id": "88b72637-2393-44d3-a3c1-085648357e1e", "name": "Retrieves potential role source usage", "request": { "name": "Retrieves potential role source usage", @@ -138127,7 +138127,7 @@ }, "response": [ { - "id": "5880bf69-e528-469e-bb26-d1ba74b94c0f", + "id": "09ab64fa-5a1e-4bb8-9377-1cfbd57e7fcd", "name": "Succeeded. Returns a list of source usage for the identities in a potential role.", "originalRequest": { "url": { @@ -138220,7 +138220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "650ec2cc-27c3-4902-8ea1-a5dfeb475300", + "id": "745df0a4-5d0a-4b34-b18b-2f5f259f3e6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138313,7 +138313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28f5d6d8-76e0-40ce-b1ee-f2d0cf21b511", + "id": "be6db203-6c1b-4cc4-9f2e-728ac54f04c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138406,7 +138406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24c8242a-cb37-44f5-8111-89f72c541096", + "id": "8ad9c06c-0d8b-4dce-affa-953e72f15b88", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138499,7 +138499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b070d3-3ae4-4143-b782-92ff047ea6fd", + "id": "65730bb6-7616-492d-a577-9f7ea08c2124", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138592,7 +138592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f1b334c-6384-4d8c-8310-114b5ecf6628", + "id": "465569b7-bba4-46a8-af7c-65c604537aa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138697,7 +138697,7 @@ "description": "Use this API to implement functionality related to object icons (application icons for example). \nWith this functionality in place, administrators can set or remove an icon for specific object type for use throughout Identity Security Cloud.\n", "item": [ { - "id": "e6762762-d713-451d-a58a-363713b698ad", + "id": "40a0568d-bbc4-44ae-accc-20044551f9b0", "name": "Update an icon", "request": { "name": "Update an icon", @@ -138774,7 +138774,7 @@ }, "response": [ { - "id": "0fcb101e-3e75-4e2e-8fc8-98febe18e696", + "id": "18fda65f-f36f-41e3-8403-97ccf012c451", "name": "Icon updated", "originalRequest": { "url": { @@ -138844,7 +138844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5b8358a-da1d-492c-80e3-0f330a277582", + "id": "36a08c75-1cc1-4ebf-ba33-0ba6eb1a78d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138914,7 +138914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5de35e86-c34c-483a-9edf-35108a151981", + "id": "7c76d799-7a91-4e5b-af47-a3404419c616", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138984,7 +138984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a913bdbb-8fcb-4669-9f22-0e96de9b95c9", + "id": "f9a49422-d953-44a6-8456-acc46772e7d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139054,7 +139054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73d2d301-19e1-4ace-871b-eaae3f9851bc", + "id": "6b9d3d9d-c1a3-4686-91b2-2889b1a06222", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139124,7 +139124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca5fca3-0f6c-4adb-9a9e-3f515d28a4bd", + "id": "8cb340b5-4993-4de3-981a-c7ffd9bc2624", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139194,7 +139194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0605d0b-c0a0-4656-a9b4-57446b18cad1", + "id": "615ae360-4de3-4f6c-93a6-509ad77fc475", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139270,7 +139270,7 @@ } }, { - "id": "be27ed54-7fea-45ed-a4d1-4e1458bc813d", + "id": "afa04e5a-fdae-4be7-8dd0-25ccfbd1b250", "name": "Delete an icon", "request": { "name": "Delete an icon", @@ -139331,7 +139331,7 @@ }, "response": [ { - "id": "9af6e8dd-8289-4aa8-8ae6-429e21c0ba7e", + "id": "3bbe3356-2e4c-41b5-8646-00a8769a00f6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -139375,7 +139375,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c75c36dd-0839-41dd-b1a4-834a14f615ed", + "id": "05ac0237-4dc0-4281-a3a6-c4f47bcf8ee1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139429,7 +139429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a8d6275-081f-425f-b39e-d8d16b75ceb4", + "id": "47624be7-b838-4ef5-b405-2db62d08c4de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139483,7 +139483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e6f6f1-86ed-4bad-a7ca-87da71f052c5", + "id": "bfa8eff1-f6a1-4357-aac0-f3e6d76d3889", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139537,7 +139537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c02be0-0201-4064-a979-339a631e0b1b", + "id": "0983622b-c01d-43b8-a080-e80680b16f70", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139591,7 +139591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14543ba6-c941-4d23-8e5d-b10c1f2a38e5", + "id": "247ab7a5-2e82-4096-8f28-308276599b5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139645,7 +139645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff97a6c4-d27d-4485-bdbe-fd73029b6a25", + "id": "b678d7a8-f84d-4d25-b02b-64d1a4cd8eb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139711,7 +139711,7 @@ "description": "Use this API to implement identity functionality.\nWith this functionality in place, administrators can synchronize an identity's attributes with its various source attributes.\n\nIdentity Security Cloud uses identities as users' authoritative accounts. Identities can own other accounts, entitlements, and attributes.\n\nAn identity has a variety of attributes, such as an account name, an email address, a job title, and more.\nThese identity attributes can be correlated with different attributes on different sources.\nFor example, the identity John.Smith can own an account in the GitHub source with the account name John-Smith-Org, and Identity Security Cloud knows they are the same person with the same access and attributes.\n\nIn Identity Security Cloud, administrators often set up these synchronizations to get triggered automatically with a change or to run on a schedule.\nTo manually synchronize attributes for an identity, administrators can use the Identities drop-down menu and select Identity List to view the list of identities.\nThey can then select the identity they want to manually synchronize and use the hamburger menu to select 'Synchronize Attributes.'\nDoing so immediately begins the attribute synchronization and analyzes all accounts for the selected identity.\n\nRefer to [Synchronizing Attributes](https://documentation.sailpoint.com/saas/help/provisioning/attr_sync.html) for more information about synchronizing attributes.\n", "item": [ { - "id": "4fd2bced-4636-40e8-b6fc-17b41fdc5d83", + "id": "5272a0d0-0f72-41be-b12d-d5bda50ac38d", "name": "Attribute synchronization for single identity.", "request": { "name": "Attribute synchronization for single identity.", @@ -139732,7 +139732,7 @@ "variable": [ { "type": "any", - "value": "sint amet", + "value": "dolore ut labore dolore", "key": "identityId", "disabled": true, "description": { @@ -139762,7 +139762,7 @@ }, "response": [ { - "id": "61d21046-5531-434e-be7e-f91808dbbdcb", + "id": "120be15d-eec7-4850-b085-a4d3db54b541", "name": "An Identity Sync job", "originalRequest": { "url": { @@ -139816,7 +139816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "554b46ec-a75b-4caf-8e23-3a1ae95655e5", + "id": "f7f0e6b0-cc20-4a3e-a232-667faf881053", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139870,7 +139870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "370076c5-42d7-4591-83e9-ceefd1f2f45b", + "id": "4f394da1-787f-466e-84de-5f364e13365f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139924,7 +139924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84b38506-ebdf-49de-8454-8e527d6e719c", + "id": "0f00d98e-4cb7-44ea-859d-608088bfa0af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139978,7 +139978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eb8267a-fba7-4bdb-be42-ce7e4aed804e", + "id": "927a58a0-e0f5-4beb-87e0-073cfcd38d09", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140032,7 +140032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df0c3f67-6d3c-4bee-bc4e-9ae2fbfab45d", + "id": "16fc8e87-5a57-4d18-897a-1ae134117351", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140086,7 +140086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43185722-a8e1-4363-b300-bffd3736816b", + "id": "533dfd04-a718-4a14-a8b5-dc7b4e68b733", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140146,7 +140146,7 @@ } }, { - "id": "db7acf81-c766-4042-96e8-9ebce234e102", + "id": "298f1910-b66b-45cb-a13f-ff7bf113ea70", "name": "Get ownership details", "request": { "name": "Get ownership details", @@ -140197,7 +140197,7 @@ }, "response": [ { - "id": "7a833697-d360-40fe-9fcf-dba17a957647", + "id": "e643c8ba-312f-4c9d-a09f-a157cbf92233", "name": "Identity's ownership association details.", "originalRequest": { "url": { @@ -140251,7 +140251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c714031a-a5b6-4679-abac-5a3925529dd9", + "id": "4bbe867b-94ed-45b1-8f02-6d5243abd7bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140305,7 +140305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce115274-9f2e-42fa-b1fb-b4e178c202df", + "id": "04fd0526-4314-4c1c-b56e-7c4de4f53f1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140359,7 +140359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12252605-9c75-4609-ae0a-a0bb9bbc2518", + "id": "3735004f-8147-41bb-8b66-44f2a1d122a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140413,7 +140413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aaac86a-deae-4cc7-9c3b-b77adbb0852f", + "id": "59d1ee74-7362-4874-8e61-08ca5eb71394", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140467,7 +140467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e868ac2b-1a31-46a6-a17c-1f076eda42e3", + "id": "7a7200de-1021-4616-91cb-c98cf7a6d15f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140521,7 +140521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c591be8-fe92-4ae3-bfa2-d8532a382251", + "id": "1fc3b827-a70c-468e-83bc-14300a9af316", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140581,7 +140581,7 @@ } }, { - "id": "552d707b-6e7f-4a3e-b496-ba491a102843", + "id": "4f4ce1c6-f461-45b5-8946-fd4abfd8161f", "name": "List Identities", "request": { "name": "List Identities", @@ -140674,7 +140674,7 @@ }, "response": [ { - "id": "6b5520ef-df97-43fe-98a5-78ecc39bf7b1", + "id": "a5ea0df5-40fa-4a56-8dc7-d8cef6203a84", "name": "List of identities.", "originalRequest": { "url": { @@ -140781,7 +140781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0feb686b-55a1-4bc1-89d6-d0edd15cbff7", + "id": "61d7d886-3484-4375-bbc8-200bf398f7e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -140888,7 +140888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1e0ffce-21a7-471b-9063-260c4e60abd2", + "id": "f87c7961-0cf3-4d54-b9bc-5f82ec9ffcf4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -140995,7 +140995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebeefc2a-35f2-4655-aa66-99df476acdb2", + "id": "da5d28d8-9473-45bd-9ae4-9fa82ade9bde", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141102,7 +141102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79a032ca-85cc-4458-abf7-45d18894e4ae", + "id": "272389fc-d411-407b-9dfc-727a021f1c0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141209,7 +141209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e8dda4a-dfff-42e4-9e42-e39594fa1888", + "id": "90636a4b-f70a-47f9-9500-52b91227f734", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141322,7 +141322,7 @@ } }, { - "id": "2fd9c0a3-9cd8-4f2b-a57f-37f64f866cca", + "id": "9ccabbde-fc03-4b4d-b986-6de9ea7614e5", "name": "Identity Details", "request": { "name": "Identity Details", @@ -141372,7 +141372,7 @@ }, "response": [ { - "id": "15cd96d2-8172-4cfa-afe7-979c1f5c775d", + "id": "79e1c82c-622e-42f4-91b2-a08e92449e1b", "name": "An identity object", "originalRequest": { "url": { @@ -141425,7 +141425,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59f53621-6fb7-476d-b4d0-a549eeca89f0", + "id": "3c431f8d-5fcc-480e-a93c-0626de536249", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141478,7 +141478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f256c72-d45b-4712-89e0-fa60d94bfe9b", + "id": "6fb486b4-c975-4e1a-9432-9a60eed52b2e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141531,7 +141531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cea2b09-a950-4bd4-add6-1ef9cf92c537", + "id": "f9219e50-5117-40a0-9b45-12b6235fc8bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141584,7 +141584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "088f6a34-4def-4077-93e4-cad08f494a8e", + "id": "1b9f3ebc-41dc-42ca-af62-1b6dde9d3a73", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141637,7 +141637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7ed1f07-2829-4435-abd0-22d53d053cfa", + "id": "d20d5df8-958b-43e7-b7a1-fd1326ceb742", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141690,7 +141690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5a920c2-9a55-4aef-b4e3-1802b526db43", + "id": "1e63d860-37a6-4850-8ef7-0beb740c9a23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141749,7 +141749,7 @@ } }, { - "id": "22ce6801-a37f-45ce-9c25-185acc075164", + "id": "cca42378-8af6-4074-bede-7dbfc28c5c4c", "name": "Delete identity", "request": { "name": "Delete identity", @@ -141799,7 +141799,7 @@ }, "response": [ { - "id": "e6056fe8-e896-4759-8638-322a1ba405ca", + "id": "54edbc60-b101-4b46-82a3-a19d010ea5cf", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -141842,7 +141842,7 @@ "_postman_previewlanguage": "text" }, { - "id": "be76cdd3-cbf0-4fea-91e2-1b732e890cab", + "id": "8fd503be-5782-413f-b1ca-d7a727e1aebf", "name": "Client Error - Returned if the request is invalid. It may indicate that the specified identity is marked as protected and cannot be deleted.", "originalRequest": { "url": { @@ -141895,7 +141895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5643e082-cf1f-4542-8ee7-8ba260b1cec6", + "id": "01eecc3a-392a-4962-be72-05b36a22b4c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141948,7 +141948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3a549be-2f08-4579-b147-dc458a8acdc2", + "id": "ae36ca42-b85e-4c4f-ab8b-9d6c31173b9f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142001,7 +142001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6371e6d-092d-4bf9-add9-d4891ca61620", + "id": "cf22fa15-b39c-4230-8102-4fecf1988e96", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142054,7 +142054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4826a8a-5768-4b5a-9920-f2232bcf6276", + "id": "8b28af55-f6a5-4826-91c5-6de860afc06a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142107,7 +142107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48aa106c-e049-46ed-899b-86a4642d2e7b", + "id": "f5b4f1d6-c034-4f3f-839b-7663fab26ffe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142166,7 +142166,7 @@ } }, { - "id": "cfdc1ab6-90f6-49f2-9cec-4ac0900ec50e", + "id": "5d4b16cf-d4bb-4690-8622-7f71e7c0626a", "name": "Process a list of identityIds", "request": { "name": "Process a list of identityIds", @@ -142218,7 +142218,7 @@ }, "response": [ { - "id": "1b8ea40f-98ed-4e57-b1af-01a43bbe8d07", + "id": "87b7083b-1d9e-47c0-95e2-2730efc56f5e", "name": "Object containing the DTO type TASK_RESULT and the job id for the task", "originalRequest": { "url": { @@ -142284,7 +142284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9115085-f450-4344-9cad-4d290f98a395", + "id": "f3fde816-0e9b-4806-8030-19a74ecdffc5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142350,7 +142350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9c5deb8-d35c-4f3b-b19c-ff43838a5707", + "id": "f7a8ab77-f990-4318-9527-7291e0b711b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142416,7 +142416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4195ad3d-1de7-4e63-8707-030b97b55533", + "id": "58e154e4-bfcc-4ba7-8c3a-b7b49db85f26", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142482,7 +142482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c88851f6-4737-442e-9a36-ad25a1176ff3", + "id": "bb7901b9-21e2-40fc-a9b4-5a73003e0ab4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -142548,7 +142548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "375f44f6-9851-499a-a323-687fded05f8c", + "id": "356eee0d-eddc-4861-b7c2-37c24419285a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -142614,7 +142614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29b416c6-9da5-401a-95ef-6f362e056ab4", + "id": "7ebdc64c-682a-42c1-9053-128b829a26f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -142686,7 +142686,7 @@ } }, { - "id": "b547142c-4073-4ccc-948c-551b0ebef999", + "id": "46456aab-21f6-43ed-b837-a2949d99afca", "name": "Reset an identity", "request": { "name": "Reset an identity", @@ -142741,7 +142741,7 @@ }, "response": [ { - "id": "7c269288-4a26-4c52-9f93-e974099831ed", + "id": "675fa6dc-54c5-4e34-811f-82758bc85692", "name": "Accepted. The reset request accepted and is in progress.", "originalRequest": { "url": { @@ -142785,7 +142785,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c0e3ce7a-df06-49e0-a294-8cee7366dbf4", + "id": "e4cd1657-bac4-4a2f-b6fc-b463646aed36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142839,7 +142839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fe006ae-cd6f-4bc4-b28f-4bc6af9663b7", + "id": "42593e4f-2d45-4cc1-b875-2e4da0e79310", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -142893,7 +142893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eedee52-0574-4057-bb94-bd7ec6babe9e", + "id": "38ca815e-a3e9-42ac-8e19-11d2385fd966", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -142947,7 +142947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cae6a44-ff8f-4978-bd99-8c090f2b896c", + "id": "c87c93b5-37fa-4b23-b005-efde468443fe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143001,7 +143001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a45d13b0-04b0-4d19-851a-f8edd5ce51b5", + "id": "fdb108ed-abf0-40a7-9b7e-43206f7093b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143055,7 +143055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f01b31-3d79-410e-b6e5-4e2f34f24117", + "id": "3f62226e-e192-4eee-a99a-15772e432256", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143115,7 +143115,7 @@ } }, { - "id": "53d71534-4e36-4fec-9673-73830fe289bc", + "id": "955a7911-d943-4cbb-a4ca-11ca565218c4", "name": "List role assignments", "request": { "name": "List role assignments", @@ -143185,7 +143185,7 @@ }, "response": [ { - "id": "75763609-8e6d-4afb-9c4c-4cd4c2764468", + "id": "8e63d416-3a51-4178-9fa2-0ca6cceb7ddd", "name": "A role assignment object", "originalRequest": { "url": { @@ -143258,7 +143258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09cdfe90-0cef-49ac-809c-5998e55bf6f2", + "id": "7a4fec4b-2829-4b28-85a5-fdb71e1197a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143331,7 +143331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b37b429-cb83-4dee-a1ac-54d15c4e2ba9", + "id": "9010f9dc-979d-4e48-aad3-b9b6e313b2a4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143404,7 +143404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad8c02b8-6fe4-4c36-9622-8ca1b505a158", + "id": "c63d1cb5-7655-4718-8609-1e9196decd19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143477,7 +143477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a224163-3b7b-45e9-b009-46e22f9674b0", + "id": "7f36dfa8-5514-45ce-aa58-cabd8881973a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143550,7 +143550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf4b1dc3-096f-4106-a2b9-26e6ccbd690c", + "id": "818f2d34-4ce9-41d8-a56a-b5d2b00e157b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143623,7 +143623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80b5550f-a184-40b7-9624-54d84477d641", + "id": "ba24ac5a-e3d0-4913-963a-157d8a435b5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143702,7 +143702,7 @@ } }, { - "id": "53f72a4a-dee9-41d2-8aba-051a969f8bca", + "id": "cadb8d83-615f-4612-81d3-50ef5d7fafbb", "name": "Role assignment details", "request": { "name": "Role assignment details", @@ -143761,7 +143761,7 @@ }, "response": [ { - "id": "a89ae897-9acb-4487-a412-381323e3d851", + "id": "b9ecf203-e099-4836-a62b-ed5861ca853d", "name": "A role assignment object", "originalRequest": { "url": { @@ -143816,7 +143816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13a34627-f30f-499d-b91c-162e896dc1dd", + "id": "740ca60e-aa35-49f7-8f31-77dac8957dd8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -143871,7 +143871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "635a0d8f-c943-4448-98e3-f2bb01394f9b", + "id": "8051731f-cc80-4c3f-8aa9-71479b1efac3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143926,7 +143926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63ad945e-ba6a-43be-9e0b-b262f82505b6", + "id": "07feeca1-e0b2-4388-bce1-fd1a212a968a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143981,7 +143981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3abb3c69-7405-4c94-8722-3858daaf189d", + "id": "2a490b2f-4ce6-4f6a-b45d-1aca630a2313", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -144036,7 +144036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1325c999-a51d-4f0e-bfb2-2398cf7a2403", + "id": "04609761-c479-4ef4-b395-1b5c98bdf5a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144091,7 +144091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2aa9182-8024-4f44-ad56-93e128fc4235", + "id": "6d32c949-04bc-4ec7-8cf4-6505b9ee64e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144158,7 +144158,7 @@ "description": "", "item": [ { - "id": "8d93b4b9-c828-4d1d-adb6-0748fbe72b7a", + "id": "985f484a-76e6-4327-aaed-26954bad7314", "name": "List Identity Attributes", "request": { "name": "List Identity Attributes", @@ -144233,7 +144233,7 @@ }, "response": [ { - "id": "ddf314ab-43ab-4f10-80b9-e2d8e95c015e", + "id": "8e688896-4f96-4bc3-b870-e525abd8c87d", "name": "List of identity attributes.", "originalRequest": { "url": { @@ -144322,7 +144322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48a80626-b3b2-43b0-9afd-23acbbab32f3", + "id": "f2c1dfad-73f2-4d7f-aeae-42ad0b7fbd45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144411,7 +144411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cdea9fd-d701-43a5-b5d8-59b8657137c9", + "id": "4a3242bf-7599-428f-bfd6-e8460d16266d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144500,7 +144500,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6154eb0b-d44a-4a5a-be9a-66919bf04af8", + "id": "66d52884-5424-4c03-a824-239b4ea0feaf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144589,7 +144589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a67f8ef-af8a-4bab-ac99-a503abb497bc", + "id": "b4a61e4c-2486-4c60-bd3e-d798acc7a131", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144678,7 +144678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "550ffed1-57be-48d2-9a2f-19bc0a6aacb0", + "id": "fb71631a-5676-4b96-a363-b6853bf30679", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144773,7 +144773,7 @@ } }, { - "id": "29127fce-1a6f-409b-ab5b-c59b84cf2daf", + "id": "31e79d78-7a2b-4d12-a1ee-dc4a5343764f", "name": "Create Identity Attribute", "request": { "name": "Create Identity Attribute", @@ -144824,7 +144824,7 @@ }, "response": [ { - "id": "62dada3e-d998-4b23-a059-f343a9d34779", + "id": "b7324a5e-fb8b-45b4-926a-796758cd1d8d", "name": "The identity attribute was created successfully.", "originalRequest": { "url": { @@ -144889,7 +144889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44623969-eefe-4788-92fe-b8134ef413ce", + "id": "5b4f7d4b-b4f3-4b34-85f5-5ba1364857ff", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144954,7 +144954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "920d3a38-c5f6-4297-ba8d-bc5f7d28cb26", + "id": "0c21ab81-aa35-423c-9cea-96bb306c6579", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145019,7 +145019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c3a960f-741b-402c-809f-516e236f1794", + "id": "3dcfa57d-9e59-4caa-bbef-360095cb299b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145084,7 +145084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "457d320c-4c70-4207-b6ee-cffa70dd74a2", + "id": "f035d970-59dd-4d3b-b5f8-3b78bc528db2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145149,7 +145149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c903f7b1-9255-42dc-bcad-2b111e1ed7f4", + "id": "c2b9e158-45a1-4564-99ea-6cc50b4fa82e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145214,7 +145214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77a9a27d-d893-4e3b-934d-a6892acfe478", + "id": "ade0f883-937b-4155-b99f-326149b24879", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145285,7 +145285,7 @@ } }, { - "id": "7f2896a1-347f-48d6-93e9-3b77c0b6cc90", + "id": "0ab806f6-0c01-4c32-9c28-97794d9bbc2c", "name": "Get Identity Attribute", "request": { "name": "Get Identity Attribute", @@ -145335,7 +145335,7 @@ }, "response": [ { - "id": "7274fbcc-03c4-45cc-b903-677cbf488d8f", + "id": "0e37e4d9-9ef8-4ec8-a6b5-b5b9fdbba89c", "name": "The identity attribute with the given name", "originalRequest": { "url": { @@ -145388,7 +145388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8554a4c0-4447-4b3a-8a2e-abdf58ef94b6", + "id": "f7cda335-46a4-4d6b-ae30-f8fa4a7b3e20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145441,7 +145441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c9ad6ca-6570-4b8d-bcba-21920d52a5d2", + "id": "749cbbc5-1b42-46f2-b9d4-e1b2ff654d9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145494,7 +145494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdc6392e-4375-472a-a591-8c9113937dba", + "id": "8a7e554c-eaf5-4d59-83bd-e90d17f8f41e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145547,7 +145547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "036e8370-4cf9-4aac-a623-15cf28ada5df", + "id": "19220fda-9564-4757-9205-3ae0916c630d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145600,7 +145600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15f50af3-a0cc-465f-b083-5b1783b080f0", + "id": "b8e1bd90-75ef-4329-bd5a-0d3dc2e24296", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145653,7 +145653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da47fdbe-6b9e-477d-9afa-baa20a190e1c", + "id": "882aeb63-50db-4e98-afb5-a214d86650f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145712,7 +145712,7 @@ } }, { - "id": "14efd39a-b6ba-4b89-8308-f46ea5137d59", + "id": "3ee376de-de35-43fd-a373-d2114c199482", "name": "Update Identity Attribute", "request": { "name": "Update Identity Attribute", @@ -145775,7 +145775,7 @@ }, "response": [ { - "id": "6eda6e72-cfc8-42ca-9dc9-059a3ac247f6", + "id": "da4bdd45-c39d-4a03-99cf-2becf49b1ee4", "name": "The identity attribute was updated successfully", "originalRequest": { "url": { @@ -145841,7 +145841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22614064-9764-4c98-af84-3405cc87947d", + "id": "1e60006a-e818-4aab-ac5e-34de8b2f6f99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145907,7 +145907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "666aab24-e298-4bf7-9217-ea18f1b406d2", + "id": "e40055a8-150f-41d4-bb5c-eb0035e7ab1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145973,7 +145973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2620b90-6441-4d61-894f-8d0147a7c0cc", + "id": "4591e007-bb1a-49b0-827a-bdc19d04b1b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146039,7 +146039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "570a37d2-a2aa-40f2-b708-861aec73fa63", + "id": "c6b6e94d-50aa-4474-b3ec-62e4fe7461a9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146105,7 +146105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63f3a9a4-2f89-48c2-b029-7b6d613fb491", + "id": "48edd1bd-fad8-4c3f-9deb-79c391cf06fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146171,7 +146171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "beb8ed55-e390-418a-af8f-b4cb627674b5", + "id": "e4a766f4-a267-4566-9a79-a5e375da3cc2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146243,7 +146243,7 @@ } }, { - "id": "a1cd8df4-43f8-4739-861e-f96636f2babe", + "id": "a4ab6b98-a628-4ada-9697-bb43947849d9", "name": "Delete Identity Attribute", "request": { "name": "Delete Identity Attribute", @@ -146293,7 +146293,7 @@ }, "response": [ { - "id": "3da090ca-4966-4b1b-ac7f-0958c89254b3", + "id": "efc51b0c-ad72-434e-9725-bd447aa6a8e3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -146336,7 +146336,7 @@ "_postman_previewlanguage": "text" }, { - "id": "44a4c377-1914-47c7-8637-784e3296636c", + "id": "185d763e-eb69-46d0-ab44-11ee3aba6d8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146389,7 +146389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c39c5ec9-698a-448d-a855-d1049cfacbd9", + "id": "e05cae3c-cb78-4590-98ea-f57eab85c34c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146442,7 +146442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d75af5e-e415-4329-a3d2-fe35098ecbee", + "id": "98f05140-d980-426f-afd9-c9ff525fe899", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146495,7 +146495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae9b1063-705b-4c7d-9e00-d936ebb93ed9", + "id": "ad0eb9e1-6456-42cc-98c2-c17c64d2a203", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146548,7 +146548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "746c86f5-1174-4e89-8f69-4d7c6e13927f", + "id": "6a7c7838-ce11-4537-91e8-d380cbd7df73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146601,7 +146601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1651f112-93ed-4a2b-8268-60952579124d", + "id": "3eeb1b44-6d5a-49cb-b8cc-7647b5728aa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146660,7 +146660,7 @@ } }, { - "id": "30f5c23c-7391-4b62-b577-b39e334e760a", + "id": "7231e376-ade3-4e33-ab1a-cea24cf8d7e5", "name": "Bulk delete Identity Attributes", "request": { "name": "Bulk delete Identity Attributes", @@ -146712,7 +146712,7 @@ }, "response": [ { - "id": "897cd702-c073-4862-98a1-f4bffd8cf2bd", + "id": "58f85856-2f1d-478c-aa25-27ab24aac450", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -146768,7 +146768,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c6630a93-1696-4fa4-b94e-c09486da22fa", + "id": "1dd7b5c8-d630-401a-83cd-6833cd22f0ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146834,7 +146834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd977127-9e4a-467e-835e-af49cabd2f3e", + "id": "e0d95be3-8969-4425-9dac-e2f55dd78c7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146900,7 +146900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d69661aa-a5f9-410c-b4d3-3e32e84f7f01", + "id": "f3189974-ae83-49a0-92c6-eabcab447bec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146966,7 +146966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "291984b9-b22d-4027-94d2-fd43813ee953", + "id": "03645357-50cf-454e-816c-cdcff7e4f2ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147032,7 +147032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c410da55-d8b8-457a-a1c3-b47d4efc4796", + "id": "42cb828f-1b04-4147-bbf8-c9b84b8a4df6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147098,7 +147098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9dccddf-f96e-46c5-95af-a86da9f94a35", + "id": "a6985888-fa1d-4c18-bf7d-2533e18d7679", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147176,7 +147176,7 @@ "description": "", "item": [ { - "id": "e46e0453-53c4-4673-9c7d-25acdc87c34c", + "id": "cac7a608-4774-484c-902b-dd0fb340471e", "name": "Lists all the identities", "request": { "name": "Lists all the identities", @@ -147260,7 +147260,7 @@ }, "response": [ { - "id": "a8724b3b-7d3b-4edd-ad98-21be84510072", + "id": "fdb74d0c-9022-4e11-9fa6-5f20957f7905", "name": "List of identities for the customer.", "originalRequest": { "url": { @@ -147358,7 +147358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "128bc8af-afa6-49d9-81ab-54717c7137e2", + "id": "ee99f010-f519-4b16-98c4-cb43b6fa7320", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147456,7 +147456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d8868aa-2267-4fdd-92bd-642411ad309a", + "id": "72422e83-b355-40ba-b49c-edbd1988ac60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147554,7 +147554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0013089f-830a-4431-8b13-63633ae8c6a7", + "id": "94181ba7-42df-4c3c-bb7f-6e0ad8a430ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147652,7 +147652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e046d588-90bf-42b4-b7c4-6fba2467a135", + "id": "0e536517-7324-4833-a823-8561306540f9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147750,7 +147750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3e6bc75-32d0-49c3-8e13-cf64d92abf5c", + "id": "8ef3de1f-e0d9-46ca-a0cb-b23c44e04993", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147854,7 +147854,7 @@ } }, { - "id": "d6f30f63-dd7e-46a6-9be8-038922b85875", + "id": "b6f4a563-4dc7-4876-94bc-7c6901ed217b", "name": "Get latest snapshot of identity", "request": { "name": "Get latest snapshot of identity", @@ -147904,7 +147904,7 @@ }, "response": [ { - "id": "9a47aeb9-baa6-49e0-aeb9-750e9d1f5afd", + "id": "62e429f3-edf4-49d9-9b40-f91f63f892ea", "name": "The identity object.", "originalRequest": { "url": { @@ -147957,7 +147957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "980af010-d4b4-4fbd-9595-346387ee506a", + "id": "a77e4bd8-e09d-40ee-9f37-925de211bee5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148010,7 +148010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a233172-58b9-4727-ad87-1b69a84dfc1a", + "id": "50db5a24-df98-4f07-87fb-1d0d4b70a717", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148063,7 +148063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12e73b72-bba4-4773-97ba-edc32d0ee00f", + "id": "cc28d67b-38a9-4fa9-8c96-069506d77792", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148116,7 +148116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08557726-1b0c-4580-9d3f-e05fb8c12f03", + "id": "d1775e43-4434-4c7f-bce2-85404aa0f0fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148169,7 +148169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c010cf4-57e1-4137-989e-455efd4a76b2", + "id": "9d8c3ab2-cbcf-47dc-82b7-251541fc4f51", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148228,7 +148228,7 @@ } }, { - "id": "e4491be1-b410-4d19-88ca-28fb98c89950", + "id": "50121c3c-095d-4555-876e-4bcd0c65d90c", "name": "Gets a list of access items for the identity filtered by item type", "request": { "name": "Gets a list of access items for the identity filtered by item type", @@ -148289,7 +148289,7 @@ }, "response": [ { - "id": "1cb3b523-b2b0-4e34-98b9-b87718932d5a", + "id": "522198d4-047b-40fc-bfe9-a7a2913dbc80", "name": "Access Profile", "originalRequest": { "url": { @@ -148353,7 +148353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "045df743-25cf-40ff-8a4a-2e51c44afed2", + "id": "d86938bc-abe8-4158-aa2f-71e259b70aa3", "name": "Account", "originalRequest": { "url": { @@ -148417,7 +148417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84050a40-11c1-41ae-8822-05d2ae679ba4", + "id": "0c615d17-8d02-45c5-9d89-16efbd8a044f", "name": "App", "originalRequest": { "url": { @@ -148481,7 +148481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cd55ee7-8305-431b-a3e6-a0ccc8d7de10", + "id": "a4467a0f-99b9-47b7-aa53-5a94f5fba150", "name": "Entitlement", "originalRequest": { "url": { @@ -148545,7 +148545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f9393d2-0a7d-455f-9bfc-8887634db1e9", + "id": "029aedd9-1d3e-40ae-9ae7-2947d9dbe1a9", "name": "Role", "originalRequest": { "url": { @@ -148609,7 +148609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94bbc5f6-067f-4f84-b0b8-788a84b39cc2", + "id": "56f834fc-74b9-469e-91c0-d612486404b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148673,7 +148673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0025e3fb-9873-4121-a9a9-8b51a65ac3a1", + "id": "1e43aaf3-8af7-4908-b2c7-73f54425d219", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148737,7 +148737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e438dad-0ecd-4081-a465-d58c3e2f63a8", + "id": "d850891f-5d74-4b52-a0e4-d0e49cf9cd48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148801,7 +148801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb008636-62bb-4be3-8562-0de98e62fed0", + "id": "b24ab1b8-7409-498a-85b0-acd28e9897d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148865,7 +148865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14838591-d222-440f-aef2-1030d5d2de6c", + "id": "c9582a78-4737-4a1d-947f-59bc4d1a79f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148935,7 +148935,7 @@ } }, { - "id": "30c7c7e4-3a19-4721-8d21-d9f8132d544d", + "id": "1d56ebd9-b6d0-4d51-9bff-c2780cab5f4e", "name": "Lists all the snapshots for the identity", "request": { "name": "Lists all the snapshots for the identity", @@ -148969,7 +148969,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149032,7 +149032,7 @@ }, "response": [ { - "id": "15b42899-a223-4fe5-a8f4-8f72d9af6b6d", + "id": "be1c6e78-dad1-4e84-8f7a-7f373332975b", "name": "A list of identity summary for each snapshot.", "originalRequest": { "url": { @@ -149061,7 +149061,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149132,7 +149132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3e23cec-7721-4f72-9108-595dbc4fe9b7", + "id": "2e1ccae6-8dba-4e60-909b-2a74409ccd78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149161,7 +149161,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149232,7 +149232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b78ce408-1039-4acf-9986-d73f739f671c", + "id": "71f0c9f5-a1af-4e76-91c6-a204104fbf7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149261,7 +149261,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149332,7 +149332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8fad7bb-c45f-4d9e-93be-5a22ea4d0e43", + "id": "0f77c403-798c-42d3-a822-48880c6c67f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149361,7 +149361,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149432,7 +149432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5d6fc6-0337-4bf4-80ec-b4f76671c221", + "id": "117a0d7e-672c-4c29-93fc-9c01877eec35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -149461,7 +149461,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149532,7 +149532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9990cbbe-6b00-46b9-a480-a50120c9b9e9", + "id": "d5a9671b-e4e5-4e35-97e2-6a97710bec6a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149561,7 +149561,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149638,7 +149638,7 @@ } }, { - "id": "eac00053-113b-49db-b836-e8ecbacea72f", + "id": "5b5d24ad-bb30-4b70-ba78-56ec0ed7508e", "name": "Gets the summary for the event count for a specific identity", "request": { "name": "Gets the summary for the event count for a specific identity", @@ -149672,7 +149672,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149744,7 +149744,7 @@ }, "response": [ { - "id": "c3288930-d378-47d1-9875-21acee9cac6d", + "id": "0587770d-5d06-4e83-8c2c-a08b5b0c8285", "name": "A summary list of identity changes in date histogram format.", "originalRequest": { "url": { @@ -149773,7 +149773,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149853,7 +149853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f28d58a0-1d12-4c00-9474-4cd526d0f500", + "id": "1f9b4ff2-4131-4fc7-baf7-c17ab93ab494", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149882,7 +149882,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -149962,7 +149962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22048bde-4985-428c-b053-cc4550dfa48c", + "id": "8722a17c-a025-48fc-94f7-2a3b491896fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149991,7 +149991,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -150071,7 +150071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7e2d919-01c6-4988-a296-79388050b343", + "id": "d62d1000-7b4b-4e26-b466-7ebcf3e11551", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150100,7 +150100,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -150180,7 +150180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23249709-7e84-42c8-b034-320f30a45060", + "id": "b66fc7e3-584d-4274-9800-37d2349fc557", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150209,7 +150209,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -150289,7 +150289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13da3c70-a504-4204-b1d5-7785542bcc09", + "id": "2549b498-216b-44b8-8b26-212b4725e6a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150318,7 +150318,7 @@ "type": "text/plain" }, "key": "interval", - "value": "month" + "value": "day" }, { "disabled": true, @@ -150404,7 +150404,7 @@ } }, { - "id": "077b943f-dace-45ca-bc1f-940615147c6b", + "id": "7461bf0b-ac04-4e4a-a1e2-58d4606b1767", "name": "Gets an identity snapshot at a given date", "request": { "name": "Gets an identity snapshot at a given date", @@ -150466,7 +150466,7 @@ }, "response": [ { - "id": "240db03f-704f-4923-a930-e23379e37bb9", + "id": "0d2703a7-2e15-4943-aaeb-f646a7449e01", "name": "The identity object.", "originalRequest": { "url": { @@ -150521,7 +150521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cc84c68-b3de-4315-97fb-728f67aaa8a2", + "id": "6533a6c9-9f10-458b-b774-0548afabd5bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150576,7 +150576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "352180b9-bb0a-42cd-8608-c5888d399f47", + "id": "e6035127-6b25-44ba-a36b-1221cf52f940", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150631,7 +150631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c999604-ab29-455e-8b34-bac7d1a2e02d", + "id": "db970f10-6329-42ae-8971-2e948e1965fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150686,7 +150686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3355f74b-142b-4de1-88ba-eea4f401c481", + "id": "cd9e83c7-c76f-45c8-9909-3b44dbfd2a2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150741,7 +150741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d85e35e6-28ed-4881-aa07-f1d7fbeae4e7", + "id": "e9da0a8d-cdd1-4052-8b4b-54dfe1b59187", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150802,7 +150802,7 @@ } }, { - "id": "f85f2614-fecc-4db8-a43a-474789e26a21", + "id": "149ac697-6e51-4f1e-aa07-8da85cd75dec", "name": "Gets the list of identity access items at a given date filterd by item type", "request": { "name": "Gets the list of identity access items at a given date filterd by item type", @@ -150875,7 +150875,7 @@ }, "response": [ { - "id": "c9629940-6ce0-496f-a56a-810a75834e7b", + "id": "baa49d07-937f-431b-a95b-478262afa8bd", "name": "Access Item AccessProfile Response", "originalRequest": { "url": { @@ -150941,7 +150941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57109837-7398-4aa9-bab0-d74b78b825e8", + "id": "32ce72ff-005d-4cc7-a465-36df461ba47c", "name": "Access Item Account Response", "originalRequest": { "url": { @@ -151007,7 +151007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f283075-cdf3-4a46-9568-e0f9c65b16a3", + "id": "20abd8c9-8da6-4445-ba60-883d33763da7", "name": "Access Item App Response", "originalRequest": { "url": { @@ -151073,7 +151073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "380d2c76-fd54-4a2e-82a9-d02aaf96aa29", + "id": "3abd901e-7a37-4d7f-bcfb-78a6bd84217d", "name": "Access Item Entitlement Response", "originalRequest": { "url": { @@ -151139,7 +151139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1eb6e04-675c-457d-b79a-5e275f660414", + "id": "46157704-80b3-4497-8774-ea15e6bf9d5a", "name": "Access Item Role Response", "originalRequest": { "url": { @@ -151205,7 +151205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "862fcf3d-38e7-4eb1-bdac-f7ebd0d10dca", + "id": "9c66f80d-74ad-48ee-9e5e-d2692d0b9032", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151271,7 +151271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e083c69-8562-456a-8dfb-41cbf381d483", + "id": "86822795-2872-44ec-ac3c-3b2c25877141", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151337,7 +151337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1a0486f-9f8b-4426-87a8-b2e37d343492", + "id": "7f5b0b7a-d185-4c30-991e-9f387c1800d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151403,7 +151403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f584021-5d37-4411-bd89-5775515562be", + "id": "09b15d66-ea0f-4c70-bbb6-f330379564d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151469,7 +151469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9dd5905-5e4e-4e8e-a4a7-9fe6a70c6263", + "id": "04d898ca-1fbe-49ca-8ae7-78113d7060bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151541,7 +151541,7 @@ } }, { - "id": "9d54424e-63c1-4310-9ba5-aad8393cb63b", + "id": "d22e5e57-3f4f-4956-b798-fe7fe03a294a", "name": "Lists all events for the given identity", "request": { "name": "Lists all events for the given identity", @@ -151665,7 +151665,7 @@ }, "response": [ { - "id": "bee9bf68-fe64-4295-87e4-64eaa2c30201", + "id": "301ba092-77bf-43d2-81ae-e751ccccddff", "name": "AccessItemAssociated", "originalRequest": { "url": { @@ -151774,7 +151774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ef322b0-f54b-461c-8f7c-d3a3722c7365", + "id": "a3de12ca-bfa3-4ccf-8602-8288fc78f4d0", "name": "AccessItemRemoved", "originalRequest": { "url": { @@ -151883,7 +151883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "006eea16-7285-4f92-b0e3-d550425dd43b", + "id": "ef41eb8f-6ff9-4885-9a65-31976502a17c", "name": "AttributesChanged", "originalRequest": { "url": { @@ -151992,7 +151992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79f647c9-5055-4192-b7ff-d23e9dd7cae9", + "id": "feab3b23-53f0-47bf-87f3-2fb6299cf631", "name": "AccessRequested", "originalRequest": { "url": { @@ -152101,7 +152101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d97d949c-3f6d-4537-ba1d-d7032d082609", + "id": "ddaf02e7-6458-4952-a9e2-869a07bab583", "name": "IdentityCertified", "originalRequest": { "url": { @@ -152210,7 +152210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55a35278-3eb4-4154-8270-c49de92cb5f1", + "id": "c09cf00c-d487-45d6-8fe5-1b04c7bbc8f6", "name": "AccountStatusChanged", "originalRequest": { "url": { @@ -152319,7 +152319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10b790a6-a39a-4d94-a90a-0257d61d49bc", + "id": "fcd50965-3fbc-45ba-84c9-74d1de755e9b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -152428,7 +152428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecee2eef-0d00-46ae-b87c-c5ff47a3bd47", + "id": "0113c720-d3ee-4ef4-bb8e-443b69cd5032", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -152537,7 +152537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "315f660d-4572-47f0-81b3-896f578bf8b0", + "id": "b55a7032-33d9-4a6c-afb2-2faddf3efa58", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -152646,7 +152646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7aaf2e3-ce92-4de3-9160-bde9c142b3bf", + "id": "e0b43619-abc8-4504-a794-f9b1341aa153", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -152755,7 +152755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "103587e3-45c2-44e1-b58c-91496d7cf817", + "id": "0cda43d9-e7f9-4375-ac3c-cafbe42ad165", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -152864,7 +152864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebdf6178-763c-49a3-9f56-67509bde3ddd", + "id": "9d3f5385-40f9-406b-a297-7e1f8cfc2771", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -152979,7 +152979,7 @@ } }, { - "id": "15cec522-5835-404a-ace3-463627b5a5e6", + "id": "147edd12-fa8c-40f9-8acf-ed7e6acb9920", "name": "Gets the start date of the identity", "request": { "name": "Gets the start date of the identity", @@ -153030,7 +153030,7 @@ }, "response": [ { - "id": "4dd45b2c-5b9d-4ccf-88be-e4a12c8789e6", + "id": "98e36006-c645-4da5-93f6-b60bceffd602", "name": "The start date of the identity", "originalRequest": { "url": { @@ -153084,7 +153084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2896679c-ea1c-4c27-93a1-9e544ae1749e", + "id": "52daf9e4-2c5e-4da0-9c04-8ad0e90a6829", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153138,7 +153138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "519a2c3e-9acb-4f2e-a3f5-cebad4bb29bc", + "id": "896e52c3-b612-474d-9ec2-0b051cab1661", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153192,7 +153192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0d2734d-68ad-4493-9244-3733cf580215", + "id": "17b15a69-ca0f-4b66-89cf-ad3c6911113e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153246,7 +153246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0b4041b-2788-4e71-a9e6-cb9db1c12dc6", + "id": "d8d00fad-68f6-475b-92a5-fabc306738de", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153300,7 +153300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d28c43b8-e0c3-4c4c-8801-f6af40bab0cc", + "id": "df98b1b9-577e-4d59-9b64-267c53007ae6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -153360,7 +153360,7 @@ } }, { - "id": "8087fb55-9dc6-4c1f-af41-bf8b88157290", + "id": "96f8c1be-53b4-4646-8160-0133439d135c", "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", "request": { "name": "Gets a difference of count for each access item types for the given identity between 2 snapshots", @@ -153403,7 +153403,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "mollit nulla in" + "value": "deserunt voluptate sunt" }, { "disabled": true, @@ -153412,7 +153412,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -153475,7 +153475,7 @@ }, "response": [ { - "id": "0c5be1b1-f979-424e-8003-29b199b46eab", + "id": "1ff95d1d-436d-4656-b369-557ccfc0fe67", "name": "A IdentityCompare object with difference details for each access item type", "originalRequest": { "url": { @@ -153513,7 +153513,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -153584,7 +153584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b0e3eec-a77c-467a-97ae-b576a1e3275f", + "id": "3e24db97-80fe-4e5b-9ac9-616efb1185f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -153622,7 +153622,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -153693,7 +153693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58e7fd79-b28f-46b2-b1e0-b6de35d55fc5", + "id": "1c098b3d-7f0e-496a-b786-a1f0cea3a928", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -153731,7 +153731,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -153802,7 +153802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d64d5c5-4222-4dd1-93d9-0c563ee11faf", + "id": "4bbd4596-08aa-41aa-ab88-00154a40102c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -153840,7 +153840,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -153911,7 +153911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b24a4649-6da0-4302-95a0-4cb467e39ab6", + "id": "0adc57b1-32a2-4407-9c42-1628ef1230f3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -153949,7 +153949,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -154020,7 +154020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda9b833-4c1e-4966-89e1-7ca2f00d605a", + "id": "2d7ceb92-5899-4960-8945-3efaa07f1f0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154058,7 +154058,7 @@ "type": "text/plain" }, "key": "accessItemTypes", - "value": "voluptate a" + "value": "enim" }, { "disabled": true, @@ -154135,7 +154135,7 @@ } }, { - "id": "9235ea3a-5cfa-4327-a4ed-1f914785a8c6", + "id": "186616b9-143f-46d9-88ec-8df0b396c194", "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", "request": { "name": "Gets a list of differences of specific accessType for the given identity between 2 snapshots", @@ -154256,7 +154256,7 @@ }, "response": [ { - "id": "a94cb628-64f2-495f-8ff5-03e08bdb4edb", + "id": "53898cc0-d3ea-478b-9646-b9f34c4c7e55", "name": "A list of events for the identity", "originalRequest": { "url": { @@ -154366,7 +154366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "661b6ecc-8c77-4397-bb8f-3749fab3ffff", + "id": "9cf1c5d3-d050-483d-97c5-1341b781ae79", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154476,7 +154476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "945108be-6f63-4b9c-95a4-d67e4c7a310e", + "id": "ceca800b-eb1a-4e95-b9ed-1da3f522a2a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154586,7 +154586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "595bb8ce-2baf-4c8a-83da-9ae020ea7744", + "id": "a7f53f00-2977-47d0-9f3f-d1c70690eeaf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -154696,7 +154696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9504ea6-8165-4aee-b905-c0eb2b81841d", + "id": "3abbafb4-8acb-4ee3-b509-d5dc4fe7ca2d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -154806,7 +154806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a06f7f76-44d6-49a1-b544-79f77baf169a", + "id": "c41959b6-fe17-4a35-aa2b-219669c40e62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -154928,7 +154928,7 @@ "description": "Use this API to implement identity profile functionality. \nWith this functionality in place, administrators can view identity profiles and their configurations. \n\nIdentity profiles represent the configurations that can be applied to identities as a way of granting them a set of security and access, as well as defining the mappings between their identity attributes and their source attributes. \n\nIn Identity Security Cloud, administrators can use the Identities drop-down menu and select Identity Profiles to view the list of identity profiles. \nThis list shows some details about each identity profile, along with its status. \nThey can select an identity profile to view its settings, its mappings between identity attributes and correlating source account attributes, and its provisioning settings. \n\nRefer to [Creating Identity Profiles](https://documentation.sailpoint.com/saas/help/setup/identity_profiles.html) for more information about identity profiles.\n", "item": [ { - "id": "61955521-0e79-4636-a275-64b590125e3d", + "id": "d8551d7a-e1f4-411f-bd1c-0d73377fc143", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -155003,7 +155003,7 @@ }, "response": [ { - "id": "a7960f35-3fb3-4d0f-87b9-71c6cbaf10f2", + "id": "5282bc9e-6d1d-493e-bf56-27eda0a356d3", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -155092,7 +155092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eea9586-a784-4cfb-9a6b-bbb02bac45aa", + "id": "e8cc4ee0-0a89-43be-bfe6-82c3c0d38710", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155181,7 +155181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2bd5a49-bcdd-42ff-bafc-79e9ee798c32", + "id": "3609afe6-70e4-4043-9ce2-872cdb4bf3da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155270,7 +155270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9125e8f2-3ac6-4d52-9dc7-b48f49a889f2", + "id": "0c3f24e5-7b34-4e37-9f9d-7a7d85371b02", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155359,7 +155359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57e6c5a8-dc43-4177-ad56-de55cb5a8608", + "id": "6b388e7c-f5ad-4c3f-99a2-c1e6fd467fed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155448,7 +155448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01ef1982-64f6-44f7-8e8a-20da03cf4535", + "id": "a5b254c1-f561-4e36-a20a-0e8a8b250191", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155543,7 +155543,7 @@ } }, { - "id": "05386292-05d3-4920-a896-f499fc49c516", + "id": "7659fa0f-c077-4d13-b58b-16d2db25cd95", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -155585,7 +155585,7 @@ }, "response": [ { - "id": "ebf5c9bd-c798-4c68-ab7b-bc52c0b325c2", + "id": "3c433463-b749-4c6d-9eb7-c1a5978f8932", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -155641,7 +155641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "776ff5e7-0c47-49f1-a1a2-97caac54f1e6", + "id": "08bed198-17ff-4fab-bd01-909d9a21cff7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155697,7 +155697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7ecbbae-fd6d-480a-802e-3a3b64dde850", + "id": "384e27c9-fc2e-4ed7-9a18-531d0dfd7f9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155753,7 +155753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb110264-6a1c-4ebb-8c84-4a7a24b7e2d0", + "id": "531eab17-9f92-4c05-966a-1def6b68d354", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155809,7 +155809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50fbe698-fb73-4d03-9abb-6f03e21eefe0", + "id": "3c827211-ebb6-4a15-8bd2-28066884e3b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155865,7 +155865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88433bf7-25ed-4b39-8954-c9aaefb3dd44", + "id": "12122565-2e3e-4f12-be95-e6e544b5c4bc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155927,7 +155927,7 @@ } }, { - "id": "30fa94f9-026e-4cd0-b486-4bfd742b8767", + "id": "bebcb81e-c9c2-41b9-9a14-bb89e7553ab6", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -155970,7 +155970,7 @@ }, "response": [ { - "id": "6422e50f-1b62-4d00-be5d-ebfb4d4c7013", + "id": "ef0a0463-5f62-4c0d-bac5-7d157c55d988", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -156022,12 +156022,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2007-02-12T07:04:28.225Z\",\n \"launched\": \"2012-10-18T11:25:03.036Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2003-02-28T11:08:28.830Z\",\n \"launched\": \"1991-08-26T18:06:34.312Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e1de694d-5104-4fed-9829-155c0c37ac12", + "id": "ed049a6f-939f-44e6-9624-4de825ccab97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156084,7 +156084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a738964e-e697-466c-a2b2-e7e9abf1afbb", + "id": "1d3d0723-7a75-4d20-a909-e774d62be87f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156141,7 +156141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85361600-e632-44ef-9350-35d135e39633", + "id": "7b90ba1d-b957-4298-9c0d-c1c9e8373ec3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156198,7 +156198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bf29e87-87be-4173-908d-f12213c0a2e2", + "id": "25617c07-2246-4fe2-bcb7-3ac4a25f39a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156255,7 +156255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "801204ca-b572-4187-8557-0b9fc054b09f", + "id": "fe255329-ca54-4483-8d5c-82accf2b3324", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156318,7 +156318,7 @@ } }, { - "id": "63ed4013-c0cc-4591-b849-fd20891d1dea", + "id": "678935ff-6f9c-4ecf-99c5-35410b8b02ca", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -156394,7 +156394,7 @@ }, "response": [ { - "id": "2a358a94-689e-4828-98b3-18a6469ac398", + "id": "1a5ccd1a-d701-48f2-b4bf-9a6ff94c087c", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -156484,7 +156484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9211bd9e-b849-4fb4-a5b8-4070d5e2fef4", + "id": "817c7d27-c692-419a-8760-128452499b98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156574,7 +156574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b03bf760-a524-4377-8ee9-6e60fcc5764a", + "id": "faf2d455-36be-456d-87c1-2a899eafc773", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156664,7 +156664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "521254f6-d045-49d5-b74f-a7e173cce16c", + "id": "0480cb3b-7750-48e4-a861-2a2b37a64b97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156754,7 +156754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cda8d43e-a1dc-4825-861f-11aa6450386e", + "id": "7e0d26a7-cd65-4f30-961a-6695fb860467", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156844,7 +156844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0318d096-f552-43f2-a171-b2f56734c168", + "id": "fa6255e3-6473-4aee-8497-94adc242142e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156940,7 +156940,7 @@ } }, { - "id": "08b54151-c004-4583-bc7a-6a064612f38c", + "id": "38d9ec1a-a628-4226-98e5-06b207735c2a", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -156983,7 +156983,7 @@ }, "response": [ { - "id": "097ef1ab-a75f-4910-949f-2daf5502a5a9", + "id": "e14b2a93-6f8f-4847-b9fb-6e8e4c7bea96", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -157040,7 +157040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e10dc72-242c-47a6-9f8c-5a4d578cbc8a", + "id": "f493a87d-68cf-422c-af50-0dde04412015", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157097,7 +157097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50a44c80-e780-4c39-a69a-61ab26164c98", + "id": "1572fe19-64d1-4cac-ac31-76a60a4c9785", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157154,7 +157154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c2d1795-cff5-42b4-94de-bfce38b1da5c", + "id": "f5e96456-3293-42ba-844c-3027edad0e81", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157211,7 +157211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee9d81ce-38bc-4e04-b70b-9c58d5168288", + "id": "d0995989-3c4a-43c1-a35e-0bdec3087d99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157268,7 +157268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa377477-1757-4706-a9b5-cf99c4c4541f", + "id": "01b2de2e-a645-42fb-819d-3140eb37f912", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157331,7 +157331,7 @@ } }, { - "id": "f5ecbc03-7d5d-4203-ba75-88944a06da21", + "id": "42993f18-33b9-4ae0-b631-5477ce2bd246", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -157372,7 +157372,7 @@ }, "response": [ { - "id": "e6f22661-ebb5-47f3-a3a8-ed5f0dbb9c64", + "id": "feafc642-93d2-466e-9e06-59ca1cbf3780", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -157416,7 +157416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "394a0f29-1879-4d71-9214-d1e843a166c5", + "id": "1f62235e-c8da-4b15-a789-4420fa4a4d68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157460,7 +157460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1994202b-0372-46f6-a9cd-a1fcdc77dbad", + "id": "e363b6b4-f7b6-47c6-b499-0a8f51549abe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157504,7 +157504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1bfaae8-ccc7-42cd-bb32-3adfccac4df3", + "id": "832fc010-accb-4c92-875e-9f6f0170401f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157548,7 +157548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d982eba-b54b-4bce-8eb4-7dcb2ea4c15f", + "id": "177f2df6-e4c7-4735-9977-ac4c8d50db18", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157592,7 +157592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49a1114a-45f9-49b7-b5d9-119ca5e34e7f", + "id": "84ae24a1-5e6b-4621-b569-ec84378f7ffa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157636,7 +157636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "447da3f9-8ae2-42d9-97ea-80a77139ddb1", + "id": "76197a99-6e97-4caf-81c9-6fd5db10f3cb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157686,7 +157686,7 @@ } }, { - "id": "485242ca-36ad-4ba2-ab98-d556fc571f8e", + "id": "6fa3b256-84e2-4bcc-a2c3-cda823913bce", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -157727,7 +157727,7 @@ }, "response": [ { - "id": "116e1852-086e-47fe-9a17-36cf99862444", + "id": "3bde3557-4b09-4197-b7cf-edf37a4b245c", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -157766,12 +157766,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1968-04-16T18:27:23.263Z\",\n \"launched\": \"1984-07-11T21:50:37.090Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"2021-01-27T08:17:32.636Z\",\n \"launched\": \"2004-06-18T17:52:10.889Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "c1322529-c10b-475d-b65c-8dce27ce38c9", + "id": "4cbb1f7a-e6e9-4969-a568-af2306ea9530", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157815,7 +157815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63270768-cb9c-4615-8dce-69f1d8cb8204", + "id": "5c8fd66e-0e68-4dc5-a1c1-6077dd40f42f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157859,7 +157859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a73201f5-ee10-4863-809a-375999cc2c79", + "id": "e2f742b1-ddc0-44a2-9c92-3b07c1299408", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157903,7 +157903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8e85e9f-1c52-4ead-913a-914aebd55254", + "id": "8a213d10-a26f-40e0-921a-da0a44b2715a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157947,7 +157947,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f22679a0-0663-4685-8b47-38d8ccc82ce4", + "id": "2060d03e-9eb8-455e-913e-1d85af1154df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157991,7 +157991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9be8fbed-afc3-4b35-a717-83a7bbc434b8", + "id": "7449b872-9766-4913-a842-e955091101a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158041,7 +158041,7 @@ } }, { - "id": "786b7611-43a1-45df-a2f7-da4434f5dc22", + "id": "d7f3bbec-3bb7-4c53-9c61-2c5912fa85f7", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -158095,7 +158095,7 @@ }, "response": [ { - "id": "15ff6cdb-6542-47f4-b393-e513eaa01af4", + "id": "08feb84f-e335-4174-9523-adbd627d685d", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -158152,7 +158152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8234b2f1-d88b-489e-8e0e-f2fbc98375ae", + "id": "cc58d3b0-47db-42a5-8724-4b3191561f68", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158209,7 +158209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "487ffdb6-fc5b-4cde-9cc0-f8c903d6ccb1", + "id": "9c0bb690-c2be-4884-a7fe-ef229babf532", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158266,7 +158266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a256e959-29fe-492f-8c9a-a09daecbfe1e", + "id": "b513fce7-9c15-46ea-86d5-6ebbe7139316", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158323,7 +158323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3214928e-1cfa-4c69-8a1c-21c0b55d7b1c", + "id": "d29a622d-cbaa-4ac5-83b9-1ff82f70be2b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158380,7 +158380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc8b5e09-9d69-46db-9576-1697a5541a11", + "id": "4b150eb7-f56f-4fed-ae88-78a40e2d649f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158437,7 +158437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b06ac21-f719-4778-b4ec-364769fede18", + "id": "d94d6acd-3ba3-4fb5-91d9-fd5a22c1cd3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158500,7 +158500,7 @@ } }, { - "id": "65c808e4-917e-40f5-9ed8-a0aed910e3b1", + "id": "808c4ed3-25f7-4070-9d8a-922f7c3fbda9", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -158542,7 +158542,7 @@ }, "response": [ { - "id": "40fd5ac2-1d3e-4bae-a039-a4ea637c665b", + "id": "383bad6b-b2ae-4306-9cb2-c5204e3df3ad", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -158587,7 +158587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b9aec6d-73a6-489d-ba60-39beff823436", + "id": "5cf02708-c31f-4685-acc9-5ddf0b564132", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158632,7 +158632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "625ec61d-8efa-4889-a8b4-336546e625cb", + "id": "872fcfe8-5d0c-4eee-806b-82205c3e4b5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158677,7 +158677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06733544-3119-4c65-92bc-424cc55afd87", + "id": "45eb9ccf-d429-45e8-bd33-bd8c9b8fe58b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158722,7 +158722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d71aecb-cf00-48d6-a3cf-05e931fb234f", + "id": "e165429e-e3eb-49b9-a137-281b7b8415f1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158767,7 +158767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ece3d08e-b192-45d5-b44e-4413e89c34ee", + "id": "be7e600e-dd3b-468f-a46d-074c41f421ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158812,7 +158812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44c27b51-09d4-4021-8848-a67369cf523f", + "id": "8196b3bf-3832-40bb-85ae-a4ca69ffdacb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158863,7 +158863,7 @@ } }, { - "id": "61942cee-b08e-4513-bdcf-fdb57e717341", + "id": "1989222d-cbc1-4c12-b927-433255a7a166", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -158905,7 +158905,7 @@ }, "response": [ { - "id": "9ceb186d-6f1f-4b12-834a-82779a21b541", + "id": "d01b9e76-ae56-4ad4-8788-636f619c53eb", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -158950,7 +158950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "759da8ac-af3f-440f-bd84-0b3f8711ce29", + "id": "2a6282c0-fcaf-4cad-8a20-f2369093f3cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158995,7 +158995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faa4ed4a-6f06-4987-ab12-1f5d049faaaa", + "id": "27d7a42b-a2ca-4048-b926-3c42d3f394bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159040,7 +159040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1858c99b-f0b2-456e-9952-ff8fd6f29e60", + "id": "d51c1ceb-d978-4fe6-8625-0552b54b7085", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159085,7 +159085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b85ca020-384f-44b5-a52c-fa3366b68772", + "id": "4395e3af-2fa7-4fc5-b5cf-09527d14facd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159130,7 +159130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd25e78-d61e-4630-8ff6-3f3a7df0e6a2", + "id": "0c7e23b1-f269-45af-bc21-a0867bb872cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159175,7 +159175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "210f58b2-6016-496f-90d4-ae3892dceb1b", + "id": "270afcae-984c-4a82-a2d8-6fe8fa543bd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159226,7 +159226,7 @@ } }, { - "id": "6efd6c2d-8301-40b9-a778-0491d07da0be", + "id": "5a49bf06-f442-43ee-a047-c50f63b79b29", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -159258,7 +159258,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159269,7 +159269,7 @@ }, "response": [ { - "id": "43b03b1a-8ea4-4549-a7e6-ea548bbdc5f8", + "id": "a0b3ac38-7939-4d39-ae49-613c5c55fc92", "name": "A preview of the identity attributes after applying identity attributes config sent in request body.", "originalRequest": { "url": { @@ -159304,7 +159304,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159326,7 +159326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c98cc367-f243-47b7-8193-5ffa947412f0", + "id": "16f98206-b75e-4a89-b31d-fbc2866a7804", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159361,7 +159361,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159383,7 +159383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f405a27-721c-4c10-ab25-6054362ef307", + "id": "99a7a914-3ed5-432c-92eb-4b15bc8b7ab3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159418,7 +159418,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159440,7 +159440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "131feee4-7dd1-4689-b860-8190e9a5465d", + "id": "69d39111-3f1f-496a-b80b-4034409db6c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159475,7 +159475,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159497,7 +159497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9390e417-bcd4-4661-bc9e-1db939c6b2d2", + "id": "7f1b9016-1308-457f-82f4-1584f0a1d841", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159532,7 +159532,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159554,7 +159554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6279bd47-f5db-497f-ba96-a6fe235bb722", + "id": "5ad448fe-5081-4610-979f-bd2802aa5f14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159589,7 +159589,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:b082486f-7d73-1789-e4f0-1b5ec5543fc3\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"urn:uuid:aaba535f-cca6-7227-4963-2e51d2a97d0d\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -159623,7 +159623,7 @@ "description": "Use this API to implement and customize lifecycle state functionality.\nWith this functionality in place, administrators can create and configure custom lifecycle states for use across their organizations, which is key to controlling which users have access, when they have access, and the access they have.\n\nA lifecycle state describes a user's status in a company. For example, two lifecycle states come by default with Identity Security Cloud: 'Active' and 'Inactive.' \nWhen an active employee takes an extended leave of absence from a company, his or her lifecycle state may change to 'Inactive,' for security purposes. \nThe inactive employee would lose access to all the applications, sources, and sensitive data during the leave of absence, but when the employee returns and becomes active again, all that access would be restored. \nThis saves administrators the time that would otherwise be spent provisioning the employee's access to each individual tool, reviewing the employee's certification history, etc. \n\nAdministrators can create a variety of custom lifecycle states. Refer to [Planning New Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#planning-new-lifecycle-states) for some custom lifecycle state ideas.\n\nAdministrators must define the criteria for being in each lifecycle state, and they must define how Identity Security Cloud manages users' access to apps and sources for each lifecycle state.\n\nIn Identity Security Cloud, administrators can manage lifecycle states by going to Admin > Identities > Identity Profile, selecting the identity profile whose lifecycle states they want to manage, selecting the 'Provisioning' tab, and using the left panel to either select the lifecycle state they want to modify or create a new lifecycle state. \n\nIn the 'Provisioning' tab, administrators can make the following access changes to an identity profile's lifecycle state: \n\n- Enable/disable the lifecycle state for the identity profile.\n\n- Enable/disable source accounts for the identity profile's lifecycle state.\n\n- Add existing access profiles to grant to the identity profiles in that lifecycle state.\n\n- Create a new access profile to grant to the identity profile in that lifecycle state.\n\nAccess profiles granted in a previous lifecycle state are automatically revoked when the identity moves to a new lifecycle state. \nTo maintain access across multiple lifecycle states, administrators must grant the access profiles in each lifecycle state. \nFor example, if an administrator wants users with the 'HR Employee' identity profile to maintain their building access in both the 'Active' and 'Leave of Absence' lifecycle states, the administrator must grant the access profile for that building access to both lifecycle states.\n\nDuring scheduled refreshes, Identity Security Cloud evaluates lifecycle states to determine whether their assigned identities have the access defined in the lifecycle states' access profiles. \nIf the identities are missing access, Identity Security Cloud provisions that access. \n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for Identity Security Cloud to send whenever an identity with that identity profile has a lifecycle state change. \nRefer to [Configuring Lifecycle State Notifications](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#configuring-lifecycle-state-notifications) for more information on how to do so.\n\nAn identity's lifecycle state can have four different statuses: the lifecycle state's status can be 'Active,' it can be 'Not Set,' it can be 'Not Valid,' or it 'Does Not Match Technical Name Case.' \nRefer to [Moving Identities into Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#moving-identities-into-lifecycle-states) for more information about these different lifecycle state statuses. \n\nRefer to [Setting Up Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html) for more information about lifecycle states.\n", "item": [ { - "id": "10c6dd12-f536-418d-8948-3ea85ef02c7b", + "id": "7b156866-6395-4986-9460-df42536e6ce0", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -159678,7 +159678,7 @@ }, "response": [ { - "id": "4d138a32-43b5-4c44-8b63-5e8971705ae0", + "id": "a4aea6a7-a8b5-43a5-9a1b-a6987d06742d", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -159736,7 +159736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ad60a3-682c-4c88-9be2-4e23a10f207d", + "id": "d78fdf74-8095-4685-9d11-d8dbb2453154", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159794,7 +159794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19507220-57cb-4805-83c1-17d172e2c94d", + "id": "20c755c0-b3df-4bf7-82c7-3e471659d1e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159852,7 +159852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f18c324d-b124-4c2f-b73a-15da6f9cf345", + "id": "8f29f878-92b0-412c-9efd-f99e143cc7df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159910,7 +159910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58906f56-c8e7-4cec-bc60-dd4a98ed7157", + "id": "fa260c69-bb79-493f-9d1a-3d1b6f8cd3ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159968,7 +159968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "027cd7e2-0458-4057-8b59-5ae6912d8928", + "id": "5e6106e3-ef70-4607-8c90-361186b429cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160026,7 +160026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8799206-abd1-4c2a-a6ff-3081875dcc21", + "id": "9f747f7d-8cf2-44cf-938b-fc904cf7879a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160090,7 +160090,7 @@ } }, { - "id": "2605093d-9180-463e-bbea-3978d6d31a4a", + "id": "8cee776a-0705-4a0a-a59a-933d617e2f0e", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -160169,7 +160169,7 @@ }, "response": [ { - "id": "ef39f7a8-e2eb-4992-bdce-49ec4fd00348", + "id": "a6571459-4083-426a-9090-7b8a41dd61c4", "name": "List of LifecycleState objects.", "originalRequest": { "url": { @@ -160251,7 +160251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e810a56-02c7-402a-8f16-2758f9341982", + "id": "41081f1e-fa09-482e-ad17-fa0cd56eb4b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160333,7 +160333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1f59fb7-636c-4b0f-aa99-36d46967390d", + "id": "7719f148-c3e8-4cff-bbf9-b123414e7a4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160415,7 +160415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d40d634-2524-47d7-a8fb-5a9dd85b2aba", + "id": "8a836e54-da78-4745-84f7-f8a33e529940", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160497,7 +160497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d784c9f3-b0ab-4497-9550-490e9a984c73", + "id": "386934d0-c07a-4429-9f4a-2bac2cd78a31", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160579,7 +160579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0297445c-5e81-4b1c-9274-90e2d3b085f0", + "id": "76746538-0c86-4bd4-8b3f-5d86bc993cea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160667,7 +160667,7 @@ } }, { - "id": "aeaddb7d-06e3-484f-ad69-271eb32145be", + "id": "4f3e6811-1a8e-4cf9-9251-66a8ba6830c1", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -160722,7 +160722,7 @@ }, "response": [ { - "id": "9564942f-307f-4d12-992d-ec15eedc6ecc", + "id": "337d2397-e126-447a-9c68-b729170293d8", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -160780,7 +160780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1a9f43f-f36b-4f86-859c-5be1ab3baca0", + "id": "31bda338-44a7-45ad-ba49-866a3e19888d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160838,7 +160838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32887ad0-830b-41a4-ac45-78b5f2fec839", + "id": "5f02a9a4-7fec-4cf5-a930-6bcacbb5bd1d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160896,7 +160896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc3fbac4-fa73-4ee8-8882-8dfe4ac67489", + "id": "6e6179e4-5cac-409a-ae61-e22487694f0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160954,7 +160954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "779e062b-f036-47f2-a1a2-967dc57559a1", + "id": "56e0a986-0b56-41ae-8469-6b2cd16f846e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161012,7 +161012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "242d415e-cd6b-430a-b9c3-172b81e00aaf", + "id": "af456574-541f-43c3-8843-25b4ab7a4365", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161076,7 +161076,7 @@ } }, { - "id": "7946e178-38c9-4747-b410-0a7add6c229e", + "id": "42554f82-0bde-44a8-9c06-e8a30f7468f8", "name": "Get Lifecycle State", "request": { "name": "Get Lifecycle State", @@ -161129,7 +161129,7 @@ }, "response": [ { - "id": "ec9b96d7-2478-4b35-b922-4bcb1d0a72ae", + "id": "9ec1b4b1-1a26-4284-889d-bca0812fe03e", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -161175,7 +161175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ff13c63-a9bf-4761-a2d4-ac23c34243d5", + "id": "ef5a06a4-d8f5-45da-86ea-8bbedcbaa322", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161221,7 +161221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90820d96-9540-4c3b-b109-e3c76ef088b8", + "id": "0fb1fda7-3c24-4556-83d1-e8926d244052", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161267,7 +161267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a0859e3-603e-436a-942c-29d56d9f5db4", + "id": "482d7588-3cbd-4ef3-89cd-486d6379f564", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161313,7 +161313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b665410c-2833-42c6-9a46-b1fb3e88d518", + "id": "33fa6b66-a651-441a-a386-372f34576107", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161359,7 +161359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "753c8aa8-b6ff-45b2-857d-d10ca4c82f73", + "id": "08f5acbc-3f2e-4985-8d8a-c3db7ecb538e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161405,7 +161405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77b007f7-4f05-4e06-892c-32fc880dea5b", + "id": "7a5c7595-8745-49b7-b55f-c10fc39d82f7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161457,7 +161457,7 @@ } }, { - "id": "31cd18d2-701c-4992-946e-fe2acc32578f", + "id": "5b729900-7a93-4949-9499-492a3560e3b5", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -161523,7 +161523,7 @@ }, "response": [ { - "id": "0055ce31-af2e-471d-b35d-3b0077942304", + "id": "a531d8a3-c279-4066-956d-ce647250084f", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -161582,7 +161582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24cafc69-2cf0-4f98-bab3-ba929569b208", + "id": "8de92ff3-1552-4ae3-9d06-26a2dcc5f844", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161641,7 +161641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "624fc34c-2faf-44d0-a508-97fd42e0a4cf", + "id": "e0258131-1727-4533-b667-f5c4f772d920", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161700,7 +161700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df2de33e-55ee-47b2-8555-21055f86ffd8", + "id": "20703a41-fcb3-4ad0-9bb3-3236714540b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161759,7 +161759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36dd419b-b26b-4789-b9de-fdc70417dfae", + "id": "77718bf7-8a14-483d-afd0-bfccc2fac1e4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161818,7 +161818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "302f596f-a79a-45ec-84a7-6d0625d7e32c", + "id": "b4a25860-70ce-4584-97fd-c77ea5e846f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161877,7 +161877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfb0ace3-d446-43f3-8449-f027f8325be7", + "id": "d0b1982d-a68b-4aa1-8f98-16c6a2953838", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161942,7 +161942,7 @@ } }, { - "id": "95faaf49-8b94-4ffb-8b1c-ffd5c8d05fc7", + "id": "0bb320f9-3422-4655-95eb-3a44b11e0a30", "name": "Delete Lifecycle State", "request": { "name": "Delete Lifecycle State", @@ -161995,7 +161995,7 @@ }, "response": [ { - "id": "fb32199d-fb43-4bf1-831e-f146d7fe229c", + "id": "2bf66b2d-bda7-43ae-918b-34457d9da567", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -162036,12 +162036,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"ex aliqu\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"nisi\",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6502ed29-1f98-4952-9027-6a4d5e49f90c", + "id": "b9290463-884d-44ad-bcf5-91d37ae4865d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162087,7 +162087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9134ffc-e2a4-4075-aeff-f7716e063023", + "id": "6d628c22-28ea-4483-90dd-a18714de9c3e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162133,7 +162133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d52fcc4-a278-42a5-a16a-49c4623cb060", + "id": "d8d6e3eb-07ed-46e8-8483-af8b87dcb510", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162179,7 +162179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c4d54cd-da73-4ead-931b-414eec168790", + "id": "f3c89db8-3d82-48fc-bea4-16d8d903596f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162225,7 +162225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87f0aed3-dcae-4fae-9984-27ed1b9a4470", + "id": "df738c7a-73dd-4b94-bb47-9d92ceeda303", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162271,7 +162271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3dbc925-719d-4344-9528-7a3160059d12", + "id": "23118b96-2a07-4993-b127-6ebe11594c18", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162329,7 +162329,7 @@ "description": "Read and create operations for client data and statuses", "item": [ { - "id": "ee0ac913-ecd4-46f3-99f7-33faf4321764", + "id": "14f749a2-e1ce-4167-b470-7ad417316377", "name": "Get Managed Clients", "request": { "name": "Get Managed Clients", @@ -162395,7 +162395,7 @@ }, "response": [ { - "id": "1cbc84ec-b775-4955-8e35-3bde85df7781", + "id": "d854a95b-22f9-4f90-a897-fd624112da3e", "name": "Responds with a list of ManagedClient based on the query params provided", "originalRequest": { "url": { @@ -162470,12 +162470,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"veniam\",\n \"cookbook\": \"ut\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"mollit sit\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n },\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"do nisi quis\",\n \"cookbook\": \"ut elit\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"aute Ut est ad\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n }\n]", + "body": "[\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"in veniam laboris exercitation\",\n \"cookbook\": \"dolore sint ex aliquip magna\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"deserunt voluptate quis\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n },\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"occaecat amet\",\n \"cookbook\": \"anim nostrud\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"enim cupidatat cillum\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "2b3f752f-8eed-4b60-b138-8a54488a38d4", + "id": "43713105-3324-4570-a0d6-bfec6cb1e095", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162555,7 +162555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a0c52dd-21be-402f-b7cb-d673b954d247", + "id": "225cc2be-4dbd-42ad-af85-15eae4e565f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162635,7 +162635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb698965-9349-425f-b1fe-784c4d992bf3", + "id": "b0231b25-c7e5-4b39-83e6-3e8c4d4a7059", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162715,7 +162715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f9ed53a-8f6b-4e36-b742-a561c25364bf", + "id": "93a5df16-c99b-454c-92f7-87ea62880a41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162795,7 +162795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "717be381-f46b-407d-9b24-efa2e6c68f1b", + "id": "3ddf0c0e-b8d7-4c8d-8d64-055abc6454f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162881,7 +162881,7 @@ } }, { - "id": "059ce77c-cc45-4c60-b5fa-f583970fd7a4", + "id": "07813f13-4bce-42cf-806c-d27dce68da7a", "name": "Create a new Managed Client", "request": { "name": "Create a new Managed Client", @@ -162923,7 +162923,7 @@ }, "response": [ { - "id": "25b754dd-65ee-4cec-8587-7f9eadfb6d7e", + "id": "cac1a0f7-9704-4c89-b79f-16e2c7072796", "name": "The created ManagedClient", "originalRequest": { "url": { @@ -162974,12 +162974,12 @@ "value": "application/json" } ], - "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"officia culpa\",\n \"cookbook\": \"cupida\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"culpa ipsum\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", + "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"aute aliquip laborum adipisicing\",\n \"cookbook\": \"ullamco\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"enim sunt aut\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3dfbc6e8-ee65-4ca8-994c-a1ab5097f3ae", + "id": "9e855146-3313-4661-9d8c-3c5ac38636e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163035,7 +163035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b8692b9-ec61-4c20-b038-376961811bf7", + "id": "53ef6eb9-2764-4c80-85f0-80b937a1dcb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163091,7 +163091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "852ceb3c-eea7-4c2b-aebf-450c57f5ca6b", + "id": "2dc46bf1-42f2-46a3-8021-0da4f5e61d11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163147,7 +163147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b86df649-2693-4b70-8296-4b1ba8821378", + "id": "3065f0fa-a857-415c-b7da-6216e8b3b898", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163203,7 +163203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac34799d-7b57-4186-8aad-3dffced711aa", + "id": "302a8e18-9021-47a1-b376-52fa9fb67646", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163265,7 +163265,7 @@ } }, { - "id": "86f42180-3af7-4954-b329-1c18b0214985", + "id": "fb50e9b8-099e-4758-969f-8e5b51a5ba5d", "name": "Get a Managed Client", "request": { "name": "Get a Managed Client", @@ -163306,7 +163306,7 @@ }, "response": [ { - "id": "5dba28c8-c8eb-4fdd-a403-e56cfb229d11", + "id": "aa4ece33-a9a1-4f4d-bfd7-78433fbab531", "name": "Responds with a Managed Client", "originalRequest": { "url": { @@ -163345,12 +163345,12 @@ "value": "application/json" } ], - "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"officia culpa\",\n \"cookbook\": \"cupida\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"culpa ipsum\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", + "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"aute aliquip laborum adipisicing\",\n \"cookbook\": \"ullamco\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"enim sunt aut\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "ff538950-e7a7-4deb-babe-7a096956e0bb", + "id": "29b1e222-4a17-4b20-9897-c69956f1695f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163394,7 +163394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df3b3ddb-8ad3-423d-9418-74781929bc75", + "id": "31741e74-1f9a-43a6-b64d-f08f2a20579f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163438,7 +163438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bffe1a2c-5147-4d73-a13d-9d963cceee52", + "id": "fe871ed9-fe75-47af-82a5-45a77e478e63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163482,7 +163482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aef16b0-eb8e-43aa-8327-31d62b59da3c", + "id": "d79b45f6-4f4c-44a0-881b-9df514a36598", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163526,7 +163526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02a18635-5602-4d9b-a875-633e4a426809", + "id": "c7effd76-e90d-45ce-a140-12090627340c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163570,7 +163570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7582aa7a-fe9e-437e-a908-d6fee5ff764c", + "id": "86357abf-674b-4dee-80aa-ac1b9983101f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163620,7 +163620,7 @@ } }, { - "id": "9919f1e8-a16f-4091-a4f0-eb45458f7002", + "id": "6c4ba819-044d-4679-aaf4-8b069fe87047", "name": "Update a Managed Client", "request": { "name": "Update a Managed Client", @@ -163674,7 +163674,7 @@ }, "response": [ { - "id": "fd3d8a5f-7b50-462f-a9fd-bed5648cc983", + "id": "732b9f9e-a08b-4642-a14c-bf8ae2f269c0", "name": "The updated Managed Client", "originalRequest": { "url": { @@ -163726,12 +163726,12 @@ "value": "application/json" } ], - "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"officia culpa\",\n \"cookbook\": \"cupida\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"culpa ipsum\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", + "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"aute aliquip laborum adipisicing\",\n \"cookbook\": \"ullamco\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"enim sunt aut\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "36ea1315-c2e6-4cb9-9d58-a20ca8cc69b7", + "id": "ee0dd7a4-a422-4d70-9e84-9aede9c12505", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163788,7 +163788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f24c24b-61ff-4bd1-b331-c154756f8c3b", + "id": "b53c0dff-2fa3-472f-af8f-32e57edb2c4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163845,7 +163845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d746c68-8737-4509-9fce-0c6c24617e5b", + "id": "4f9698d3-2e07-4500-b152-9f89beeb4026", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163902,7 +163902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ac89fb0-c7d8-4d7b-8d56-80652438191b", + "id": "d363515f-e06f-4ec5-aa46-59101db52a71", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163959,7 +163959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0de54e0e-a987-4b1d-82bb-c67d369d176e", + "id": "ab69338d-b6bd-4d28-8173-172e62e7e2d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164016,7 +164016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca9b9981-88da-45a1-8cba-cfb9a164caf8", + "id": "cd8135bf-5247-4f9c-99b0-55f71e065a34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164079,7 +164079,7 @@ } }, { - "id": "0937b491-7afe-479a-ae27-f61548029e8b", + "id": "e46f7ef1-c9f5-4587-8274-bc925fc6eff0", "name": "Delete a Managed Client", "request": { "name": "Delete a Managed Client", @@ -164120,7 +164120,7 @@ }, "response": [ { - "id": "1e301df2-1eb9-4ee6-8442-0ab4eb4653de", + "id": "41a821f4-595a-48f7-89c7-8c4d3194e1ad", "name": "The Managed Client was successfully deleted.", "originalRequest": { "url": { @@ -164154,7 +164154,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b319cd94-998c-493a-a712-f737cbffdb73", + "id": "62949c4b-c7a5-486c-9327-dc16266da2b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164198,7 +164198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13c71010-db31-4c29-9245-b45f4b304d6c", + "id": "da41b7a6-44b7-475c-98eb-8213baaed8b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164242,7 +164242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b448403-a3a1-40b3-b6e6-059c99074227", + "id": "dd71639c-b04e-4bbf-8b27-92b4fd82e73e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164286,7 +164286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66f57d00-94a6-4bdf-a424-a7fa68e60de7", + "id": "68df1282-df86-443b-98fc-ed48ab3a47a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164330,7 +164330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1425943-17f0-43c4-981f-c78510356333", + "id": "eebacc0c-957b-4484-80d2-a3505fe3a906", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164380,7 +164380,7 @@ } }, { - "id": "fbe5c18f-b88a-41d1-a657-ffb5b189d11b", + "id": "3553a628-5814-4dd2-baae-1088f45d9c96", "name": "Get Managed Client Status.", "request": { "name": "Get Managed Client Status.", @@ -164432,7 +164432,7 @@ }, "response": [ { - "id": "29afd223-7d8b-4936-abbf-700a0df117ca", + "id": "600bd7ab-4ced-4374-90f6-10e5432eba20", "name": "Responds with the Status of the Managed Client with the given ID and Type.", "originalRequest": { "url": { @@ -164487,7 +164487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb77a83-d849-4547-81bb-c5d78dc937c2", + "id": "219d152d-6df6-4710-88c2-f5bef0daf369", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164542,7 +164542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37edc930-b4ec-48f6-af31-707d931cb1fd", + "id": "d2af7033-a88f-41b3-aeac-a582798100f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164597,7 +164597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b231ffec-e388-4c08-ac48-060cb3fba818", + "id": "bf9d9c03-5479-4605-8b51-be4cff44e770", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164652,7 +164652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d3a51c-c386-4698-8a15-eb4970993d8e", + "id": "77f6f9cb-c19e-4206-80d6-69fa0e8c7ff8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -164707,7 +164707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c56a830-5ff8-4906-a3dd-4d65ea9de8c2", + "id": "08bdad89-b9b9-4cee-b5db-84ab3f80491d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164762,7 +164762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0221734b-a133-4ef4-8c0b-e39994d9e405", + "id": "93cc5733-65ca-46f7-ad7e-b9820981a4d9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164829,7 +164829,7 @@ "description": "Read and create pperations for client Clusters, including Log Configuration", "item": [ { - "id": "536f9f58-bc2d-4f3f-b90d-36e9ff90b6d6", + "id": "30f9c229-3e37-4d4e-a415-ba08f38139fb", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -164895,7 +164895,7 @@ }, "response": [ { - "id": "fb35ca4c-c499-4821-b8f1-dfdbf0889edb", + "id": "78415c3f-ff0b-4e57-80dc-05d2e14946fc", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -164975,7 +164975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99795a56-955f-4c67-b241-4873af255628", + "id": "769b9404-d72b-4551-a030-389e54803603", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165055,7 +165055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de55aaaf-97da-4423-b529-b653482ef139", + "id": "158e986a-8613-4f93-9ed1-e6d6f72c2cf8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165135,7 +165135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44e3b48b-9b00-4ce1-b579-2567fcc4e46b", + "id": "b03fa5f3-7216-44c9-b380-94038fc01dcb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165215,7 +165215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46390686-e0d6-4df8-9120-58d30225c04b", + "id": "86a617eb-e99a-4bd4-9908-0af5ef71a0b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165295,7 +165295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99aa0e54-7d62-4fec-9d03-49eee8e93383", + "id": "81229e85-132f-46e7-9286-cff62286ce10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165381,7 +165381,7 @@ } }, { - "id": "80125f08-491e-4f0b-ac3a-5c5dc66f75e3", + "id": "3097ede8-120f-4586-858c-f3539c1004c2", "name": "Create a new Managed Cluster", "request": { "name": "Create a new Managed Cluster", @@ -165423,7 +165423,7 @@ }, "response": [ { - "id": "710d8653-1753-4014-adb7-c29a507e79d8", + "id": "7b3a1dfb-78fa-420b-bf73-a5b3c5aee17f", "name": "The created ManagedClient", "originalRequest": { "url": { @@ -165479,7 +165479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5250c6-6295-41c0-bb4c-115d141e689f", + "id": "41927034-eea0-49c6-985b-977e6e712757", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165535,7 +165535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3838fb35-9a84-428e-be24-90fd9cc76f21", + "id": "e8d20595-44b3-419e-90b8-a1b4a55da7e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165591,7 +165591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a2ad728-8c82-44df-aa43-d7a9dd24d8e6", + "id": "8f53f786-dc3a-4233-bfe3-0df625480a32", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165647,7 +165647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83e613eb-92bb-465c-a914-692823c43cf8", + "id": "e0aca564-42d3-47a0-9be5-6bb022c1f7e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165703,7 +165703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6419dc5-def3-4d19-ad07-5bbd5bcf1e7e", + "id": "b9d735df-567a-42be-9057-d5e181c29c1e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165765,7 +165765,7 @@ } }, { - "id": "68b82218-b00a-48a1-9c71-cba38a57b099", + "id": "bfbeeeed-1536-4b5e-9c4b-83a5189f08a2", "name": "Get a specified Managed Cluster.", "request": { "name": "Get a specified Managed Cluster.", @@ -165806,7 +165806,7 @@ }, "response": [ { - "id": "733adc1b-24c7-42d5-b9dc-2be09451bb9d", + "id": "134a5b7e-343f-4067-bf20-ac1b34baa023", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -165850,7 +165850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a013889b-c47b-4c83-8c2b-d4bcb89edca3", + "id": "33660a78-37b9-49e9-a68f-4fccb5c20e45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165894,7 +165894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b9c566b-cc05-4e5a-9552-d4a2cd769ad4", + "id": "c83a8b26-a9bb-4fcb-aaf1-79ca63c23f28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165938,7 +165938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ce083c-ed11-4fbb-8af4-be679fe437ab", + "id": "fde8bef5-237d-4588-a3b3-b78efc1505cb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165982,7 +165982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ca2df70-51c3-4772-a9c7-a9e8f67aeba7", + "id": "7b5c4a88-b9ef-43ed-b27b-8d3723e7000d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166026,7 +166026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4edbe262-1bf4-46f2-87eb-25dc1bc172f9", + "id": "4d4c62ab-1a73-4c71-87ce-2edc3d7d8875", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166070,7 +166070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e7389b8-f854-4551-bb02-ec1b60bec742", + "id": "136e09df-4069-4c20-805a-f11f774f224d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166120,7 +166120,7 @@ } }, { - "id": "322e4bba-ff9a-4924-afe4-25604e62a690", + "id": "64396911-f0a0-4ab7-8e4a-10db059cb511", "name": "Update a Managed Cluster", "request": { "name": "Update a Managed Cluster", @@ -166174,7 +166174,7 @@ }, "response": [ { - "id": "0933b2de-2f19-4d1b-8527-35fe955ee28f", + "id": "8f2bbf2c-b864-4fa9-b1f6-628910750d34", "name": "The updated Managed Cluster", "originalRequest": { "url": { @@ -166231,7 +166231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b0398e7-e853-4a63-9def-f43203f1a896", + "id": "d1b4e6f1-0975-43ab-9ef9-ed3a9c38b451", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166288,7 +166288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd521c22-b3e0-41d4-a9b4-fbcfe1ce3287", + "id": "a52eb4e0-101d-4e5f-b0ec-02cd2a77036c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166345,7 +166345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb0214d-485c-47f0-8d35-471fa6f139c8", + "id": "aecdefae-82e8-4605-94df-a3d49a039e7f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166402,7 +166402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6922831-abe3-4061-b71b-87fa9c0aba87", + "id": "533b2f4c-a44d-4bc1-bdb1-6fd9b38f1622", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -166459,7 +166459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a3e1bb3-1054-436f-b36d-281fbed9c8d6", + "id": "37093e6e-99bb-4a13-9174-2df3e05ae89a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166516,7 +166516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e530316c-fd81-4ded-9b0e-310f6e12bac1", + "id": "c6e059bd-30b0-4f4a-b363-b39f61a61a50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166579,7 +166579,7 @@ } }, { - "id": "417b443d-f0f5-4f4d-ac2b-7fd06df0cae0", + "id": "3e62daea-c61d-44e2-bdc3-86b286eff56a", "name": "Delete a Managed Cluster", "request": { "name": "Delete a Managed Cluster", @@ -166630,7 +166630,7 @@ }, "response": [ { - "id": "b0f33a19-3b5d-4062-8c76-93b7ed033b9f", + "id": "8972e6fe-6b2d-4a06-b69f-ca92239562e7", "name": "The Managed Cluster was successfully deleted.", "originalRequest": { "url": { @@ -166674,7 +166674,7 @@ "_postman_previewlanguage": "text" }, { - "id": "39ed7aa0-8c6c-49dc-b259-2654c9a14300", + "id": "a1dd258e-da50-4e97-a652-c4a94853c29b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166728,7 +166728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e1761f9-d4fe-4d7d-96df-ce4d3f982eac", + "id": "ac5098ab-4949-4ef3-a263-3f721fb8f009", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166782,7 +166782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de829b21-ecdf-424b-9e30-b914d5ef51a4", + "id": "15c2036a-5c41-414f-b45e-053c3cee1130", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166836,7 +166836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0224c93-b094-4a79-b9de-2cb23c5b4041", + "id": "6a89c623-2ef8-4f5f-b81d-9dabd1d6544e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166890,7 +166890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d86fa40-d880-4445-979a-3bbcacc17a1f", + "id": "0a19eb1b-defa-43cb-8f6c-7be530b2c874", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166950,7 +166950,7 @@ } }, { - "id": "5776959f-93a4-4c44-8bf7-0ab12245f846", + "id": "5faaab9d-600d-4fdb-a13d-5ed7b05c61d8", "name": "Get Managed Cluster's log configuration", "request": { "name": "Get Managed Cluster's log configuration", @@ -166992,7 +166992,7 @@ }, "response": [ { - "id": "c460e9c6-06b1-4f8d-a2f1-ac080d8b857c", + "id": "b69a329e-b94f-4fad-800c-a5151b235c50", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -167037,7 +167037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68ec4511-c22a-47e6-aa1d-c906d1f00e1c", + "id": "77ececa4-8cf5-4ad8-887f-5461fe584fe5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -167072,7 +167072,7 @@ "_postman_previewlanguage": "text" }, { - "id": "71c14c30-d32b-4810-ba44-af13f449f742", + "id": "3e91abb8-aaca-424c-a696-1f8bcab8186d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167117,7 +167117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0fb4593-86d3-4d1a-8426-5b3b0d44419d", + "id": "bbc09346-ec93-40ea-971e-5913cb01534e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167162,7 +167162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cfaeed8-03f0-4d7e-b38d-a3d27c9797b5", + "id": "83ccc056-eba8-4347-86d9-99c42389c804", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167207,7 +167207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e94f044-3acb-41bd-80d7-15cd2bd7fdd6", + "id": "751ca063-3324-4d1e-81a7-f826452f7676", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167252,7 +167252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9542beaa-154b-49b8-9c7f-03fb4c53ddc2", + "id": "35a84a86-a108-4de1-aeb7-e8fbd298ed70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167297,7 +167297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1fa7497-14cc-431e-986b-d3665a5661b9", + "id": "3b25f869-4325-442d-922b-713f964d7673", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167348,7 +167348,7 @@ } }, { - "id": "50d4b1c4-3a36-450c-85f4-807ea712563f", + "id": "63817870-e900-49d1-847e-2a10b475ae2d", "name": "Update Managed Cluster's log configuration", "request": { "name": "Update Managed Cluster's log configuration", @@ -167403,7 +167403,7 @@ }, "response": [ { - "id": "121d7dcb-2736-442b-8ea3-f0f69ee9fb9f", + "id": "1b75a0b5-829f-4d6d-8522-eb392b667404", "name": "Duration Minutes", "originalRequest": { "url": { @@ -167461,7 +167461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88f13f87-0a40-4fef-acbb-d8d13b87d7d3", + "id": "ac3e2852-c8ff-42ee-b6f9-0e7413c52115", "name": "Expiration", "originalRequest": { "url": { @@ -167519,7 +167519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55648515-d976-46cd-aa4e-b496e43748eb", + "id": "05bb7ee4-9b72-47f3-932c-c8bcbdd90bdb", "name": "Duration Minutes", "originalRequest": { "url": { @@ -167577,7 +167577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4119a8a-870c-486f-9f66-140fd8be3c84", + "id": "4c451641-f650-4d0d-9247-55bae1608c91", "name": "Expiration", "originalRequest": { "url": { @@ -167635,7 +167635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc0a4408-cd20-413f-95bc-0239c5ecc92a", + "id": "9ee560cc-2871-4cb9-8f19-063c9ac9c231", "name": "Duration Minutes", "originalRequest": { "url": { @@ -167693,7 +167693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29828233-9f58-4717-be5a-5c79e75ee3c0", + "id": "be0ad490-c416-4f17-a07e-181f99c24b30", "name": "Expiration", "originalRequest": { "url": { @@ -167751,7 +167751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77dde871-6bc8-4b3d-8837-1dbb260643a9", + "id": "93c597d4-bea7-415d-8cd4-bb1f14295b2c", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -167809,7 +167809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bac004bf-910f-4f05-bae1-bba81b7f7ad9", + "id": "5444e985-078c-4c5c-8370-c71d8adc3980", "name": "Expiration", "originalRequest": { "url": { @@ -167867,7 +167867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3343f787-03a0-4cb4-b778-f5c3bdc653cd", + "id": "a76d841a-6516-4e51-bf60-73db74611c32", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -167925,7 +167925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd550a3f-f0de-46ae-8361-944876e6abcd", + "id": "24c21c03-33c8-4acc-8713-d2628df77e2f", "name": "Expiration", "originalRequest": { "url": { @@ -167983,7 +167983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffb3bd93-93ee-47d9-b7d6-adc8f9f83d07", + "id": "862b26ea-f4e3-4639-ae14-0e16b2b9a56f", "name": "Duration Minutes", "originalRequest": { "url": { @@ -168041,7 +168041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ffb3dec-a9b4-4782-8124-8d98826af9dd", + "id": "f3118391-05f5-48ae-9610-a7551524097d", "name": "Expiration", "originalRequest": { "url": { @@ -168099,7 +168099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99ac4338-2380-4518-b46f-4df7c32e5718", + "id": "124d45fd-29a8-4472-8bdb-e3ba73ebab5e", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -168157,7 +168157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4eda28-9bfa-4915-a7d9-9dde4950a96f", + "id": "6a682c22-12aa-48c7-b5f5-999eb342a954", "name": "Expiration", "originalRequest": { "url": { @@ -168237,7 +168237,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "60319234-795a-4917-b3ec-e0145fdbc6bb", + "id": "d055a3f3-81e1-4ac2-9c9a-cbd3d0ec8912", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -168268,7 +168268,7 @@ }, "response": [ { - "id": "199b4735-b1c5-4971-9c05-17b7c9aadb1a", + "id": "85cf8a7d-027c-4531-8eed-e507d2d897b1", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -168313,7 +168313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecd46e75-28c6-42e1-a1d0-6d5612904f3b", + "id": "b2ebd866-6d2d-472d-b7f8-02e73adc984e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168358,7 +168358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be3d07eb-0d01-4757-9fc6-ec8e7f8481a1", + "id": "fe0b397b-8141-411b-bae1-4c6bf0cd6854", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168403,7 +168403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4526e407-ac7f-4000-8770-acb50dc30810", + "id": "de879e20-cf9c-4ae1-b3c4-779aef51357c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168448,7 +168448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5760efd-7e7b-4b2f-bb83-c945ba1b2c8c", + "id": "7d4c1b1c-6f32-4c76-8c57-ce35e402ade5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168493,7 +168493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68df5ccc-f6df-4f8d-8610-49b5742b206a", + "id": "816c4e10-1f1a-4840-94f1-4358975e7f68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168544,7 +168544,7 @@ } }, { - "id": "25d15035-7260-4548-a0d2-7f82886ae799", + "id": "46c95133-9257-4b50-86aa-6454ccd9c1c2", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -168588,7 +168588,7 @@ }, "response": [ { - "id": "24de56d0-9f1c-45d6-87d0-d57dce332030", + "id": "3b275f63-5410-4a13-926c-f3b0f85f8941", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -168646,7 +168646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "486af4ed-b53d-4a8a-9838-06b60d02a3de", + "id": "2478e0a5-6764-41e5-93e8-793a6e039183", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168704,7 +168704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc70418b-657e-4be3-aff8-70e13541aeb9", + "id": "25003e1e-ca97-4148-a817-88a3a63f4913", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168762,7 +168762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "501b3a14-9937-41e0-9056-6050a2acdc69", + "id": "a16e569d-ce26-46b4-96e0-f5b0c36fa0b3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168820,7 +168820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a34c2c5e-2f35-4737-b091-224854702fee", + "id": "4875b8f8-b444-43aa-8db8-cbec0f2b9ad7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168878,7 +168878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c6a727e-ac55-4171-a2cf-c92dca6b8c8d", + "id": "d463d849-85fa-47f2-ac26-5e4f4ca09bea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168942,7 +168942,7 @@ } }, { - "id": "d0173379-2d72-41c9-a7f8-c9e7d09d1824", + "id": "6b0dfb7f-3a22-411e-8966-b92b8393ee61", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -168973,7 +168973,7 @@ }, "response": [ { - "id": "c4c3e1c4-c52d-4537-9250-e7463cc6c3fe", + "id": "c696c811-cc6a-4e93-89b2-cbbbac8cc71c", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -169018,7 +169018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c4439ff-f75c-4625-86bf-e72fc65ff460", + "id": "16f2566a-b8fe-4a13-8019-5657fe7c7cf4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169063,7 +169063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b28cad62-94a1-4456-8c08-19e2e500c8bb", + "id": "2d2246d7-78e8-498a-a041-eb125b930c3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169108,7 +169108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f582e89d-0a8b-4384-9793-d60c041c4a12", + "id": "b5ddf437-922f-46ed-852c-032614531264", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169153,7 +169153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aeeb051c-12be-41c2-b4ff-e077b4dc6904", + "id": "98a6e8f1-84d2-4bf6-8487-76d2415d7823", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169198,7 +169198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae955e2d-8599-4a2c-8208-23b8bf824696", + "id": "515e0bf0-4862-4f15-93e0-fe82ac9d13ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169249,7 +169249,7 @@ } }, { - "id": "182ec8bd-f77a-4b19-8bf9-e328a27da577", + "id": "8866d679-050f-450d-bc21-e8b0f9167a36", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -169293,7 +169293,7 @@ }, "response": [ { - "id": "633df216-5236-45e4-ba99-d2719cba6634", + "id": "f9f9f751-8fc4-492d-811c-50a0754ce350", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -169351,7 +169351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41888c24-b235-47a0-ab82-77f2e63d096b", + "id": "03aa83c6-2bbc-4243-a04c-671ee6b981a4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169409,7 +169409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe5eb6a9-e2c0-4ee2-aaea-17d0e8d557a5", + "id": "c29a94cc-3110-47ee-9822-e23d896bc7dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169467,7 +169467,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac1b20ca-fd13-40fa-9fa0-ac19a0c2ee0e", + "id": "a90b6e4c-80ae-4ba7-9b6e-5f9ba8dcbd78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169525,7 +169525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9acb811-f42f-4ac4-a615-ff82dd31a882", + "id": "68053ca4-a07d-47b6-a82d-60dc003d7571", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169583,7 +169583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98866834-0acf-4c4e-aa0e-bc5283b464ab", + "id": "b249377d-4b3f-480c-82de-83934a8547f2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169647,7 +169647,7 @@ } }, { - "id": "e7e4f338-9571-4328-9758-4bfdd1ccaafc", + "id": "4136fee9-e843-4816-9f99-696650609adf", "name": "Configuration of KBA MFA method", "request": { "name": "Configuration of KBA MFA method", @@ -169688,7 +169688,7 @@ }, "response": [ { - "id": "b919363d-766c-4f4e-a682-2f521728a880", + "id": "171c1ffc-c86b-4c9f-adc2-87fe4e85e8d1", "name": "The configuration for KBA MFA method.", "originalRequest": { "url": { @@ -169743,7 +169743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44fbaabd-639b-429a-ae82-95eb1cebecc1", + "id": "bd22f995-88c3-4307-92d6-dbe91da08650", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169798,7 +169798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca84c8ca-0e47-48ea-a1fb-9176dc273146", + "id": "510f56b3-5b9c-411b-9068-6f3fcf1968f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169853,7 +169853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b397a364-0e85-4a93-a089-15b59c58b921", + "id": "f5f965d8-ad8c-44b6-a480-e863a601bd90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169908,7 +169908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4366a4b-3424-408e-b454-1a11e9833cf5", + "id": "769fae88-0759-4117-89d6-75da3d0b17ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169963,7 +169963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc3530a-6e70-4fb1-b97e-0f204a0543fa", + "id": "2fd0a1c1-ded6-4013-8d88-7d1c17e75493", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170024,7 +170024,7 @@ } }, { - "id": "5eb5316b-5898-41bb-bda9-c3f9141947ed", + "id": "41f36a90-0722-4d17-b73e-6858f144c316", "name": "Set MFA KBA configuration", "request": { "name": "Set MFA KBA configuration", @@ -170069,7 +170069,7 @@ }, "response": [ { - "id": "08bc523a-36fc-4f80-9898-bb3c94ed8ae9", + "id": "a2a3bbbd-10ec-4b23-adb7-9edbdc99f209", "name": "The new KBA configuration for the user.", "originalRequest": { "url": { @@ -170128,7 +170128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39570a3d-7354-4ba3-83f9-e3e08d2a3f5a", + "id": "b1997ef5-a001-40ad-a5c4-6131a2049ca7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170187,7 +170187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "080f7f9b-e1d8-4fdf-b59d-23fbfaca999e", + "id": "6fca56d4-6735-45cf-a3bc-808c7b68abe2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170246,7 +170246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c485a7c-e586-441e-97fd-cf6764a80e1c", + "id": "bfe0643a-8bc8-4055-bf2f-7d2038609ae4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170305,7 +170305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6730cd11-9061-4e22-918d-dbc0225b3236", + "id": "c5281fd8-bcbc-4e99-b8d1-ce3a69407f9b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170364,7 +170364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d87db91c-0866-4ba2-9004-dd2f37856c09", + "id": "ef973193-9e0b-497e-850b-ca984e27a49e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170429,7 +170429,7 @@ } }, { - "id": "410fe4d9-1200-4bee-b53a-f1396a12e597", + "id": "7d45f236-e672-4dca-9486-c0add32d99ba", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -170471,7 +170471,7 @@ }, "response": [ { - "id": "260429cd-a6dc-4831-938c-aefc193be1f3", + "id": "c1d9370e-e4b2-4dc9-b031-eb46d85112c1", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -170516,7 +170516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85402d33-2c7e-4987-ac7b-44ea3c4205b0", + "id": "91349922-837d-419d-a2be-5657c64463e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170561,7 +170561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed6cae0e-1b33-48e8-877f-6637b86407e0", + "id": "17d74658-1d53-43c1-baf0-b8d2de2c5a01", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170606,7 +170606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af0a1f63-ac08-4349-ae4f-c3556ffa8a57", + "id": "d1efc3fa-bf1a-43d9-bf7d-d28814fc5940", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170651,7 +170651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "023f9a57-bfdd-45ea-a260-c0e300395ff5", + "id": "a295b59f-3149-4019-9830-c72b4454ca17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170696,7 +170696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "302493a6-4510-478a-907c-c7fe2d746eba", + "id": "054c9959-9984-457c-ab64-a6b24d7f2f1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170758,7 +170758,7 @@ "description": "Use this API to implement non-employee lifecycle management functionality. \nWith this functionality in place, administrators can create non-employee records and configure them for use in their organizations. \nThis allows organizations to provide secure access to non-employees and control that access. \n\nThe 'non-employee' term refers to any consultant, contractor, intern, or other user in an organization who is not a full-time permanent employee. \nOrganizations can track non-employees' access and activity in Identity Security Cloud by creating and maintaining non-employee sources. \nOrganizations can have a maximum of 50 non-employee sources. \n\nBy using SailPoint's Non-Employee Lifecycle Management functionality, you agree to the following:\n\n- SailPoint is not responsible for storing sensitive data. \nYou may only add account attributes to non-employee identities that are necessary for business operations and are consistent with your contractual limitations on data that may be sent or stored in Identity Security Cloud.\n\n- You are responsible for regularly downloading your list of non-employee accounts for all the sources you create and storing this list of accounts in a managed location to maintain an authoritative system of record and backup data for these accounts.\n\nTo manage non-employees in Identity Security Cloud, administrators must create a non-employee source and add accounts to the source. \n\nTo create a non-employee source in Identity Security Cloud, administrators must use the Admin panel to go to Connections > Sources.\nThey must then specify 'Non-Employee' in the 'Source Type' field. \nRefer to [Creating a Non-Employee Source](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#creating-a-non-employee-source) for more details about how to create non-employee sources.\n\nTo add accounts to a non-employee source in Identity Security Cloud, administrators can select the non-employee source and add the accounts. \nThey can also use the 'Manage Non-Employees' widget on their user dashboards to reach the list of sources and then select the non-employee source they want to add the accounts to. \n\nAdministrators can either add accounts individually or in bulk. Each non-employee source can have a maximum of 20,000 accounts. \nTo add accounts in bulk, they must select the 'Bulk Upload' option and upload a CSV file. \nRefer to [Adding Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#adding-accounts) for more details about how to add accounts to non-employee sources.\n\nOnce administrators have created the non-employee source and added accounts to it, they can create identity profiles to generate identities for the non-employee accounts and manage the non-employee identities the same way they would any other identities. \n\nRefer to [Managing Non-Employee Sources and Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html) for more information about non-employee lifecycle management.\n", "item": [ { - "id": "24cd7ed9-9ac2-40ac-b7ad-3404d076550d", + "id": "2f3a04c5-3922-4014-a717-c6d0056bfcd5", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -170800,7 +170800,7 @@ }, "response": [ { - "id": "361845e0-f10c-465f-9910-f9c5997d4eee", + "id": "e59977a8-1212-40e0-a6d3-bc9b58f28e2c", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -170856,7 +170856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60022bfd-93b1-49f9-bcca-a367cfe4afe5", + "id": "f60669fa-4b5c-4658-bd49-d41ff875eebc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -170912,7 +170912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdf3055f-7e55-4f47-abff-631548681a27", + "id": "d19f9913-62a1-4a1a-be30-804cf2efda8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170968,7 +170968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8360389-1f19-424b-b847-30c0b4b770da", + "id": "91629aef-53d0-472f-8e74-b2d8bb49c992", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171024,7 +171024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e8b5346-5cb1-4b61-83a6-2fcd9d20b8f3", + "id": "c9cd4f9a-f834-44ad-b623-1b632843ef80", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171080,7 +171080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfed10b9-adc4-4d03-acbd-33ffc56d438a", + "id": "297342e5-0ef9-45d5-bd53-b67d1b0ab0b8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171142,7 +171142,7 @@ } }, { - "id": "2b49adbf-98e8-4e08-9ff6-02d0a56d6a12", + "id": "312f894a-8ea8-4f45-8aa0-0a081a9c617e", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -171217,7 +171217,7 @@ }, "response": [ { - "id": "6650a6ea-4413-44ef-bf0a-79b4ee098039", + "id": "2068c3a9-22a4-4c35-8bdd-6bdb8582e60a", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -171306,7 +171306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "989e1e4d-b727-425f-862a-f585b5c76978", + "id": "c68501bd-9017-4530-b524-5637d5dabffc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171395,7 +171395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7719a3eb-a28d-497e-afd3-0148615e826a", + "id": "54b091a4-f3eb-4759-b390-ef27cc8fadd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171484,7 +171484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e21337e-538c-4b1a-bf6e-e3f5cdd146ae", + "id": "18485414-2f4e-4160-95d6-1b6e7d2a90c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171573,7 +171573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd45287d-10b2-4dba-970a-93520cd688bc", + "id": "73d69356-72bd-4bac-ab8f-29c3928f3d91", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171662,7 +171662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6dab10-fea9-4d36-9faa-fe809d8d8281", + "id": "540ba9fa-6a78-442e-8432-329c863a6d28", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171757,7 +171757,7 @@ } }, { - "id": "850bec9b-9def-410c-967e-bd7c815678f2", + "id": "c50fde3c-9295-446b-a973-e1ea85374cee", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -171798,7 +171798,7 @@ }, "response": [ { - "id": "4944edd4-1b56-4893-bfca-fa32510d9b62", + "id": "6720e54e-0d84-40b5-ab7d-242c9490316a", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -171842,7 +171842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "effc295d-13fe-4b82-b1e6-22f4604f0e5e", + "id": "33f6f71c-ce11-4c8a-87fa-d2f1862bd880", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -171886,7 +171886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba36b268-06ae-4037-9fc9-f1a7aa5c2ef2", + "id": "27012434-1380-4725-92f3-f9db22e08954", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171930,7 +171930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2d32fa6-1cdd-4900-93c5-b31b2bcfcfa0", + "id": "998a3c3f-f774-483c-a060-aa5686724821", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171974,7 +171974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e1da672-9f58-4b69-bbf0-139c8bbc72a9", + "id": "fec79e96-885e-4b53-8989-61778f231cb1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172018,7 +172018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "175309da-358a-4797-9f9a-34853d827f0f", + "id": "822a6e41-4cf5-4587-9870-f14fa75a0c9c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172068,7 +172068,7 @@ } }, { - "id": "5461a102-64e6-4442-aa6f-2d16c2e301fd", + "id": "9d631c57-5565-44ea-90c3-50b081b78dad", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -172122,7 +172122,7 @@ }, "response": [ { - "id": "2ba08d29-df0b-4c80-9933-39352f03035c", + "id": "217239e2-bfbe-4428-81c9-12a6498183a2", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -172179,7 +172179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a2c2119-b57b-46de-b174-178ca5f4ca1c", + "id": "d6dcc838-a4ce-4f14-a61d-cebd58a98fe8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172236,7 +172236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4195674-b970-487a-8581-b173377312c6", + "id": "1388937f-8bb0-4f20-a6f4-9ff8126c4132", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172293,7 +172293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6320ebd-22e2-4706-84e2-6b210d4d1636", + "id": "fb4b7426-b9bf-4256-97d6-39fada586baa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172350,7 +172350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8db8935d-016e-4230-9d9c-e693ce3b693a", + "id": "9862a716-40e5-412d-838b-14870749cd50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172407,7 +172407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "216f7ed9-d2ea-4d4d-bab8-56c4938c176b", + "id": "3074debb-095c-461f-afcd-46fac3930817", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172464,7 +172464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2d4013b-b5d5-4864-92df-4ee367abf145", + "id": "6a252e9e-4adb-4d35-a470-abb4eab97d2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172527,7 +172527,7 @@ } }, { - "id": "65d6dcbc-8f5c-4b1d-9141-48f7ac07bdcd", + "id": "ee9abad4-8e2e-4bc0-9dd0-5e356cb32afd", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -172581,7 +172581,7 @@ }, "response": [ { - "id": "573093ef-335d-4700-aecc-d015a47a4c21", + "id": "9822524c-583b-4866-9279-dbf10905e453", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -172638,7 +172638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5fa826c-91d3-4540-8fe8-d12dd157c36e", + "id": "db42f463-186d-4cd3-9cdb-1c0207d0851a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172695,7 +172695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30daff02-e05a-41db-8228-f2b193e6fef5", + "id": "d5d8e23c-87d3-4e22-8dd7-ca8d10d11ee8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172752,7 +172752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e116ab57-5215-4280-9d12-ec82a2b4e42a", + "id": "c0147a76-704f-4e57-87a6-0e4f7b7c8469", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172809,7 +172809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d5958bb-a460-49a1-9256-db203a36a7fe", + "id": "44f163e3-5b04-45c4-a35b-00574f875933", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172866,7 +172866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e0391c2-5776-48d0-b864-e48247dfd7f8", + "id": "fad0a061-a882-4c39-a1c7-85f6b65614b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172923,7 +172923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48d28b9f-3b2b-497c-a785-5c9cfb935cd5", + "id": "7e0803f6-c3c3-42a0-ad6a-f13e16759e6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172986,7 +172986,7 @@ } }, { - "id": "faa126bc-553c-4531-aeca-8d0a2d36c20c", + "id": "bb31c1c0-94f5-4462-b5ad-b2fea9203337", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -173027,7 +173027,7 @@ }, "response": [ { - "id": "d13a220f-235e-4e89-8dff-348ff395a278", + "id": "530fd5f8-f82f-4da3-b211-c87dbdc2d2bc", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -173061,7 +173061,7 @@ "_postman_previewlanguage": "text" }, { - "id": "52820939-bd68-46a5-8ff4-ad3cf1ec4db9", + "id": "040279bb-a0b1-496a-8097-08b9fc96b5d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173105,7 +173105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "729d334d-84c6-42e5-b609-a678ee467154", + "id": "d70d3894-f92f-4f8b-9c84-c0d7e4e66086", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173149,7 +173149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fd5cee7-28bd-45ce-b365-8f7ef22f66fb", + "id": "d8fc7a41-a0b6-478d-9d08-281d26b82f48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173193,7 +173193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43aad043-7cf0-479b-aa5f-6be2b82695d5", + "id": "5aad4a7b-625d-4438-90fc-a64faf6afb70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173237,7 +173237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1d052ee-5091-46c0-bd42-5b1fe00084f5", + "id": "e03d6a7d-d7d5-4294-8218-79c1297d312c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173287,7 +173287,7 @@ } }, { - "id": "8ee42162-2d4c-40d6-9132-4c08854203c8", + "id": "4c7537df-42d8-4fa1-ba65-9772fa82c623", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -173330,7 +173330,7 @@ }, "response": [ { - "id": "9822a4ad-7f6d-45f3-aeb7-b8406cbf8914", + "id": "c13ff710-dd36-4c68-879d-248f9bb286db", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -173377,7 +173377,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fd50ad61-22a0-4b06-8bba-e940d7738cb5", + "id": "c36e02cd-416a-4db8-aa70-d8c43ff925e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173434,7 +173434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "969a8145-a60d-45c1-b0f1-39123170c56e", + "id": "685c7492-3110-41ce-bd0a-529f75cdf9b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173491,7 +173491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44a2f397-812b-4d39-ba60-b536d05730d5", + "id": "523ec7a7-d9f7-4835-a5c8-b74ffc256e0a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173548,7 +173548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7dbbfdd-7d74-4904-a06d-cd7f7541429f", + "id": "a4e7f6a3-17e0-4d5b-83b1-0912a27ba39a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173605,7 +173605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f69dda8-f255-45b1-a232-87491c90d40d", + "id": "b4e6968e-6b95-481b-a8f7-d8a0e4e1f757", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173668,7 +173668,7 @@ } }, { - "id": "1250dc54-82ad-4eb4-9aeb-5b9f9b6ead6c", + "id": "d65eb116-d14b-4003-96e7-ded9f9320338", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -173710,7 +173710,7 @@ }, "response": [ { - "id": "dfec0e29-ad0a-4cae-81c1-77ed14860701", + "id": "67cf456e-f87a-44f4-b173-3eb788ef0617", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -173766,7 +173766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca2aaf93-d6d4-45ed-821c-cd1713d22a03", + "id": "5b2478dd-e498-4b61-be83-e9b7e5496f6b", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -173822,7 +173822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49cb5dff-8115-4816-9b88-ae96c4f1faec", + "id": "38b11ad0-7e1c-4531-b418-5cff215341cb", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -173878,7 +173878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c095592-7ead-4a90-9655-e232db0047b9", + "id": "bcb59eed-53a9-4fcc-b635-69d1cd46ceba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173934,7 +173934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1d5da3e-e38c-455c-8f98-7876da18a119", + "id": "5ff7903d-cbc4-4b5e-9011-72bcaaed2ca9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173990,7 +173990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dff635b-050c-4f71-a7f9-782d3042b5ae", + "id": "ee85e859-20c7-4c13-a145-8dcd840ddfac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174046,7 +174046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba4b32e3-1309-40da-8409-5a164b01f956", + "id": "b22cfd99-a68d-4f19-9329-2fc4c8e75831", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174108,7 +174108,7 @@ } }, { - "id": "d65d3251-e84f-48fa-b4e2-83947a140ed3", + "id": "02b49894-6d56-42a2-b7cb-b07e0bd1da0b", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -174192,7 +174192,7 @@ }, "response": [ { - "id": "ecf72033-ac3d-49d5-b93b-124a5053141b", + "id": "2f2c5241-19ac-455a-bb84-b115d0ef3596", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -174290,7 +174290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fb454c4-6bae-4bd2-9f7c-7ec0aec10323", + "id": "3d63abda-c05f-4246-9550-37d29844867f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174388,7 +174388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef653c54-2107-49fd-a90d-af0971c420a8", + "id": "4b812046-d0d8-44aa-8fa3-01d146d7ecf8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174486,7 +174486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f763b6e-2a44-4a44-bbeb-ea3a85a7b482", + "id": "5b0fc87e-83c7-46d7-bc19-8015fb79548d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174584,7 +174584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d714d822-f116-482a-98e6-a712fe59f6ea", + "id": "506705ff-064a-44e9-a05b-0e3412430f7e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174682,7 +174682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55e0d1ad-a07d-4b4d-9cf3-b110ed3797c0", + "id": "02ea7ee2-c77f-4ac2-a64e-4c8f1d83c612", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174786,7 +174786,7 @@ } }, { - "id": "60e04ecc-66a6-4486-a0db-5b34f019ec91", + "id": "df55d454-076a-4213-a44d-73036dfc8acd", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -174827,7 +174827,7 @@ }, "response": [ { - "id": "ccd55ca6-b494-4d95-86cc-831c91cd3657", + "id": "ea4fa2f1-5e06-46ce-be24-f6fbdf1de1fe", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -174871,7 +174871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "215bb408-7f79-4665-961c-97ef1b047158", + "id": "48112081-8696-45f2-9e01-f1eaa79471d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174915,7 +174915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e0b28e8-1126-4db5-a464-781a3b6471a1", + "id": "26b3e2d5-5bb0-4259-be41-49de1d7bcd8e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174959,7 +174959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27e79b7e-868f-4af2-8492-547898ba9f27", + "id": "4234d762-1d91-416f-a538-ec5f4d877a48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175003,7 +175003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4ced1df-61e2-4e75-9b9d-8954a151eae4", + "id": "2aac26c6-321c-4a55-a3e6-3dc89c979ada", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175047,7 +175047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9df27a83-b5d6-425f-8f91-65493c1ba099", + "id": "68d31d5f-a832-40be-9f9f-f854f8857ffb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175091,7 +175091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55f450db-cd60-4ef6-86c5-eb3fb2be9846", + "id": "b9eb8251-af0c-4daa-b430-6baae3b989e0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175141,7 +175141,7 @@ } }, { - "id": "8f27e89b-3b3e-45a5-af20-72cf6fe04812", + "id": "cb058b07-0da7-4b59-8037-9a6d10f24fa2", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -175182,7 +175182,7 @@ }, "response": [ { - "id": "6db4e3cb-ceca-4db0-9106-b56b6fc9f255", + "id": "07d38339-3eb4-4368-ad1a-92dfa51198b5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -175216,7 +175216,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0aa80db2-f20f-40eb-812c-42c47f5e33c5", + "id": "b4bfbf45-04f6-4c52-983a-93fb6891618e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175260,7 +175260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03c9a036-b0c7-40ec-a70e-4d43e60f12b2", + "id": "738fca7d-087e-40b3-b398-c5befa710985", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175304,7 +175304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5488ee2-cbb3-4985-83ef-82cabb679a66", + "id": "a33c5b77-e918-410a-9cce-31cc89650dc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175348,7 +175348,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd645f08-6808-4fd9-a615-5a2fc62e62d6", + "id": "bb4b0d37-03a3-41e4-b166-b6a8bacd0dfa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -175392,7 +175392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf7e56c9-1cb4-4bc2-aa96-fdcb7ac1a198", + "id": "9eeafbeb-c8ff-438b-82e8-6575c6436323", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175436,7 +175436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56805159-d2fb-4f4c-87e8-4c30ad96916e", + "id": "13771b38-fd7d-4bae-890c-db8241dd68ee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175486,7 +175486,7 @@ } }, { - "id": "7fc5e673-6f9b-406d-812b-b44850620923", + "id": "a1f69b37-6964-4157-a771-e48dbbecdd9c", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -175528,7 +175528,7 @@ }, "response": [ { - "id": "5fe8cb18-55f4-460f-b1c9-a987ceb65df3", + "id": "40ce8ec0-058c-455d-96a0-51d6e4515448", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -175573,7 +175573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a290d5-3123-4f27-a36c-c18b3f2d942a", + "id": "ecd95f59-8533-40e2-88a2-b8e36d63ebb1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175618,7 +175618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3883b187-ae25-46c2-b660-d814d8f75627", + "id": "d52a7067-726d-4158-bf29-a8d8934f9b32", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -175663,7 +175663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceb4d54a-6c0e-4694-80e3-c77410c7b6ca", + "id": "d29b4e35-3611-4ff9-8792-17d187f59f7a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -175708,7 +175708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc5adefe-67dc-4bbb-8655-9ec25ef42b20", + "id": "03b41798-d003-4949-a902-ad88167a1195", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -175753,7 +175753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672fd0c6-3c73-42ef-a6da-74df427c7ea3", + "id": "4df0a96a-d022-4832-b9b7-d9d6d01f2ac9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -175804,7 +175804,7 @@ } }, { - "id": "4133c070-4846-4c0c-a2fd-3977eac89514", + "id": "34b81ca0-cae0-4e24-8383-1a8679299520", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -175846,7 +175846,7 @@ }, "response": [ { - "id": "2ebff158-0bbc-4018-ad13-d9699f979a62", + "id": "55f698c0-2455-4530-93cf-3577eb05d673", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -175902,7 +175902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87edddf5-5f05-475d-ad36-169ae242383d", + "id": "6296b7e0-f416-4f39-98a2-9d018830c190", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -175958,7 +175958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49c0a317-07a7-40a2-9959-8b05486982fb", + "id": "b2c30f43-2b4a-4652-bdc3-9786439f924e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176014,7 +176014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "630ab3d0-d476-4962-b3c3-2c8de3ecf482", + "id": "68c0c946-5675-4be0-a8de-010f3d878484", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176070,7 +176070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02ad4f1d-4774-4e2f-9c0c-0bd21c0edb17", + "id": "2d7e87d2-955f-40d8-9648-a3f0177c5a35", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176126,7 +176126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65ef7878-e086-4a7e-8faa-07e5c9b1cd5d", + "id": "f5dec188-855c-4c70-adae-8bd45290e5a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176188,7 +176188,7 @@ } }, { - "id": "f4af55c0-1915-4e70-94d4-cbcaab41e4cd", + "id": "52719006-31d8-4e90-9bc6-74b87b8af383", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -176272,7 +176272,7 @@ }, "response": [ { - "id": "f253227e-d72c-4988-a8d7-738edb3dc0e4", + "id": "e489a582-3470-4a78-aa0e-5a6cf3669a57", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -176370,7 +176370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75ddab43-8f0a-4814-847f-f25f562a04e2", + "id": "551c1fec-ac07-43d7-b2ab-f982ef0b3f48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176468,7 +176468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc9ecea-b2fc-46dc-91fd-6c86e167598a", + "id": "c6060047-a5c5-49b5-9d8b-b29d3bc8795d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176566,7 +176566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "478f1e09-7366-408a-af05-282d0d57aeb9", + "id": "6b724cd7-79e8-4fce-aa8d-cfef614b0eab", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176664,7 +176664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b221fa0-1db7-4f03-b999-85bfda6d03f4", + "id": "1b99c37c-f00b-448f-a557-3a2ee28744cf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176762,7 +176762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80158aa7-a97e-4fcc-9769-2bebcecd2463", + "id": "05664dc5-57c7-4b9c-8323-5a5d45d4260a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176866,7 +176866,7 @@ } }, { - "id": "32f5cbd1-9feb-41b7-bde7-94c64de5b46e", + "id": "b31dd726-5adf-4438-b5d0-daa25fb51c3d", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -176907,7 +176907,7 @@ }, "response": [ { - "id": "8ae13c13-4c65-4c7a-8fc0-abb0ea02d123", + "id": "4f7d6b36-2aab-4b75-9266-4b5cdc2cb683", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -176951,7 +176951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "831dcf51-ea33-4c63-bb52-b4fcc32170cf", + "id": "9ed676cb-1b00-4f67-ac7b-8b5a5568feb6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176995,7 +176995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "346b6224-f349-46cd-ace0-5e0f25d7703c", + "id": "0db4c444-72ef-4d2b-9439-0f363ccdea64", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177039,7 +177039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f3e4f3e-a497-478e-b2b3-dd10f392cd36", + "id": "32432b9e-869f-4eb8-b718-edb8ca4a8d85", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177083,7 +177083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81b66002-f370-4213-823c-3fd0668b997f", + "id": "bbebcdbd-9ab4-4cd7-9c31-725cb4388e65", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177127,7 +177127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e12d3e62-48b5-46cc-9ec4-4f062280cb17", + "id": "be520b1a-4c29-470e-a52e-a7dd2dde84a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177177,7 +177177,7 @@ } }, { - "id": "bee22bfc-0268-4420-ac28-0d423aa25015", + "id": "a3ea3e3a-0cc5-471e-bdc5-83580f830a0d", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -177231,7 +177231,7 @@ }, "response": [ { - "id": "19c7fe56-94ab-4686-ad3b-523c8028f0ed", + "id": "d7e2c464-e6bf-49b5-bab7-fe212fb861aa", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -177288,7 +177288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01c688c-0b4a-4336-8595-5238c81a0376", + "id": "5c674b20-b833-416c-a259-2d8419c53021", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177345,7 +177345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db34b2c4-8791-486d-97d5-3b792922a5a8", + "id": "c527b10c-9de5-4795-bf78-14389832ef42", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177402,7 +177402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd1121c-2088-4c06-85c2-c4041ef19ad6", + "id": "03713d6b-ed88-4a6f-a535-9dc24e2b58bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177459,7 +177459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83267135-8d2a-43d2-bf47-6f9d0d0eee72", + "id": "8ce4069b-03e6-4043-b61a-9164e8070f09", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177516,7 +177516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daf5c8f5-6bdf-4dd2-bf86-0dbfdfd09385", + "id": "6ba4bf9d-0a53-4596-9ab5-b530f6aee881", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177579,7 +177579,7 @@ } }, { - "id": "7a01456c-3e0e-4e7e-b518-20fe0d30fec0", + "id": "7578c9e8-d506-4c58-b78d-ba865676195c", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -177620,7 +177620,7 @@ }, "response": [ { - "id": "186c56e3-6a62-442f-a867-5f8a438aa0b7", + "id": "2c2cd611-00f9-4b24-a50e-aeee6a8abea4", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -177654,7 +177654,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f3ef349f-a6d0-4e16-bbff-19c7715d4c16", + "id": "6ae9ea34-a3dd-4d8b-864d-c61f70d6eaeb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177698,7 +177698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fe0c7ea-1810-4d22-9a48-2bde18544cd3", + "id": "2511bce8-4cbb-4a3b-8e8a-87b98b706b08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177742,7 +177742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e50cc10-9a51-48f9-8fbf-79e07d69d943", + "id": "6762240c-2e3a-409b-b7c0-bd818b025d83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177786,7 +177786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3412312-b817-4435-8a9b-2261c4cce37b", + "id": "ff933d2c-cef1-4d5c-af2a-45e2f93853f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177830,7 +177830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac18ea85-b4db-4a53-9681-096371633b3e", + "id": "8f2f1717-f2ef-428d-932b-e3fd87294cad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177880,7 +177880,7 @@ } }, { - "id": "d8b8bc72-38ec-47da-97be-ade495e87770", + "id": "6c1daf34-b1d2-4f2a-bd6e-02372569b86d", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -177923,7 +177923,7 @@ }, "response": [ { - "id": "b6858fad-c291-4a0e-bad7-fce0c9b43e5e", + "id": "20b7b4f4-2927-4b6e-8202-d342b2c7cc79", "name": "Exported CSV", "originalRequest": { "url": { @@ -177969,7 +177969,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c449a0cd-f431-4b74-bd5b-414dbe4cf659", + "id": "66e0b870-4f54-43f3-8e5d-c6b15a3c2653", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178015,7 +178015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "873418fb-961d-492a-bb2d-cdff621fb2a0", + "id": "5ac2c307-5a90-458e-9777-b5a3eb7fde1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178061,7 +178061,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d5a02fb-fcba-4d4e-b0bb-70c94192e0f4", + "id": "9f4d0cd2-9f4b-42fe-9f2f-a6f2382bba09", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178107,7 +178107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48f23425-e408-4963-8df0-443c5fec826d", + "id": "c4c28c6f-9c15-46d5-afd7-688f236ad040", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178153,7 +178153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59d46941-289c-4c19-924f-cb235807ef29", + "id": "44ac2714-fde1-448a-a1f0-247daafec562", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178199,7 +178199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81a265c2-b204-4538-a533-7cdb9ddde3b5", + "id": "76d2a05a-4b8f-4777-9225-3acc3aa6a111", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178251,7 +178251,7 @@ } }, { - "id": "bdeb8eee-5147-4213-b800-cf7b4f716c38", + "id": "0c6e1568-d57a-443f-a0db-b40651c4b098", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -178309,7 +178309,7 @@ }, "response": [ { - "id": "96f1d88e-a715-493a-9c4d-4982d6b778db", + "id": "d4358794-bad4-4cdc-a39a-15ea496a48f9", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -178370,7 +178370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffcc96cd-9a72-4f7d-a237-b417a8cdc3aa", + "id": "61deb236-0160-4563-a841-150ad6d76289", "name": "Client Error - Returned if the request body is invalid.\nThe response body will contain the list of specific errors with one on each line.\n", "originalRequest": { "url": { @@ -178431,7 +178431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "885bb87e-e238-4325-aa4f-8a3087a09946", + "id": "3d74b574-10d9-4831-8b80-23bb2c6de03c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178492,7 +178492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63a67054-ebd1-4512-8dbc-e7354be9ed45", + "id": "b8ff7173-6392-4d68-985c-df088e2b0e29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178553,7 +178553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11bc49ae-10c8-444a-8e6f-23ed81c183b7", + "id": "34041a64-e26c-4a27-b10e-1484fa3e0486", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178614,7 +178614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd36787e-681e-4d38-bf1a-5dcdd60ab738", + "id": "783ba861-399f-436a-8bc7-ff8a752c4301", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178675,7 +178675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85af3e8b-af60-4cb2-aca1-751df3a9a78b", + "id": "40a8c610-d55d-4cd3-a284-cfdc37202260", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178742,7 +178742,7 @@ } }, { - "id": "62ef25a5-24c0-4e55-b8ee-1009b0ce1533", + "id": "3590328a-c61e-432e-a746-494a75301b73", "name": "Obtain the status of bulk upload on the source", "request": { "name": "Obtain the status of bulk upload on the source", @@ -178785,7 +178785,7 @@ }, "response": [ { - "id": "fcab1a29-da65-4e77-a3be-de27c9857dac", + "id": "bbc360e0-0db4-4965-9c00-c750f5b5c30e", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -178831,7 +178831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9cb53f5-2ee4-40a1-9c8b-43d3842c3027", + "id": "2c25e9ec-1566-49b1-8e0e-ce72153724a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178877,7 +178877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfacef98-9d09-438d-ac41-186a778334e0", + "id": "854f3cea-3ec8-447d-bb3e-cce3d10f381d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178923,7 +178923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5842f1b-97aa-444e-b281-8a16f5b6a1e0", + "id": "e0537283-d445-4448-8a33-4176618588da", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178969,7 +178969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e42bd97-057b-4ef6-b2bf-49363ce0163b", + "id": "c8d2deb0-7d70-4b49-99b6-cd243fc3d626", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179015,7 +179015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6f74462-e405-4318-adef-ad18aa102164", + "id": "d1499048-9011-4c54-951c-7f285d013e66", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179067,7 +179067,7 @@ } }, { - "id": "928da82d-e144-4a36-ba37-6268bde1724f", + "id": "3cd14a25-25eb-49a2-b249-0db0e57afca6", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -179110,7 +179110,7 @@ }, "response": [ { - "id": "10075b0e-1a1f-4d6b-b33a-77f9a7adda40", + "id": "6f51b474-1a92-4a83-866d-9ceebc82a456", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -179156,7 +179156,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8637082d-614e-40f7-966b-a71cb5ac9761", + "id": "9e225e5e-a88b-488f-bcac-32f415770822", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179202,7 +179202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65fb6423-c527-4f94-8b6a-c58a64d8590e", + "id": "8b010fc2-1b7d-4d7f-ad5e-4f11ff6ed0af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179248,7 +179248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e57fe841-dbac-4dd9-a9ca-9e7841bb4286", + "id": "87f9e3e2-2f0a-4a8f-9da9-7eebfc3b522d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179294,7 +179294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9105192-f2e9-458c-8ba4-f2c452f1574a", + "id": "9a82572a-0ca6-4eaa-97a8-5a8cf0125eed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179340,7 +179340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d91dafb-bec6-4c08-a206-bde3dee8ca5d", + "id": "735b88a7-4cee-40a8-89e0-d7c6358f9a54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179386,7 +179386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ee089ac-d7ef-4f79-8c67-9b34522129d1", + "id": "672d4840-a6db-4c93-a95b-2633af52c768", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179438,7 +179438,7 @@ } }, { - "id": "97918790-05b2-4aff-a087-7986d2a2b1da", + "id": "63c5fd9f-1644-43d2-b006-f51a721af268", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -179522,7 +179522,7 @@ }, "response": [ { - "id": "62cd91ef-7fd6-40e2-8caf-746493678a8a", + "id": "215cf555-d454-4631-9673-43f484fe53a5", "name": "List of approval items.", "originalRequest": { "url": { @@ -179620,7 +179620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e500eab-5e46-4ba4-a309-4b9288361ce1", + "id": "646d8d19-b4ce-4680-818e-31fc25d5fefb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179718,7 +179718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feaa82de-5115-4409-9b65-48018f0b7d9b", + "id": "5c538fd7-ff48-4e7d-81b3-0eaf5a8b4e91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179816,7 +179816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faa23694-3a18-4ee5-a919-678ce4c31700", + "id": "2d7f8dc1-bd3f-4c0b-8e4e-2cde389387a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179914,7 +179914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3d7d992-4196-42d9-94fd-1d97db510649", + "id": "0bff6858-c743-4236-81a7-8088bcf36bfb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180012,7 +180012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a36cfb3-1a94-430d-b897-f2012d0d0bf3", + "id": "d8fbe58b-a6e1-4acf-8ac4-75c1f431fba7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180116,7 +180116,7 @@ } }, { - "id": "a131bf13-a3da-4807-9f25-558cdf59fda0", + "id": "6f118f5c-01be-49c8-927a-3f52175e058c", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -180167,7 +180167,7 @@ }, "response": [ { - "id": "c3031aaa-5cdb-475c-bc63-8dadae50c6df", + "id": "8fb994ae-ab85-4842-b83d-f75c90dba38d", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -180221,7 +180221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2990b3a6-df65-46e9-b7f8-eecea85d443d", + "id": "2d84d8e3-f16e-421f-a7c2-47dbe5f1e2a0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180275,7 +180275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf59109d-ed20-4dce-b87e-8ffc42415ce0", + "id": "3c468146-f390-460d-86e1-22b8994a5664", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180329,7 +180329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd027cf2-a13b-458e-8d73-8f4e6a9f5020", + "id": "85801347-e350-42c5-a380-19bc1f091942", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180383,7 +180383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1a8a81e-def9-4948-b029-ba1d3f79cc63", + "id": "6227532e-e429-4a40-9660-9ae39e8943bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180437,7 +180437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e92c096-43bd-42e1-9b49-abca29f3d935", + "id": "850283d2-f646-4480-a72c-684aa8009067", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180497,7 +180497,7 @@ } }, { - "id": "6bff6fd1-e5ae-436c-b1f0-ffd9bdccb5c6", + "id": "363e68fa-ac11-464a-b1cd-4a3db43a517d", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -180552,7 +180552,7 @@ }, "response": [ { - "id": "f072068c-56d3-4770-b492-75262d12d817", + "id": "26cb6e59-b37c-4d75-afce-3684a5176b22", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -180610,7 +180610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e475196c-5579-4db4-a885-3e4aea2787f0", + "id": "8be4c434-76a5-4bf1-b2ea-5349fcd08e4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180668,7 +180668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e033e510-4282-4a6e-bafa-cebf87ba5e94", + "id": "196856e5-5d70-420a-8b44-531739ea3671", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180726,7 +180726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf2102f6-14e5-4537-87b3-80e05aa6e5a9", + "id": "1c17eb18-3d59-495c-9313-fab7f4aa40b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180784,7 +180784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a99dd340-5664-4272-be4f-830ad024c2ea", + "id": "ff596694-b502-4166-980c-aab6926be6f1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180842,7 +180842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a711e583-ab3c-42db-b7fe-ebca8ce6151c", + "id": "9752fe79-1e1c-424c-a597-2aa0fa4f5ec0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180906,7 +180906,7 @@ } }, { - "id": "a9822385-9da4-4afc-b0be-2b57b0c9f39e", + "id": "6f9c64c4-dd3f-41a9-aa3b-10ca2fa33b11", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -180961,7 +180961,7 @@ }, "response": [ { - "id": "176789c3-f5cb-4d8e-b04f-aa60fbbdf222", + "id": "ec75a5cf-4535-49bb-a56c-ff3ee994540c", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -181019,7 +181019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7d5ea99-b365-4a7b-93f3-6c0f4dc4b120", + "id": "56895145-6f6b-4f7d-98b2-5e48aab8badd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181077,7 +181077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1b01898-cf97-4d98-9cef-d4902e1239be", + "id": "65507260-6409-4e53-b399-5f2b15d0120b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181135,7 +181135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72cf4124-1c2e-4071-9937-554a8955cf69", + "id": "0fdbc6dd-0e86-4818-8773-1645cfc8416d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181193,7 +181193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b6dfc1b-712e-4fc0-bf3c-5c269278b31c", + "id": "32fa6d4d-510b-4885-9ded-3fe7158204fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181251,7 +181251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e82c080a-a57a-4de0-848f-0847ca9a0ec5", + "id": "21834997-b81a-4457-bcd7-2f97aee72588", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181315,7 +181315,7 @@ } }, { - "id": "e63b4401-c1a6-4bb0-91eb-dd6a49cce9c8", + "id": "a0b1fa83-46f1-4e25-94d3-69cf640b4788", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -181357,7 +181357,7 @@ }, "response": [ { - "id": "dceb5690-940e-412a-86f3-ab818e514660", + "id": "d8114c70-e2e0-477a-b303-6f700aa4c2cf", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -181402,7 +181402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1296da28-ac85-4e3f-9160-c552079a1d8d", + "id": "e9762db3-c975-4f51-b80a-e4e29714185a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181447,7 +181447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3afc54a-7a9e-4607-a57b-ae6a2180cbfa", + "id": "078c8ad9-f0cc-4d74-b207-38eddc87d1c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181492,7 +181492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04513fa0-8d5b-4190-a2ae-8a169d2b8472", + "id": "d7db8487-26aa-4068-98c1-dceb97cbf2c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181537,7 +181537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bee4e00-a63d-40fb-ab0a-b747182d608d", + "id": "3e4b54b4-45c8-42ac-87f5-ddf79977baf0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181582,7 +181582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6932941b-ac27-4fd8-a3b2-4ba5d957004e", + "id": "8dff8059-d777-416f-8961-382544ce7851", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181633,7 +181633,7 @@ } }, { - "id": "eff15c1c-77c2-440a-bf31-c30d0aa2aae2", + "id": "6e1694cb-c329-4a89-ae7f-49d0fe92b4f6", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -181675,7 +181675,7 @@ }, "response": [ { - "id": "9e3ad16a-eb18-4947-9040-acb63eadc937", + "id": "add423e4-7dba-49c7-a889-ce9ed87a3675", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -181720,7 +181720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eacb84b5-bdac-4b8b-8594-c3664f4a0800", + "id": "5ec937d8-4a02-4508-9753-73bec7486be4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181765,7 +181765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2884510-9e03-491f-95f9-b5b57e534845", + "id": "6f8f5783-505d-431f-9402-defb25c3eaac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181810,7 +181810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1e080d7-7ce4-40a9-b201-55d18c5cdb15", + "id": "cd323860-2571-4428-be0c-c64cbdb515f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181855,7 +181855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1682e38f-f416-40a1-9af6-03210ec13137", + "id": "3cb66ea2-f9b1-4e5a-8659-70b6e2a8a0d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -181900,7 +181900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6317b3f9-6188-4875-a382-96ef368d8750", + "id": "59007d2b-043e-4190-a329-d8ffec05acb6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181945,7 +181945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0b87838-119d-4547-af81-a5a307b89b4b", + "id": "7f1c1ca7-a89d-43d2-ada9-37da95007df4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181996,7 +181996,7 @@ } }, { - "id": "5fa7ddae-fa1e-4e4b-8663-4480ffb20ec2", + "id": "993d8d04-d335-4180-a4f5-2e3f9cf598e7", "name": "Create a new Schema Attribute for Non-Employee Source", "request": { "name": "Create a new Schema Attribute for Non-Employee Source", @@ -182051,7 +182051,7 @@ }, "response": [ { - "id": "ecfcd846-90e8-4010-b9d5-2d8b82262767", + "id": "e3e759ed-f687-49ba-8b78-11309bb13eb8", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -182109,7 +182109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dacdfaf-3545-42f4-9acf-9d0815e2ad5a", + "id": "ebd7e35f-d6a3-4cf1-a7a6-911c6ea907ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182167,7 +182167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "209bf414-b9eb-49f7-92b2-371dd3fe52fe", + "id": "6e411994-d68b-4bb2-b42c-3e4b7b6af205", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182225,7 +182225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7133e36b-4416-4b7e-be07-ea745521171e", + "id": "ade7a5b8-d454-4c43-8083-7e306d883eba", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182283,7 +182283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cf69ab5-1b90-47e7-9a6c-05f754066a3c", + "id": "564d5cd5-24d4-443d-843d-b2d268d24644", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182341,7 +182341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55d449d4-f36f-4f5b-af9f-5830245acd50", + "id": "ccbf18ee-6e55-4051-ad92-672bd9ebfafb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182405,7 +182405,7 @@ } }, { - "id": "3036b145-d1ea-4e1c-860f-e3368a4c67ab", + "id": "8aa21308-4de7-4a6e-b389-05fb56faac33", "name": "Delete all custom schema attributes for Non-Employee Source", "request": { "name": "Delete all custom schema attributes for Non-Employee Source", @@ -182447,7 +182447,7 @@ }, "response": [ { - "id": "d818403f-2ba2-492b-9fd4-fdd6920ed36d", + "id": "d04181c5-07b3-42a9-8a51-8223cb4f8882", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -182482,7 +182482,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3b04f7d3-0741-4b94-8634-f4daf12e99c2", + "id": "d4300b27-979f-4f00-9bee-a3bbf4b02a22", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182527,7 +182527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1d8a183-584b-4798-881e-581c18c8cb66", + "id": "4728ccc3-d947-48d8-afc4-ade9810b5560", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182572,7 +182572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "423594e8-acbb-407d-8494-6da7092a355c", + "id": "f5496ed4-a7e8-40e1-af77-5eee8e953de2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182617,7 +182617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5824b046-ca37-4ecf-83bf-fd6e22b7fc94", + "id": "41abca28-9dc0-4dad-9db3-b60a02e823b7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182662,7 +182662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a75a5168-8a71-4df1-966a-96ba0ff51510", + "id": "65d46b7a-d6a8-4e7b-83cc-7376e7c99175", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182713,7 +182713,7 @@ } }, { - "id": "48b5839d-2ea8-446f-bbb3-0738eb6368ba", + "id": "3bb9f01a-858b-40c9-af0a-8f065a17a076", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -182766,7 +182766,7 @@ }, "response": [ { - "id": "46931e00-f8a2-4d1d-a477-4b6ec117535f", + "id": "12b8c156-5fb6-49e3-9d3d-6d4f737a40e7", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -182812,7 +182812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10bf3d5-4082-455d-a099-e68fc80345f7", + "id": "eea3fb36-0496-43da-b5ba-2e9b793f4a4b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182858,7 +182858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc85dfa3-685d-481e-9384-d892862e931d", + "id": "39ca5d2c-370e-4d98-8c66-0dce31537a25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182904,7 +182904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b64470d8-851e-4664-8d8a-970328d9adfa", + "id": "5909ccc6-89e1-4c96-8b24-928413cbdc99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182950,7 +182950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c22c4943-4745-421a-81e2-2230f89d248e", + "id": "bb8e282d-fbf6-497b-9859-70206214b673", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182996,7 +182996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bf96f58-9fb3-4509-8274-93968a9a5d76", + "id": "38eda311-2713-484e-8ccc-44112c9d7b3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183048,7 +183048,7 @@ } }, { - "id": "d686431f-400c-475d-b77c-b3cf2318799e", + "id": "e7ba57bd-1b14-4c31-9748-457c4a86ef66", "name": "Patch a Schema Attribute for Non-Employee Source", "request": { "name": "Patch a Schema Attribute for Non-Employee Source", @@ -183114,7 +183114,7 @@ }, "response": [ { - "id": "c9aaff0f-38df-421e-9ede-113e12ece1fe", + "id": "67f716b2-c850-45b3-bd21-753aec79684b", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -183173,7 +183173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "082d2dfd-f09f-4aee-a070-22108174e7a3", + "id": "47220195-8064-4484-8bb9-c106666e795f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183232,7 +183232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "991a1d1b-1c6e-4947-bc35-65901c79347c", + "id": "66e23025-df5e-40c6-ab7c-3316ff41e70e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183291,7 +183291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1456ef3c-4251-4cf2-bebc-3a2ed91b09af", + "id": "afb91110-d2cf-4e3f-986e-41bef84c830c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183350,7 +183350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce649ac7-fcf2-4c63-b439-f0f49f3ab0da", + "id": "3391858a-d018-464b-a787-7a5b391e7397", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183409,7 +183409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "161d53d5-e956-4f3c-a1b3-31a1d4a9cbdf", + "id": "25f2c81a-2d35-4ba0-a8de-5c5e5350d323", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183468,7 +183468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69051ddd-541a-48c7-9c14-ed8b9d0fc17a", + "id": "f1cf8e83-b3c1-466e-a883-18277b3cd275", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183533,7 +183533,7 @@ } }, { - "id": "a6ce3419-be52-4680-8d94-212c97f0cdc0", + "id": "ca0b2966-8bde-4865-b67c-079edd689620", "name": "Delete a Schema Attribute for Non-Employee Source", "request": { "name": "Delete a Schema Attribute for Non-Employee Source", @@ -183586,7 +183586,7 @@ }, "response": [ { - "id": "8187eabc-124b-4c06-aebb-3b25e83027f6", + "id": "5542f38e-b939-4df2-9e5a-313326d3f159", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -183622,7 +183622,7 @@ "_postman_previewlanguage": "text" }, { - "id": "95bee2c6-57be-4d1c-bf39-f0c227e6c6ef", + "id": "8b1d0363-3498-427a-9e13-1db20a37bb15", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183668,7 +183668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38e9656b-8562-4551-b68f-889ebb400b12", + "id": "3a0a94fe-bc3c-47c0-9a62-a4e06bab9754", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183714,7 +183714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b6b4064-dd38-49e8-b329-8dc7b9b12417", + "id": "ae610f66-403a-48ad-991f-033f5fcbb95c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183760,7 +183760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8953ac58-2552-4c4a-9fcd-a8078d9f5f3f", + "id": "3b5cb360-ffcd-468a-b72e-1373bad8f247", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183806,7 +183806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b21cf04-7447-408d-9018-4170b2810a8c", + "id": "6611a7ab-3dda-4703-9fff-8c8f680886f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183864,7 +183864,7 @@ "description": "", "item": [ { - "id": "28bd6324-14ff-4b03-8be6-96439f2fc5f6", + "id": "402deffa-e874-4a91-8073-8a766afce58d", "name": "Change MAIL FROM domain", "request": { "name": "Change MAIL FROM domain", @@ -183915,7 +183915,7 @@ }, "response": [ { - "id": "9eb56a64-887e-4579-95ff-91c868734854", + "id": "c45cfe61-5fcd-4a7f-9fac-33ab655f72ce", "name": "MAIL FROM Attributes required to verify the change", "originalRequest": { "url": { @@ -183980,7 +183980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17a38c69-5fa9-4db5-a5ce-b0bf82f8a678", + "id": "5d4a065f-bf0c-4dc7-a683-44224a833a03", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184045,7 +184045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f57fb20-885f-47d7-8097-34fd93b5cf8f", + "id": "923183f4-b1d5-45d6-a88d-0add544c3acb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184110,7 +184110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3788a40-77d2-442c-b803-aca6dee45899", + "id": "2d1c2f06-87c1-4eda-b3f4-1b074c869849", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184175,7 +184175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30c3b2bb-b429-4c78-9e99-87c85dd3025e", + "id": "5d23e1ea-980f-47e8-b66b-3460f1ef9fe7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184240,7 +184240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75ec0136-1baa-4dd8-9a67-1234e80ddcc8", + "id": "408d7df1-a939-44db-81b0-069a80210ed6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184311,7 +184311,7 @@ } }, { - "id": "c2f5e54a-775c-4eb3-98f4-28eeaa647292", + "id": "8e1d8d4d-40d4-4879-8744-dead81697933", "name": "Get MAIL FROM Attributes", "request": { "name": "Get MAIL FROM Attributes", @@ -184365,7 +184365,7 @@ }, "response": [ { - "id": "ed2802ec-4e73-408b-b839-9fe00e236101", + "id": "3d6e786d-ae1e-48be-97c7-f972ee49a4e3", "name": "MAIL FROM Attributes object", "originalRequest": { "url": { @@ -184428,7 +184428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4647e0e8-1374-45dd-bd5f-a7204d61463e", + "id": "45664a71-0e07-47a8-91f1-f4924c01cb5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184491,7 +184491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d21a7e40-8f27-49ad-9113-abe7322a4c03", + "id": "d23e0a26-184c-4d13-b75a-cf1d608d0030", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -184554,7 +184554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abc8fe30-bbb3-42d3-a525-b57e29ad3d28", + "id": "eb80b532-11ee-478b-b736-06bf25909b97", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -184617,7 +184617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed4cf175-6dd9-4505-a579-8be408a7f98e", + "id": "8b6c55c2-457d-4763-a42d-4a14ac0ea592", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -184680,7 +184680,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1ea881d-b9b5-4fd8-bfe0-32a3122441b2", + "id": "a0de1716-c4b4-4f8d-98dc-f7bf13edf427", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -184749,7 +184749,7 @@ } }, { - "id": "0efa17f4-23b9-4608-8d07-630a54c31491", + "id": "e5949944-d3c0-40dd-9b4f-dc5015145575", "name": "List Notification Template Defaults", "request": { "name": "List Notification Template Defaults", @@ -184815,7 +184815,7 @@ }, "response": [ { - "id": "eaedb9cd-230a-4b0c-9ad7-5e2d217003d9", + "id": "72ebda40-cf29-4d25-adf6-c78514762727", "name": "A list of the default template objects", "originalRequest": { "url": { @@ -184890,12 +184890,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"cupidatat elit Ut magna eu\",\n \"text\": \"Ut dolore nisi in\",\n \"blocks\": \"ad dolore\",\n \"attachments\": \"dolore consequat\",\n \"notificationType\": \"dolor fugiat est\",\n \"approvalId\": \"Lorem labore ex\",\n \"requestId\": \"nisi reprehenderit tempor magna\",\n \"requestedById\": \"in ipsum minim\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"adipisicing ut aliq\",\n \"itemId\": \"aute ame\",\n \"itemType\": \"dolore\",\n \"autoApprovalMessageJSON\": \"nulla mollit aliqua dolor\",\n \"autoApprovalTitle\": \"reprehenderit sunt commodo ea\"\n },\n \"customFields\": {\n \"requestType\": \"veniam dolor dolore magna consequat\",\n \"containsDeny\": \"et veniam sunt id\",\n \"campaignId\": \"ea dolor ut\",\n \"campaignStatus\": \"esse enim\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"Ut nisi mollit dolore\",\n \"title\": \"non ad anim\",\n \"text\": \"cillum\",\n \"messageJSON\": \"adipisicing enim qui\",\n \"isSubscription\": false,\n \"approvalId\": \"in ex incididunt\",\n \"requestId\": \"esse sunt \",\n \"requestedById\": \"magna voluptate amet\",\n \"notificationType\": \"consectetur quis\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"ea dolor nulla Ut\",\n \"itemId\": \"ad elit reprehenderit\",\n \"itemType\": \"culpa et\",\n \"autoApprovalMessageJSON\": \"elit tempor laboris\",\n \"autoApprovalTitle\": \"consequat in eu\"\n },\n \"customFields\": {\n \"requestType\": \"non veniam u\",\n \"containsDeny\": \"irure aliqua ea incididunt\",\n \"campaignId\": \"eiusmod qui \",\n \"campaignStatus\": \"dolor anim nisi tempor aliqua\"\n }\n }\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"laborum non\",\n \"text\": \"cillum minim\",\n \"blocks\": \"exercitation adipisicing\",\n \"attachments\": \"deserunt\",\n \"notificationType\": \"cupidatat sit\",\n \"approvalId\": \"ad est ullamco velit Ut\",\n \"requestId\": \"incididunt Duis ea\",\n \"requestedById\": \"ut Lorem laboris amet\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"d\",\n \"itemId\": \"quis tempor cillum\",\n \"itemType\": \"et qui\",\n \"autoApprovalMessageJSON\": \"ut minim ullam\",\n \"autoApprovalTitle\": \"nulla ex\"\n },\n \"customFields\": {\n \"requestType\": \"nostrud adipisicing\",\n \"containsDeny\": \"minim amet dolore nulla commodo\",\n \"campaignId\": \"aliquip exercitation incidid\",\n \"campaignStatus\": \"dolore nisi tempor\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"esse aliquip\",\n \"title\": \"sint Excepteur nulla\",\n \"text\": \"voluptate aute\",\n \"messageJSON\": \"aute fugiat commodo sunt\",\n \"isSubscription\": false,\n \"approvalId\": \"nulla\",\n \"requestId\": \"nostrud minim\",\n \"requestedById\": \"magna cillum et\",\n \"notificationType\": \"labore deserunt enim Lorem\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"consequat elit do\",\n \"itemId\": \"pariatur aliquip enim mollit in\",\n \"itemType\": \"consectetur nulla ipsum pariatur\",\n \"autoApprovalMessageJSON\": \"exercitation qui\",\n \"autoApprovalTitle\": \"irure\"\n },\n \"customFields\": {\n \"requestType\": \"non\",\n \"containsDeny\": \"culpa l\",\n \"campaignId\": \"dolore dolor esse sed\",\n \"campaignStatus\": \"consectetur Excepteur nulla dolor\"\n }\n }\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"Ut in nulla\",\n \"text\": \"commodo\",\n \"blocks\": \"Lorem Duis pariatur proident\",\n \"attachments\": \"aute minim anim do reprehenderit\",\n \"notificationType\": \"occaecat\",\n \"approvalId\": \"quis elit adipisi\",\n \"requestId\": \"Duis exercitation anim aliquip\",\n \"requestedById\": \"esse fugiat\",\n \"isSubscription\": true,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"dolor\",\n \"itemId\": \"nulla ullamco reprehenderit deserunt\",\n \"itemType\": \"consectetur magna dolor proident\",\n \"autoApprovalMessageJSON\": \"eiusmod\",\n \"autoApprovalTitle\": \"dolore id\"\n },\n \"customFields\": {\n \"requestType\": \"irure\",\n \"containsDeny\": \"ex consectetur minim irure\",\n \"campaignId\": \"in aliqua sed\",\n \"campaignStatus\": \"ipsum\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"deserunt\",\n \"title\": \"tempor mollit in sint\",\n \"text\": \"aliqua commodo id veniam\",\n \"messageJSON\": \"Excepteur\",\n \"isSubscription\": false,\n \"approvalId\": \"amet ad consequat aliqua\",\n \"requestId\": \"esse exercitation\",\n \"requestedById\": \"sint\",\n \"notificationType\": \"cons\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"qui culpa ullamco dolor\",\n \"itemId\": \"ut quis magna\",\n \"itemType\": \"ex culpa\",\n \"autoApprovalMessageJSON\": \"r\",\n \"autoApprovalTitle\": \"qui tempor Ut in\"\n },\n \"customFields\": {\n \"requestType\": \"do fugiat culpa exercitation\",\n \"containsDeny\": \"do labore\",\n \"campaignId\": \"non amet sit\",\n \"campaignStatus\": \"dolore fugiat cupidatat ut\"\n }\n }\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"name\": \"Task Manager Subscription\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"slackTemplate\": {\n \"key\": \"quis eiusmod dolore\",\n \"text\": \"sunt est\",\n \"blocks\": \"consectetur ipsum officia cupidatat\",\n \"attachments\": \"adipisicing ullamco\",\n \"notificationType\": \"sunt officia dolor dolore\",\n \"approvalId\": \"s\",\n \"requestId\": \"sunt consectetur in\",\n \"requestedById\": \"anim dolor\",\n \"isSubscription\": false,\n \"autoApprovalData\": {\n \"isAutoApproved\": \"magna sint dolor sunt\",\n \"itemId\": \"sunt\",\n \"itemType\": \"velit laborum laboris quis ut\",\n \"autoApprovalMessageJSON\": \"enim non pariatur ut\",\n \"autoApprovalTitle\": \"magna cup\"\n },\n \"customFields\": {\n \"requestType\": \"cillum\",\n \"containsDeny\": \"est do adipisicing\",\n \"campaignId\": \"deserunt \",\n \"campaignStatus\": \"dolore culpa aliquip dolore\"\n }\n },\n \"teamsTemplate\": {\n \"key\": \"deserunt amet pariatur aliqua Duis\",\n \"title\": \"adipisici\",\n \"text\": \"cupidatat\",\n \"messageJSON\": \"minim id nulla i\",\n \"isSubscription\": true,\n \"approvalId\": \"sunt ut quis tempor\",\n \"requestId\": \"non ut\",\n \"requestedById\": \"reprehenderit ipsum veniam ad\",\n \"notificationType\": \"sunt\",\n \"autoApprovalData\": {\n \"isAutoApproved\": \"dolor adipisicing\",\n \"itemId\": \"ad eu\",\n \"itemType\": \"veniam pariatur est\",\n \"autoApprovalMessageJSON\": \"qui\",\n \"autoApprovalTitle\": \"cupidatat Ut do ullamco\"\n },\n \"customFields\": {\n \"requestType\": \"cillum voluptate occaecat\",\n \"containsDeny\": \"velit esse\",\n \"campaignId\": \"sed\",\n \"campaignStatus\": \"nulla \"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1101930a-173f-4c00-8373-3ca409b7e9a9", + "id": "23ba6bd6-bbb5-4c1e-a847-3c9fcdd72e4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -184975,7 +184975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e81ba68-3b30-41d7-a301-7523a5a21794", + "id": "921c6a0b-ad5d-4b9b-91c9-23232ec5f3ef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185055,7 +185055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e1d9d85-9de1-4b34-ae57-a86d54c5e2fd", + "id": "3879538e-112f-4158-96cc-864f4e401727", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185135,7 +185135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "067e5537-b89b-40b3-a8af-56ddf622b11c", + "id": "b74e6cc1-6549-4b4e-ab28-e523e6cd7492", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185215,7 +185215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a50b0a24-86ca-4dc6-b8a7-0c6a103fabd2", + "id": "3ffc69e2-fd99-4aa2-a979-e4444094e655", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185301,7 +185301,7 @@ } }, { - "id": "593f5c83-7c75-46c6-92e9-d0bc935f39cd", + "id": "0d27d0b7-eb2c-4613-8c59-2f6d417453d2", "name": "List Notification Templates", "request": { "name": "List Notification Templates", @@ -185367,7 +185367,7 @@ }, "response": [ { - "id": "f573e9dc-3037-46ea-bc2a-595d4bea40cd", + "id": "e9893f77-ecb9-4644-90fe-6d02495c0b5f", "name": "A list of template objects for your site", "originalRequest": { "url": { @@ -185442,12 +185442,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"velit dolor\",\n \"teamsTemplate\": \"minim in\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"voluptate ex tempor\",\n \"teamsTemplate\": \"sunt qui\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"sint cillu\",\n \"teamsTemplate\": \"consequat anim\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"sit ullamco \",\n \"teamsTemplate\": \"proident\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45eed47d-c310-41eb-84c8-c48a79f0ade7", + "id": "69bb1357-d49e-4daa-b3b1-9b5ea6388104", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -185527,7 +185527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "404b3905-e8e2-4393-923d-1199dde348c0", + "id": "e6bffd89-1189-4ab6-af57-72bbb9a3bd9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -185607,7 +185607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1cee9e0-3427-4360-81bc-6bb05afe815c", + "id": "db6dacb6-2768-4936-9a6d-63f8526b0095", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -185687,7 +185687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de7b5e0c-7f64-4978-84b0-e24d482b289e", + "id": "7b520727-6520-4961-90cb-4f1eb8a54543", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -185767,7 +185767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52c748e-7238-4eb4-a53e-d093c14f0bfc", + "id": "193ba3f2-fadc-46d1-ac24-2e2c3701e74a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -185853,7 +185853,7 @@ } }, { - "id": "fb18d6bb-c447-410f-a512-e7b846434aa8", + "id": "c7340a0f-2f39-469f-bb2e-7342eec86088", "name": "Create Notification Template", "request": { "name": "Create Notification Template", @@ -185893,7 +185893,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185904,7 +185904,7 @@ }, "response": [ { - "id": "f5c12ba4-0468-4bc7-b625-e55c16c9a2e0", + "id": "71cc7261-96c6-4b24-a8cd-68618d17fcfb", "name": "A template object for your site", "originalRequest": { "url": { @@ -185947,7 +185947,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -185964,12 +185964,12 @@ "value": "application/json" } ], - "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "body": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "da205af6-e5d7-4a0f-a1ba-f81f26c22998", + "id": "09d80f46-d2b8-449d-bc4e-758ae0eaf03d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186012,7 +186012,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186034,7 +186034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30245fe-888e-4f5a-8282-107ca432d29b", + "id": "0450ddb8-8620-4e3d-9aca-18f677a4e0a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186077,7 +186077,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186099,7 +186099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8023fa58-6044-4dc6-a2c5-9e6b152dad3b", + "id": "78ae1262-ffb3-446a-9c04-0d98205c4b14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186142,7 +186142,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186164,7 +186164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "491ca251-2cd1-4187-9114-c2fd98006cd6", + "id": "5278176c-017a-40db-97f4-2b5733fd20fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186207,7 +186207,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186229,7 +186229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42bc6d28-bd06-47b6-a262-8f20d8d34027", + "id": "6c349a24-de84-4823-a208-b1ba59ef2572", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186272,7 +186272,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"est elit reprehenderit veniam\",\n \"teamsTemplate\": \"sit anim Ut culpa\"\n}", + "raw": "{\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"qui ex\",\n \"teamsTemplate\": \"Duis dolore ullamco\"\n}", "options": { "raw": { "headerFamily": "json", @@ -186300,7 +186300,7 @@ } }, { - "id": "02ed233a-6332-4a42-8dd4-1281b90b2e94", + "id": "365265cc-c1d9-4e57-9d07-7b59751addce", "name": "Get Notification Template By Id", "request": { "name": "Get Notification Template By Id", @@ -186350,7 +186350,7 @@ }, "response": [ { - "id": "352938eb-9084-4554-96d2-038e02d12d9b", + "id": "2086e9b4-e1a1-4730-8d17-c23950a2e95d", "name": "A template object for your site", "originalRequest": { "url": { @@ -186398,12 +186398,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"velit dolor\",\n \"teamsTemplate\": \"minim in\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"voluptate ex tempor\",\n \"teamsTemplate\": \"sunt qui\"\n }\n]", + "body": "[\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"sint cillu\",\n \"teamsTemplate\": \"consequat anim\"\n },\n {\n \"key\": \"cloud_manual_work_item_summary\",\n \"medium\": \"EMAIL\",\n \"locale\": \"en\",\n \"name\": \"Task Manager Subscription\",\n \"subject\": \"You have $numberOfPendingTasks $taskTasks to complete in ${__global.productName}.\",\n \"header\": null,\n \"body\": \"Please go to the task manager\",\n \"footer\": null,\n \"from\": \"$__global.emailFromAddress\",\n \"replyTo\": \"$__global.emailFromAddress\",\n \"description\": \"Daily digest - sent if number of outstanding tasks for task owner > 0\",\n \"id\": \"c17bea3a-574d-453c-9e04-4365fbf5af0b\",\n \"created\": \"2020-01-01T00:00:00.000000Z\",\n \"modified\": \"2020-01-01T00:00:00.000000Z\",\n \"slackTemplate\": \"sit ullamco \",\n \"teamsTemplate\": \"proident\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "5dec0e6b-5fb4-49d3-a160-c28ea8021c89", + "id": "61a54fb8-de34-4247-97de-71583cb97f11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186456,7 +186456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84683cdb-3fe2-4bb1-945c-593de6259233", + "id": "96cf502e-1ddf-43e6-9941-1a77b5aea5ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186509,7 +186509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d5c796d-9174-4d55-b103-72fd075f6204", + "id": "76b18c91-ce34-4415-a114-36adc1be5294", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186562,7 +186562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99fac322-12fe-4a89-bb21-cc8d68e1ab2e", + "id": "11e6b4ad-9cd7-4ab8-a27a-a9a3ba73169b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -186615,7 +186615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f91a1ea-100b-4fdb-92ac-c3d7bef77fef", + "id": "c76ae6d6-0eee-4843-9af9-86a96e3c24a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -186674,7 +186674,7 @@ } }, { - "id": "8d95375d-01a1-4bfb-a94d-d4265572c71b", + "id": "66aa3b5c-82b3-4827-a7d6-ebba30266687", "name": "Bulk Delete Notification Templates", "request": { "name": "Bulk Delete Notification Templates", @@ -186726,7 +186726,7 @@ }, "response": [ { - "id": "311de602-6c64-4061-b4a2-4b07e348b1b6", + "id": "fe0801b7-8d20-4a8d-a244-6f148c0f7b60", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -186782,7 +186782,7 @@ "_postman_previewlanguage": "text" }, { - "id": "74710812-a99a-4db7-a92e-e1d71a522fcf", + "id": "a60c5807-46f4-40a1-a9be-2fcd592dfcee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -186848,7 +186848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e6be7d-7cb5-4bb6-a174-929c331e3a06", + "id": "de44ed26-a3b3-4d7f-a723-ff25320474f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -186914,7 +186914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7555c96d-4052-4f1c-b679-f052f26a829b", + "id": "80f21f44-ae09-4044-8cc2-273ec5a36227", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -186980,7 +186980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e45b1ee-1bcb-46cf-bbf3-114b091f0fd7", + "id": "66b07db2-aa04-4f8e-bf73-687c1cefd76c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187046,7 +187046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dc64b19-6cb0-4e2b-9c1e-7f247d3099c5", + "id": "3145b5d2-0d51-40df-83b7-f6e779313da0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187118,7 +187118,7 @@ } }, { - "id": "e5333500-6184-4581-97ca-36dea48b7f2b", + "id": "063a676f-acc8-47d6-bddd-e0460209a19c", "name": "Get Notification Template Context", "request": { "name": "Get Notification Template Context", @@ -187156,7 +187156,7 @@ }, "response": [ { - "id": "23b742c3-9cac-4ae7-90c6-05249c2c98a7", + "id": "be8e6382-b962-41ae-acfc-e772dc5d38e5", "name": "Notification template context attributes for a specific tenant.", "originalRequest": { "url": { @@ -187208,7 +187208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c362c47-c830-43a7-9c38-e1d6033e15dd", + "id": "c0bcfc92-f7b0-4bc9-aed6-1a67bfb391ae", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187260,7 +187260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8553e00-a577-4604-855c-5c1b0851cd58", + "id": "3fdb7038-c439-4394-a2bf-63ad1810cf41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187312,7 +187312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80ba1218-1790-45e2-891c-48b7ac1e2eae", + "id": "19ba6944-deb1-4c1b-bddf-924bf0f01971", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187364,7 +187364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "145b0079-0759-4ed8-8428-4d0c12b70592", + "id": "90b4826e-1bbc-40ef-976e-47b213ec7301", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187416,7 +187416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8653fc6-5c0c-491a-b381-ae23f8adcb91", + "id": "01cde5f7-65e3-4606-a721-b0f0e2c4361b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187474,7 +187474,7 @@ } }, { - "id": "9e4ca796-eaf0-41a1-8e1c-3ef9dd4f5b9d", + "id": "aed1618e-d3b0-4d9b-aaf6-793109d41810", "name": "List Notification Preferences for tenant.", "request": { "name": "List Notification Preferences for tenant.", @@ -187518,7 +187518,7 @@ }, "response": [ { - "id": "ef5643a4-75aa-43f4-a2d9-6aae145d73e1", + "id": "233202f3-a8cd-433a-ae36-920e044d8f78", "name": "Return preference for the given notification key.", "originalRequest": { "url": { @@ -187571,7 +187571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "496c84cd-12df-43b2-a609-2b156c715c20", + "id": "4d429327-72ae-41ef-a51c-d02bed2ac6c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -187624,7 +187624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93c9eb9b-b33d-422c-b146-5ce764f5cecd", + "id": "1433ad5f-a158-485c-aee4-9de2671f33f8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -187677,7 +187677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f598779-fa17-4036-b66b-e4f923fb4ad9", + "id": "ddd1b5f2-ca9f-4561-955e-0145c5004075", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -187730,7 +187730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ea4271-03ba-4dec-af1a-a100f634b3d9", + "id": "ec7e3a60-8594-4a0e-9cab-c432744aec78", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -187783,7 +187783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "918ae883-2536-4626-a597-07ba07b6e14d", + "id": "11df6df0-3c1b-414c-9ee6-35f2c8ede66a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -187836,7 +187836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcdc623c-b1d8-4b3a-97a8-316d851b26cd", + "id": "37e9eb95-ef71-4fce-ba23-872515190a33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -187895,7 +187895,7 @@ } }, { - "id": "47765acd-0580-477a-a8ff-1e0a26be7464", + "id": "48463795-f099-4c9b-8d4c-fd33c0a6192b", "name": "Send Test Notification", "request": { "name": "Send Test Notification", @@ -187946,7 +187946,7 @@ }, "response": [ { - "id": "bc4b9b67-32bc-466c-a57f-6d99d6b4e932", + "id": "c5d8cfa2-8966-4700-8842-a22b4f22cc9c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -188001,7 +188001,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0a06c306-955e-4cd9-b9dc-fc6299317a6a", + "id": "c4ac363c-1dc5-43bc-8c5d-7c88174e72e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -188066,7 +188066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73702136-4e05-4554-b9fa-6b1c9b6587cb", + "id": "d73e9c35-bacb-40ed-b929-0a013753fe16", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188131,7 +188131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89d20994-33f9-4b9d-b376-f482bdaa3ab9", + "id": "a7d12093-e2ef-4eff-8706-4a80bc0a84e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188196,7 +188196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b190ce9-4a98-4a51-ad88-ce382dcf59f6", + "id": "45e82def-71d5-462e-83f1-1bd02169d5eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -188261,7 +188261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a737d91a-5572-4103-9b24-5699bc6d8d6e", + "id": "d9a56a7c-50cd-4768-97f5-0649a4b870f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188326,7 +188326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b60e9bc7-dece-4d28-b9c2-a9a098a19c92", + "id": "9fca9020-4319-4923-ab5a-f7c7878f7f49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188397,7 +188397,7 @@ } }, { - "id": "fbaab25c-cb87-42a8-9d0a-085add1f47df", + "id": "f85ad332-c6c0-4a7b-8a83-74c27fd10fb2", "name": "List From Addresses", "request": { "name": "List From Addresses", @@ -188481,7 +188481,7 @@ }, "response": [ { - "id": "05f6f97f-d2c6-4398-9b89-231f125f7c34", + "id": "e341edc8-122b-489e-b93f-2fbf03183680", "name": "List of Email Status", "originalRequest": { "url": { @@ -188574,12 +188574,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"enim quis laboris aliqua\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"PENDING\"\n },\n {\n \"id\": \"est eiusmod\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n }\n]", + "body": "[\n {\n \"id\": \"reprehenderit Ut\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"SUCCESS\"\n },\n {\n \"id\": \"ullamco enim nostrud\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0a981bfa-d488-4b72-8e71-4aad9d0e344d", + "id": "a837d2dd-0d68-42ec-a25f-03cf8e22b380", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -188677,7 +188677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b26bfe18-5eff-43c0-96e7-d3a971f118cc", + "id": "d3dd8155-fcc8-4b34-9096-13d75f2c0cf4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -188775,7 +188775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c66ec542-83e5-43cb-830d-0a70aafed806", + "id": "f65d45cd-3a58-4ec5-b0b8-e36c41f0f452", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -188873,7 +188873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b1f0530-7990-4ef2-83a5-da46e911dfb0", + "id": "064406d8-0d76-44f7-9592-f1bf7dca28a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -188977,7 +188977,7 @@ } }, { - "id": "3eacf122-81c8-4d32-a6bd-05715bb5cd2f", + "id": "d8685c12-a768-4fa6-bff2-af5863381f3f", "name": "Create Verified From Address", "request": { "name": "Create Verified From Address", @@ -189028,7 +189028,7 @@ }, "response": [ { - "id": "e1946c70-6ce3-405c-9b24-44a0d32577b2", + "id": "f86c3ce4-de1f-4bc7-bde3-507047c0d084", "name": "New Verified Email Status", "originalRequest": { "url": { @@ -189088,12 +189088,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"commodo enim magn\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"FAILED\"\n}", + "body": "{\n \"id\": \"proident laboris\",\n \"email\": \"sender@example.com\",\n \"isVerifiedByDomain\": false,\n \"verificationStatus\": \"PENDING\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "35964a53-6fac-45d1-b35d-88222db55ad2", + "id": "e4d31cd1-4566-4217-9bfb-5a015e330bcd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189158,7 +189158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9eb8a054-5990-4622-9c8c-bc0749e8c6db", + "id": "f7abfbdd-9187-40aa-bf2c-055beb34c600", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189223,7 +189223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfb09bf2-7f2e-4bc9-87aa-85508b1c66bb", + "id": "21d5a828-d77f-46e6-9e29-d574423cfcf6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189288,7 +189288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e7560b4-9790-45e8-ad1a-68e730c51b1f", + "id": "17c4e0ff-1732-4800-a3a5-b9981626208e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189353,7 +189353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3707b33d-9d20-40a9-a766-08b05d295610", + "id": "2ca2c106-ecee-49ee-bbee-1c0b2a105eea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189424,7 +189424,7 @@ } }, { - "id": "5af9b5f9-2e5b-4a9f-95a1-2456f792de0c", + "id": "d0ed298a-c6ae-42cd-b278-5a87c8a68602", "name": "Delete Verified From Address", "request": { "name": "Delete Verified From Address", @@ -189444,7 +189444,7 @@ "variable": [ { "type": "any", - "value": "sint amet", + "value": "dolore ut labore dolore", "key": "id", "disabled": true, "description": { @@ -189474,7 +189474,7 @@ }, "response": [ { - "id": "9abbc8b8-8b41-48c1-a79e-5e9f94e43cff", + "id": "631a29fc-fbb7-4854-a686-1b812721233c", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -189517,7 +189517,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1c1a16bf-02b9-4422-a505-c0b424c9b5fd", + "id": "b310cb74-c868-4211-b15c-575f63df8ecd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189570,7 +189570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f687ffd0-a734-46e6-931e-76f5ea61a9da", + "id": "a33d9cd4-4aee-4a2e-b569-6a3e72721655", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -189623,7 +189623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a775de-ffa1-4812-b26f-4cc370462fff", + "id": "4c7277df-2893-494f-9e21-2a8ea776514c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -189676,7 +189676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "829f60d1-d44a-46b1-b440-6a698d75ac46", + "id": "2a72a50f-2d7f-4b13-ac46-b1c7870406c5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -189729,7 +189729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f37d0ef6-1ee3-44ae-86c3-e0acfaed47f9", + "id": "7884cdc3-c2b2-4a91-87be-bfaa45bf0141", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -189782,7 +189782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17e32d2c-f334-4a7b-be88-04e27539c9fc", + "id": "3ec6e44a-7915-4dc7-8004-24443f784be4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -189841,7 +189841,7 @@ } }, { - "id": "3e38b8d4-c637-4f5c-ab29-acb69d43f67a", + "id": "8151da12-f858-4c62-9dd7-66775f94459d", "name": "Get DKIM Attributes", "request": { "name": "Get DKIM Attributes", @@ -189879,7 +189879,7 @@ }, "response": [ { - "id": "8a0254fd-1b17-44bb-b8fb-0e141d66702e", + "id": "db7ced51-8b9c-4279-ae2e-656a4063cc93", "name": "List of DKIM Attributes", "originalRequest": { "url": { @@ -189931,7 +189931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce6532c-c1e1-431e-ab74-8e5a4c2b78bf", + "id": "d5d6d42a-0203-494c-9cad-d3f74c142f89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -189983,7 +189983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "174fdc26-42a0-4faf-9927-51004a0a2aa8", + "id": "daf674d5-e929-44ff-a8fc-ce0caa65a571", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190035,7 +190035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b45c7f-9975-4fbd-8f43-385c8a42ec00", + "id": "ab723dfe-99a5-4aad-acde-4aae7109f16e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190087,7 +190087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b03592c-24ac-44eb-9c80-7ab62a36a57d", + "id": "4b0d47c4-ba0f-40bf-ad68-c3de8b4836f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190139,7 +190139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44187114-3bf5-495c-9b18-29a3d50d198a", + "id": "598d638e-e050-431e-8658-8fc63dd0d5a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190197,7 +190197,7 @@ } }, { - "id": "bb8d5074-9c47-493c-b8ca-2d7cf9e33eb9", + "id": "ba0e4f2f-1f29-404d-a706-b23e4d8a15ba", "name": "Verify domain address via DKIM", "request": { "name": "Verify domain address via DKIM", @@ -190248,7 +190248,7 @@ }, "response": [ { - "id": "9af14021-d044-46d5-9a13-f072bc767038", + "id": "d2dca118-e289-47bf-977d-672e4cad0789", "name": "List of DKIM tokens required for the verification process.", "originalRequest": { "url": { @@ -190313,7 +190313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0767a917-a600-464c-b1af-26f74a6b9c59", + "id": "c322df16-383c-4094-bf80-693c8ac3e4ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190378,7 +190378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eefc72e-d909-4059-a152-c518d915596b", + "id": "064507f8-6dcb-4369-8268-dd85bd2c3e2a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190443,7 +190443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "898f9201-d2ce-420f-bc94-c812c3e8da0a", + "id": "69e7e818-8f02-47ca-a4bd-de4df310013c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190508,7 +190508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff58ad6b-a006-422c-a87a-e97ae7ff96f3", + "id": "bef60a54-5272-4273-b939-d4b2a308b137", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -190573,7 +190573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a47db8e0-fcdf-4373-9609-55771d68d7d7", + "id": "0f3d52ea-9d46-4816-97da-dbcb2d86b962", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -190638,7 +190638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11c83701-1b46-4004-b638-bcc2d2cef335", + "id": "fe40edee-1775-4fbd-9ed2-d6d5ee2059cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -190715,7 +190715,7 @@ "description": "Use this API to implement OAuth client functionality. \nWith this functionality in place, users with the appropriate security scopes can create and configure OAuth clients to use as a way to obtain authorization to use the Identity Security Cloud REST API.\nRefer to [Authentication](https://developer.sailpoint.com/docs/api/authentication/) for more information about OAuth and how it works with the Identity Security Cloud REST API.\n", "item": [ { - "id": "2253dacc-d793-4a7c-becf-ee2f6bd03a62", + "id": "2e695fea-d6e9-4729-ad54-454ca8c3b57e", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -190754,7 +190754,7 @@ }, "response": [ { - "id": "815cf496-9026-4df8-9e24-4c1f9d9c6657", + "id": "a21da2c4-5b84-47ee-8fff-ba3cea67c304", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -190802,12 +190802,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"officia irure ad\",\n \"metadata\": \"in sint cillum Excepteur\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"ipsum aute aliquip do sunt\",\n \"metadata\": \"esse qui ex ut\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"non aliquip esse\",\n \"metadata\": \"dolore officia\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"ad est\",\n \"metadata\": \"dolore\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "eabc152f-3d97-454b-8f14-f06da025b3a0", + "id": "e8cb336e-1a58-4bf8-8389-979b319ba3eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -190860,7 +190860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "118dec39-c5c5-4ca0-a210-fd397b34bc2e", + "id": "7ad8b18a-2a13-4f0e-a805-d302be14dad5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -190913,7 +190913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cbc7372-d311-4d90-8d4c-55af05057d8d", + "id": "c2bceea2-8a31-45f4-b0ae-0c38ee123f6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -190966,7 +190966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aa04c62-847b-4e7f-871f-35b08213d01a", + "id": "89dbd443-6516-46fe-87f2-78b5b17b7f33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191019,7 +191019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e304bde4-6a00-4ad6-82d7-8b34fbc086b7", + "id": "0429f5d8-844d-4136-a5e7-d9df55b86c7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191078,7 +191078,7 @@ } }, { - "id": "a202a344-5769-4856-bee7-760ab9fded0f", + "id": "ffb9fe9d-697b-48ac-ba81-5aa2441ccb28", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -191120,7 +191120,7 @@ }, "response": [ { - "id": "9836cb8d-d54a-4d5f-b5d9-9186ef05c48e", + "id": "d2f5c9a2-2ce7-4b95-8cd6-13a0e5b8eed4", "name": "Request succeeded.", "originalRequest": { "url": { @@ -191176,7 +191176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b64bb537-ac74-42ad-9712-71a5c05dd0b4", + "id": "703aecf1-02bb-433b-824a-d6ed4cd7dac4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191232,7 +191232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1e74dea-c1fc-47cd-86ad-c134e2bc0dc8", + "id": "2edd3c66-7409-4041-bb8e-9e0503376947", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191288,7 +191288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1ec7bdf-a12c-48d8-bc61-da0a0b68d61a", + "id": "69509547-a401-4985-8e6d-98b5a41462fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191344,7 +191344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dff8c26a-3446-48ad-8a03-702fcc63717a", + "id": "b2f596ff-af71-44c8-a4bb-695cfeddf6f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191400,7 +191400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc21fdc7-08b2-44b4-92a1-521b547910c6", + "id": "de988b06-a010-4e99-bbf2-212bc802f5c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191462,7 +191462,7 @@ } }, { - "id": "e70d370e-53db-4098-8b5d-4d255a0b8b92", + "id": "e651aaaf-6d3b-4134-8241-1b9e799b468b", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -191503,7 +191503,7 @@ }, "response": [ { - "id": "3451c78c-e4f2-48ca-8be5-bfb7b8a2690b", + "id": "b6712590-d566-4a70-a484-a54285795bf1", "name": "Request succeeded.", "originalRequest": { "url": { @@ -191542,12 +191542,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"cillum eu\",\n \"metadata\": \"eu in dolor fugi\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"in aute ex incididunt\",\n \"metadata\": \"sunt Duis\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "de15390a-1884-44cd-bb77-289cc27f0df6", + "id": "2a04d792-f18d-40cd-8dda-2f6ccddf89be", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191591,7 +191591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1201f45e-fd45-443a-9c04-ef1b6e0e4a28", + "id": "1a248c73-31ea-4228-ae3b-c348d5815997", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191635,7 +191635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0953b0a-42d4-4f30-8299-c0dd7a314558", + "id": "a68a7317-dbc1-4d5d-8963-d3b6f8eda976", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -191679,7 +191679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15e7e99f-c10c-4f1c-b0ec-2d7d972fce74", + "id": "5d6f8a9a-509f-4a23-abfb-0c267074abcd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -191723,7 +191723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c5c68c-3d63-485e-bef3-7ecac7e3f1c1", + "id": "79d8faa8-919e-4617-9041-5c793c267bce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -191767,7 +191767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a135d28-43f2-4dd2-88d6-e79ce133c51a", + "id": "20b23bcc-1c32-4693-86b5-801d2c0cea46", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -191817,7 +191817,7 @@ } }, { - "id": "d93a8a65-0bbd-4480-9782-029384ff3ffd", + "id": "f144fc8b-d0a8-4491-a884-ad38fe7c9418", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -191858,7 +191858,7 @@ }, "response": [ { - "id": "5b4db01e-6b92-4f67-81d0-6623dd7cc4ba", + "id": "8a0edeff-0ec6-4c98-92cd-0536e68a32e6", "name": "No content.", "originalRequest": { "url": { @@ -191892,7 +191892,7 @@ "_postman_previewlanguage": "text" }, { - "id": "944811fe-9a56-447d-b906-af70b011acd1", + "id": "d3b42f9f-1662-4c10-8b1f-0e14ce457bc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -191936,7 +191936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e601751-9d32-433f-ac62-1480fb15061a", + "id": "0c3315f4-2523-4800-a60c-dea94a0d114a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -191980,7 +191980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48e3e2e4-bc88-4897-b0f6-5db744816e3d", + "id": "8503e179-4e0e-431c-abf9-f36fc8d2c328", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192024,7 +192024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05d22b48-a606-407c-a72e-ccd5576bb60d", + "id": "c600b95c-9c99-4ad9-b86b-fdb7f369850a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192068,7 +192068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b3a9453-8e10-46cf-8be5-5b29ab9b11c8", + "id": "071a9490-be6c-41c9-b827-e7059f3b98f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192112,7 +192112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90115cf-6ace-4f20-8ef5-4ac4e9b04912", + "id": "5205e314-1a29-4e99-a81c-1436f1a5c680", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192162,7 +192162,7 @@ } }, { - "id": "47ebf19a-dc02-4d52-9c50-7a69bbe544b1", + "id": "5538a873-0103-473d-a5fc-7f56a0b5fc66", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -192216,7 +192216,7 @@ }, "response": [ { - "id": "544339f8-205e-4080-bb4c-e0a0202f81e2", + "id": "79159f9f-cf8a-481c-9a68-a7d2dbcd4904", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -192268,12 +192268,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"cillum eu\",\n \"metadata\": \"eu in dolor fugi\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"in aute ex incididunt\",\n \"metadata\": \"sunt Duis\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "160cb06e-888c-4404-824b-64f9fdda6ba7", + "id": "dc855c02-d321-42cd-a1c4-a660ca9d95a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192330,7 +192330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf08343f-0c8f-4c5f-bd45-a791abd3c662", + "id": "c0ded882-af5e-4f05-a10f-f94e3bd3eb03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192387,7 +192387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15681cad-e59b-4521-b4da-d385206a7136", + "id": "250cab58-b0b9-4ea2-9871-e958a60fb886", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192444,7 +192444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c60e6bb-8ddd-4f54-932a-eaa44d1559cb", + "id": "e4bf5b8c-c0bf-45d7-b5ca-f4a114a963dd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192501,7 +192501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72a06eef-bf3b-4a2e-95af-0afaa2203f68", + "id": "b9503949-d9ad-4e82-87b8-7270da52a24f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192558,7 +192558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8c4e6e5-c921-4faa-807f-4675a7edbb08", + "id": "ab30b254-9f98-4e49-bbab-883b80ea7616", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -192627,7 +192627,7 @@ "description": "Operations for managing org configuration settings (eg. time zone)", "item": [ { - "id": "c099a810-21bb-4712-8783-28d82cf2ec1e", + "id": "49af844d-812e-499e-99e2-9dbf0ec10cd9", "name": "Get Org configuration settings", "request": { "name": "Get Org configuration settings", @@ -192665,7 +192665,7 @@ }, "response": [ { - "id": "096af739-5be2-4334-a770-73a9cc8db266", + "id": "a9060895-bcd6-4d62-9da2-ca4503981d8a", "name": "Request succeeded.", "originalRequest": { "url": { @@ -192712,12 +192712,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"qui nulla enim\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"laborum reprehenderit in Excepteur velit\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "6b946edd-3634-4e4d-b55b-c3c8ff4deaf3", + "id": "4b41371e-833d-4d73-a5c6-9bf4a622318b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -192769,7 +192769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d48ddd3-a6a5-47b8-a004-b7e9a2de9632", + "id": "c497d458-768d-4701-8f08-8e43dc44e479", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -192821,7 +192821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3a06ff3-6eb9-4d36-b035-f92711836361", + "id": "1ee17b3d-f792-4391-998f-12b7f6e89a52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -192873,7 +192873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f84429d-91e1-4796-b562-4ed9ce855e37", + "id": "24bd6b54-c54f-41bd-acf6-060037626a7f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -192925,7 +192925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "281629ee-c0a6-4427-ba66-cc76a73a4444", + "id": "07445d08-5072-4778-b0d5-d7ab715e1af4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -192977,7 +192977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39dba705-533e-4193-926c-07e888e42869", + "id": "e9d79937-3601-40e8-94dc-1ab56fa05344", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193035,7 +193035,7 @@ } }, { - "id": "a2da27c2-50bf-40a7-9632-6393cc4c7f9e", + "id": "6ae3426d-30a1-4126-9361-9a274e2c5c39", "name": "Patch an Org configuration property", "request": { "name": "Patch an Org configuration property", @@ -193086,7 +193086,7 @@ }, "response": [ { - "id": "92305d07-ba0d-4813-88e6-972ce7b7d44c", + "id": "0b713477-a1b7-4c1f-b5d3-3404eac06408", "name": "The Org was successfully patched.", "originalRequest": { "url": { @@ -193146,12 +193146,12 @@ "value": "application/json" } ], - "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"qui nulla enim\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", + "body": "{\n \"orgName\": \"acme-solar\",\n \"timeZone\": \"America/Toronto\",\n \"lcsChangeHonorsSourceEnableFeature\": false,\n \"armCustomerId\": \"DE38E75A-5FF6-4A65-5DC7-08D64426B09E\",\n \"armSapSystemIdMappings\": \"laborum reprehenderit in Excepteur velit\",\n \"armAuth\": \"epiYNTRYA2S7swisDWk1Zv4VMNgvqEjiBh5_ufuCWsma2m-5XADijqBg0ijXLby5nS6lxZNXabhGnAPGeDGc4V3jQKrhwV-UHypRLs8ZLgOjiQNus9NimS0uPdKomRW6TFWqXyfnYd-znNgbbVuwUy9GyD9ebDVJSntPastxSx7UcyGuWBqfNZYpuxKRWe_7TVY60qL55jUqyz8N4XUbbdcxdbZ0uik6ut-Bv90MKTbZexBW_PR4qcgIkaEs4kIenLyBxnGziYo7AO0tJ8bGHO8FJRkibCpAQIt7PISLo7Gg_Xf9j10dKq2YDgy4pPTvz3fE2ZHYnXCXvXFSA-vVag==\",\n \"armDb\": \"EU\",\n \"armSsoUrl\": \"https://your-arm-sso-url\",\n \"iaiEnableCertificationRecommendations\": true,\n \"sodReportConfigs\": [\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n },\n {\n \"columnName\": \"SOD Business Name\",\n \"required\": true,\n \"included\": false,\n \"order\": 2\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "30026e05-2611-4627-94b4-713cded03c94", + "id": "f88566a5-4eeb-437c-b19a-45c28de52d58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193216,7 +193216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "878e7de1-0837-4155-a2e5-658699c4ebd6", + "id": "92259a5d-b8d0-4213-9e5f-f1e9264fc82b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193281,7 +193281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2694e1ec-151a-4a54-8174-e7e6a99cc64f", + "id": "8c393503-5483-4504-a7f8-07e84f406c72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193346,7 +193346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82b39419-48e2-4945-8354-e8907cbc8ccb", + "id": "ae3352a9-4184-457d-9f6b-1c1d94673639", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -193411,7 +193411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfd96b7b-d99f-4d26-a75b-bd32050bceb1", + "id": "c69eac13-069f-4b2a-9528-f36e148583ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193476,7 +193476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b00491ef-8e9d-4b51-b17e-82f672d10743", + "id": "a9b450ea-6e41-40b7-823a-2f4a4b3993d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193547,7 +193547,7 @@ } }, { - "id": "3435554f-3180-4638-8e06-020ca64ccb75", + "id": "ea6a404b-cc0a-4882-a8ad-c1b0d4cb1b40", "name": "Get list of time zones", "request": { "name": "Get list of time zones", @@ -193586,7 +193586,7 @@ }, "response": [ { - "id": "93c9526a-1126-41b0-a01b-90d675050888", + "id": "44ae14ee-2c63-41c1-bb12-05e2ec3c9685", "name": "Request successful", "originalRequest": { "url": { @@ -193639,7 +193639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19729f6c-d49a-4be6-b4e8-de9db52a1cf2", + "id": "633c39e6-d999-4a1e-9862-8d69f5fe542c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -193692,7 +193692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3fe3c2a-9ebe-4629-8b0e-6df5b319be21", + "id": "d228761a-213d-485e-97b2-afdcb066bf51", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -193745,7 +193745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a4b4f47-68ab-4d3f-a2ee-d107db60220b", + "id": "4fb7f7b8-d584-45eb-9dda-3fbb732795fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -193798,7 +193798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ed592b5-5758-4695-a931-244fa0991d15", + "id": "fd7dbc95-450d-465e-8983-3ef9bb1f8bf9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -193851,7 +193851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1dbcb8af-4ba6-4164-8afb-f84d03f53cf8", + "id": "98d25caa-9dbb-43ec-864c-bc83cb655182", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -193916,7 +193916,7 @@ "description": "Use this API to implement organization password configuration functionality. \nWith this functionality in place, organization administrators can create organization-specific password configurations. \n\nThese configurations include details like custom password instructions, as well as digit token length and duration. \n\nRefer to [Configuring User Authentication for Password Resets](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html) for more information about organization password configuration functionality.\n", "item": [ { - "id": "102f300e-8338-45b0-a478-f8e9bd47fa33", + "id": "6f5c13f6-295d-4ffe-9100-f75c13cd1fb9", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -193945,7 +193945,7 @@ }, "response": [ { - "id": "ae9cfa54-01b2-4b9a-914a-7193d6956099", + "id": "3394dceb-1a57-4153-8cdb-5d911b2609ea", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -193988,7 +193988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf6a5927-d70f-4429-b027-8100b9d42081", + "id": "d50cb1cf-de9d-4f9e-bab1-f68c1627d496", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194031,7 +194031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95133f68-23d1-4572-b45f-5001c02c373c", + "id": "dd1c13ef-4943-434a-8aa8-64399e512b25", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194074,7 +194074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1985883f-c4f8-417b-ad43-9aaf071a4dc8", + "id": "e4d77e7c-a40c-44ed-bc31-2d236eedfcfd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194117,7 +194117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "402b27e2-4dd6-4650-84aa-ac6a479b70fe", + "id": "00ede247-9054-4ba0-8aaf-dc3159fde06d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194160,7 +194160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef00f258-5eaf-405b-a28e-295d28f9179c", + "id": "d5142a5e-e5db-4e3a-aef2-53f039da00f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194209,7 +194209,7 @@ } }, { - "id": "7cc2c702-200a-4fbf-909a-32ad2e1e4347", + "id": "22006bd5-1d89-42a1-b880-4d4a2a8fb033", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -194251,7 +194251,7 @@ }, "response": [ { - "id": "209489d3-bf10-4945-8be5-3986c4939409", + "id": "99d9258e-71f9-4598-8b92-72e068a5fd60", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -194307,7 +194307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dc64443-1f8d-4e27-acd6-2cb256c76b50", + "id": "d8c1c14f-63fe-4ef5-815d-9ae1eaeeb4ee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194363,7 +194363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e216c43f-75dd-4071-af7e-733d24a96ee2", + "id": "3d844c48-f2f8-4fc2-8976-d3774dfe8f91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194419,7 +194419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58779c5b-5611-4188-ade6-24c7b9d68c4a", + "id": "1b19c0a7-75f4-406a-822c-b90d4d160d5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194475,7 +194475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fdbe83a-f562-4fa8-8a4b-41c934edb6b8", + "id": "3c8a0eff-038c-4148-8649-98d6796af6bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194531,7 +194531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e94c63a-6758-47aa-adb6-08ce7149539e", + "id": "6a3b16c6-ab96-4801-89cb-73f2b716ee56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194593,7 +194593,7 @@ } }, { - "id": "6fc59ef7-6f24-4c58-8639-6dc75a432fe4", + "id": "fb3b280f-cc85-4272-87bc-78895544963c", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -194635,7 +194635,7 @@ }, "response": [ { - "id": "708d1d78-f76e-4cc7-a643-7c834925f5d5", + "id": "a405e2a2-9c70-447e-a9a9-05a14ba82f5b", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -194691,7 +194691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "878fc9e1-08c9-475d-948a-0f37811f6afa", + "id": "016b713a-f268-4596-88cf-187f5eb1c7c3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -194747,7 +194747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c793da5-86b3-4f57-aa97-baa795010c56", + "id": "e46a01a4-7754-473f-b4b6-354971a0440c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -194803,7 +194803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2e111fd-4fa1-42c7-b489-c1f9b1fd49d4", + "id": "2e32f79b-02e2-4256-9509-fe93a82324fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -194859,7 +194859,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51261578-5e94-413e-9e6d-a0bc69556d81", + "id": "58dad01f-556a-40c9-91e7-f89ff5836c21", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -194915,7 +194915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "331ca462-4755-44ec-b228-ae8bc7503c09", + "id": "c6d0e95d-cb72-4a53-a20e-e6707ee1c21a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -194983,7 +194983,7 @@ "description": "Use this API to implement password dictionary functionality. \nWith this functionality in place, administrators can create password dictionaries to prevent users from using certain words or characters in their passwords. \n\nA password dictionary is a list of words or characters that users are prevented from including in their passwords. \nThis can help protect users from themselves and force them to create passwords that are not easy to break. \n\nA password dictionary must meet the following requirements to for the API to handle them correctly: \n\n- It must be in .txt format.\n\n- All characters must be UTF-8 characters. \n\n- Each line must contain a single word or character with no spaces or whitespace characters.\n\n- It must contain at least one line other than the locale string.\n\n- Each line must not exceed 128 characters.\n\n- The file must not exceed 2500 lines. \n\nAdministrators should also consider the following when they create their dictionaries: \n\n- Lines starting with a # represent comments.\n\n- All words in the password dictionary are case-insensitive. \nFor example, adding the word \"password\" to the dictionary also disallows the following: PASSWORD, Password, and PassWord.\n\n- The dictionary uses substring matching. \nFor example, adding the word \"spring\" to the dictionary also disallows the following: Spring124, 345SprinG, and 8spring.\nUsers can then select 'Change Password' to update their passwords. \n\nAdministrators must do the following to create a password dictionary: \n\n- Create the text file that will contain the prohibited password values.\n\n- If the dictionary is not in English, they must add a locale string to the top line: locale:`languageCode`_`countryCode`\n\nThe languageCode value refers to the language's 2-letter ISO 639-1 code.\nThe countryCode value refers to the country's 2-letter ISO 3166-1 code.\n\nRefer to this list https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html to see all the available ISO 639-1 language codes and ISO 3166-1 country codes.\n\n- Upload the .txt file to Identity Security Cloud with [Update Password Dictionary](https://developer.sailpoint.com/docs/api/v3/put-password-dictionary). Uploading a new file always overwrites the previous dictionary file.\n\nAdministrators can then specify which password policies check new passwords against the password dictionary by doing the following: In the Admin panel, they can use the Password Mgmt dropdown menu to select Policies, select the policy, and select the 'Prevent use of words in this site's password dictionary' checkbox beside it.\n\nRefer to [Configuring Advanced Password Management Options](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html) for more information about password dictionaries.\n", "item": [ { - "id": "d82ecabd-7c19-43cd-8429-8554e3e3b196", + "id": "758ca8aa-2460-4442-b8db-f0693be58661", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -195012,7 +195012,7 @@ }, "response": [ { - "id": "200b4232-f88c-43fc-930e-3bb4d077aaaa", + "id": "84901155-9e37-40d6-adbc-3a16834ec6ee", "name": "A password dictionary response", "originalRequest": { "url": { @@ -195050,12 +195050,12 @@ "value": "text/plain" } ], - "body": "sint amet", + "body": "dolore ut labore dolore", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "10b217a1-8dcc-4dcc-a9f0-852fde2bf716", + "id": "e5c48681-df11-42cd-9112-6bb6d0ee5e87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195098,7 +195098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0d30555-c84d-4e73-bfcb-f90b632d5f90", + "id": "4286f4d9-7dfc-4836-9541-63098492bc6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195141,7 +195141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea2e3ddc-20fa-4169-b38d-9b0f482f3ef8", + "id": "91c2ef5b-933c-4d9c-901e-5ecb9b45bd68", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195184,7 +195184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c310f0b2-cd5b-479f-bf98-fe6e07caae7d", + "id": "8f488450-c27b-44e9-aa03-5575e9420f58", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195227,7 +195227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c76ee05-80ab-451b-8e78-3b54b7a46e6f", + "id": "3c8cd0bd-e1f8-46a1-9772-95e76549457d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195270,7 +195270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fda21487-c313-4dea-836a-ca943d8df600", + "id": "aec71edd-d96d-4de1-a03e-eaf29e0702df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195319,7 +195319,7 @@ } }, { - "id": "fbe9c631-67d7-4092-a68d-9554efc133fa", + "id": "ae4ca72f-11d0-4e08-af37-23a32c70697e", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -195364,7 +195364,7 @@ }, "response": [ { - "id": "434c2b6d-fa4f-43f6-94e9-a45fe831a1cb", + "id": "bf99145d-da1f-40d3-9a5f-13d55e33355d", "name": "Successfully updated.", "originalRequest": { "url": { @@ -195413,7 +195413,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a4545349-b5f0-4cd6-9f7d-ac2e1f159abc", + "id": "36ebf6e6-6104-4635-a01d-849b37f93908", "name": "Created.", "originalRequest": { "url": { @@ -195462,7 +195462,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5e0264e9-8daa-4fce-92d2-940553f69dc1", + "id": "e679f039-32c0-47c0-b640-13a8f9c322f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195521,7 +195521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e822bb46-dfc9-4e48-a7e4-7f6d675b677f", + "id": "16bbec81-41fe-4630-a8f5-bf8f02d45637", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -195580,7 +195580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90a5b054-1e0e-4e9a-aeac-2cde3f0d773a", + "id": "528aa845-f1aa-4059-9b02-17d72b426a0c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -195639,7 +195639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf2d9ce8-a2ed-498e-91a7-5b1212de2a99", + "id": "2a51d99c-f164-4798-8d30-2d2f62a4e007", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -195698,7 +195698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19e51236-04f0-4260-9982-c0892363f2ad", + "id": "f16a286f-8726-4efc-87bb-eb8ecb72b67f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -195757,7 +195757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7cafdff-abe5-4aa8-b8f0-84f66053b34a", + "id": "2398727a-be2e-440e-9b31-37e48f74261b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -195828,7 +195828,7 @@ "description": "Use this API to implement password management functionality. \nWith this functionality in place, users can manage their identity passwords for all their applications.\n\nIn Identity Security Cloud, users can select their names in the upper right corner of the page and use the drop-down menu to select Password Manager. \nPassword Manager lists the user's identity's applications, possibly grouped to share passwords. \nUsers can then select 'Change Password' to update their passwords. \n\nGrouping passwords allows users to update their passwords more broadly, rather than requiring them to update each password individually. \nPassword Manager may list the applications and sources in the following groups:\n\n- Password Group: This refers to a group of applications that share a password. \nFor example, a user can use the same password for Google Drive, Google Mail, and YouTube. \nUpdating the password for the password group updates the password for all its included applications.\n\n- Multi-Application Source: This refers to a source with multiple applications that share a password. \nFor example, a user can have a source, G Suite, that includes the Google Calendar, Google Drive, and Google Mail applications. \nUpdating the password for the multi-application source updates the password for all its included applications. \n\n- Applications: These are applications that do not share passwords with other applications.\n\nAn organization may require some authentication for users to update their passwords. \nUsers may be required to answer security questions or use a third-party authenticator before they can confirm their updates. \n\nRefer to [Managing Passwords](https://documentation.sailpoint.com/saas/user-help/accounts/passwords.html) for more information about password management.\n", "item": [ { - "id": "60389a78-8bc5-42dc-82a2-580900894f0d", + "id": "e9b17947-dbc0-4601-942f-b21517140b49", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -195870,7 +195870,7 @@ }, "response": [ { - "id": "93ab1fb3-3e70-4a0f-8747-3edb2064df1d", + "id": "52a99e9c-f5fe-45e8-91bb-a64e8443ca96", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -195926,7 +195926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ea1200b-851e-4137-9717-90d52f24248f", + "id": "1056df28-0e35-404e-bf0b-fc86f43a3dfb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -195982,7 +195982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "250b6884-0274-45b8-a185-81129de8f3b6", + "id": "7ad260f1-73b3-4c03-9a1e-869f31414c7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196038,7 +196038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19422716-4691-4140-871e-8f0903ec6092", + "id": "25275073-e05d-495c-a717-7fb00f8a90f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196094,7 +196094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59eb634e-c2ba-43e8-8c51-245e753c00b8", + "id": "732f2bc0-4137-430c-9148-4a3b749368aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196150,7 +196150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52b4a161-f14f-42b3-9747-3181af5dcddf", + "id": "6dd9c23a-1c50-4bf1-a109-f4c0c41cdea5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196212,12 +196212,12 @@ } }, { - "id": "b1e3b254-c905-4aed-9572-e01a6161a4de", + "id": "2dd9cf38-52fa-4f40-8dcd-a23958f4daa5", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", "description": { - "content": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nYou can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). \nTo do so, follow these steps:\n\n1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. \n\n2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. \n\n3. Use [Set Identity's Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password:\n\n```java\nimport javax.crypto.Cipher;\nimport java.security.KeyFactory;\nimport java.security.PublicKey;\nimport java.security.spec.X509EncodedKeySpec;\nimport java util.Base64;\n\nString encrypt(String publicKey, String toEncrypt) throws Exception {\n byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey);\n byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\"));\n return Base64.getEncoder().encodeToString(encryptedBytes);\n}\n\nprivate byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception {\n PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes));\n String transformation = \"RSA/ECB/PKCS1Padding\";\n Cipher cipher = Cipher.getInstance(transformation);\n cipher.init(1, key);\n return cipher.doFinal(toEncryptBytes);\n}\n``` \n\nIn this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. \n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", + "content": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nTo generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command:\n\n```bash\necho \"myPassword\" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64\n```\n\nIn this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint.\n\nTo successfully run this command, you must have OpenSSL installed on your machine. If OpenSSL is unavailable, consider using the Virtual Appliance (VA), which has OpenSSL pre-installed and configured.\n\nIf you are using a Windows machine, refer to this [guide](https://tecadmin.net/install-openssl-on-windows/) for instructions on installing OpenSSL.\n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", "type": "text/plain" }, "url": { @@ -196254,7 +196254,7 @@ }, "response": [ { - "id": "bf49f900-f06d-4001-88be-463a24af18c4", + "id": "81bca1b3-e49e-4b4b-b6a8-b380cabedbba", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -196310,7 +196310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046762a4-26b5-4979-9e6c-b7242ff77a73", + "id": "3aa4e0fc-2d42-4e29-8f24-03fe922b9b98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196366,7 +196366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81602419-8a91-4b50-979f-6a1a96e25835", + "id": "4dab600a-f29b-4fc7-a837-f4eed0c93f7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196422,7 +196422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40e85d4f-b98c-46d3-8bd3-5e87a5c8eea5", + "id": "76576a22-958d-4a87-ba1c-2478fa8d5b95", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196478,7 +196478,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30681228-4cff-4e0a-be4f-aebfae32573b", + "id": "ec84cba4-1cc9-4815-9ff0-5b8ab3f7cb9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196534,7 +196534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8724b6a7-a287-46fa-8ea7-0f525c80958f", + "id": "742a872b-6dff-4f84-8cd4-0b36a4858ed2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196596,7 +196596,7 @@ } }, { - "id": "006285e6-f999-4b61-bf8f-ae4e59d25c61", + "id": "e3612eb6-9c52-4aa9-9ef1-4759ed63d1b6", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -196637,7 +196637,7 @@ }, "response": [ { - "id": "a59342e6-3866-465a-8f36-c55f00432d2c", + "id": "371b1d34-7fc3-406f-a9e2-46b5b958b85a", "name": "Status of the password change request", "originalRequest": { "url": { @@ -196681,7 +196681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7de4b3b2-6fec-4cd8-ae6e-0770b502a204", + "id": "666ae682-2b0a-43a6-a49e-cc35a71d167c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -196725,7 +196725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6d63c0c-04ca-4591-8f02-ef7f0439a6eb", + "id": "43ab6d1b-16f8-41e1-a562-6defb2c7401f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -196769,7 +196769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be1e0071-db4f-4c28-b4cd-977c5e51e55f", + "id": "55c519b7-69ab-4701-a3ad-aef0605d887e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -196813,7 +196813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1fa5d34-48ea-40ce-b550-32a314992c56", + "id": "954b2367-6868-4c38-97dd-7c3dd7b63445", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -196857,7 +196857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0061e06-1e80-497d-86e6-5927687c348f", + "id": "3246d34e-e0c3-4813-a864-1aaa6bc41854", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -196901,7 +196901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "892e667f-d0b3-4387-8bee-ccedd7b2f8e4", + "id": "f458f91c-2ead-4ea8-9b61-184c13aa2881", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -196951,7 +196951,7 @@ } }, { - "id": "a7a521eb-8464-439c-a3b3-79c5b689e6ac", + "id": "46e2f79a-533c-4605-84e2-f5f7d031c9ef", "name": "Generate a digit token", "request": { "name": "Generate a digit token", @@ -197003,7 +197003,7 @@ }, "response": [ { - "id": "9be24dcf-b430-44c8-a2fa-3ae18cec18dd", + "id": "69ef5e16-b58f-45ea-a303-20deafe81f24", "name": "The digit token for password management.", "originalRequest": { "url": { @@ -197069,7 +197069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25461cab-10b1-4c55-9c1a-4dd00ba320c7", + "id": "c64ee429-a1c4-4118-9c99-ed5e6b0c47cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197135,7 +197135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bab60ec-5912-4c02-a343-cdaced29f0ae", + "id": "3221a846-1121-43de-badf-125a4cfc892e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197201,7 +197201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f9111b7-fce4-4b6b-bc42-20216a174425", + "id": "a28456c6-94a1-473d-9783-7e5664cd5962", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197267,7 +197267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c528a85-55a7-4e69-92f1-d411f460c4c3", + "id": "23a14bc4-3055-4d10-92ec-98761fe0b6d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197333,7 +197333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47548ff9-8e28-4f84-bcc9-39eceea7006d", + "id": "0a72883b-56ef-49cb-aa94-448949f67d4c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197411,7 +197411,7 @@ "description": "Use these APIs to implement password policies functionality.\nThese APIs allow you to define the policy parameters for choosing passwords.\n\nIdentityNow comes with a default policy that you can modify to define the password requirements your users must meet to log in to IdentityNow, such as requiring a minimum password length, including special characters, and disallowing certain patterns.\nIf you have licensed Password Management, you can create additional password policies beyond the default one to manage passwords for supported sources in your org.\n\nIn the Identity Security Cloud Admin panel, administrators can use the Password Mgmt dropdown menu to select Sync Groups.\nRefer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/pwd_policies/pwd_policies.html) for more information about password policies.\n", "item": [ { - "id": "b12438f7-0f25-4134-903c-ab9c6cf6f1f8", + "id": "f2d154a8-9284-455f-913f-461f2aa94e8b", "name": "Get Password Policy by ID", "request": { "name": "Get Password Policy by ID", @@ -197452,7 +197452,7 @@ }, "response": [ { - "id": "f39fc0c2-53ba-416f-9f2f-54c4d363bc18", + "id": "a3274b84-d389-498e-aec4-dcab689c9f2d", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -197496,7 +197496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c05e5b07-b476-4c24-b64f-05cf9fa1de70", + "id": "698cbc78-6ccf-42f0-aee9-20deff0d3bb9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197540,7 +197540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da0584c-a349-4230-85f0-b304cba5377c", + "id": "577c1217-bd3e-4369-ad1d-03179c1e6a7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197584,7 +197584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7e0e306-abbf-49dd-b58c-424de6e7231c", + "id": "1543e82a-565a-4434-ba88-d8faad6b7028", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -197628,7 +197628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fdeb9a2-a510-4704-b4f5-2ee75b942fc3", + "id": "b1d80a37-6adc-4c08-9e14-4176f78e0d0c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -197672,7 +197672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220ff04b-ab57-4c27-9bfa-e363d6343932", + "id": "5533c08a-2cdb-4b03-9dbc-e19f23468aff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -197716,7 +197716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc8b8f99-c08a-4408-b09a-c5390cd59ca9", + "id": "2fc8259b-58f1-489d-867e-fcd2011a555d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -197766,7 +197766,7 @@ } }, { - "id": "37f3aa63-6231-484e-a824-bba617246c3d", + "id": "de92afae-8e96-4b51-9002-7a05022e5106", "name": "Update Password Policy by ID", "request": { "name": "Update Password Policy by ID", @@ -197820,7 +197820,7 @@ }, "response": [ { - "id": "04a24d11-9031-43c6-929d-f8a00dfd3810", + "id": "278e85c1-d35b-4b3c-b7a8-c0595aaf5e2a", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -197877,7 +197877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95687c2b-56ec-48af-a8e4-f70cd7c1c26e", + "id": "10edd672-3282-46dc-a37c-c624d40b198d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -197934,7 +197934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c373cdf-dbc5-40d6-9645-b19468097aa8", + "id": "fd4d51e9-2ac7-469b-9e90-450150df08b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -197991,7 +197991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af86c3b0-6ae4-446a-bcc5-fb9b4988bca7", + "id": "46594667-5621-41e6-9d95-e41b9266fefc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198048,7 +198048,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a1754f6-cecc-4687-96cf-b6145578f4a0", + "id": "5f4044be-d8d9-4d4e-a9aa-3e7f5be4c433", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198105,7 +198105,7 @@ "_postman_previewlanguage": "json" }, { - "id": "135264f4-6538-4295-929f-b663a644c226", + "id": "e03c1af9-b8ea-4145-be28-653c5ce0cd5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198162,7 +198162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65089f0a-eb19-49e9-9824-49222b667c04", + "id": "39038130-b5f0-40ea-803b-e2dbe27f13e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198225,7 +198225,7 @@ } }, { - "id": "be284c53-4583-46d6-a3a7-da52bbe4bfea", + "id": "ee75aa9a-58ca-4aed-9841-346dcb350e48", "name": "Delete Password Policy by ID", "request": { "name": "Delete Password Policy by ID", @@ -198266,7 +198266,7 @@ }, "response": [ { - "id": "13ccbde8-53bb-43d1-9ed7-ba9f02b4f379", + "id": "7c7f826a-4c28-4f73-91fc-e999343d8721", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -198300,7 +198300,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4e16f494-b8e6-467f-b463-668760210c0e", + "id": "25686133-259e-4a7b-b10d-8a2c0bb6a6c1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198344,7 +198344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24759123-69fc-45fd-972b-85166a703620", + "id": "70711e2e-0dc1-40cb-996c-614b778d10c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198388,7 +198388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f1bdb77-a114-4530-8865-b42a4925654a", + "id": "a3bf4698-90d7-4934-b601-074ce4c59b2d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198432,7 +198432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1a379a6-d891-48b0-b9b4-d7b120a7bbc0", + "id": "0f7968d1-d29b-4405-b08a-c0ad66500e1f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198476,7 +198476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3ca32d9-f073-4a60-bc56-992ec0ce82ee", + "id": "560e402a-5440-4cd4-909c-fb0927f6d072", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198520,7 +198520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eda17c6f-4a3b-4f75-84e6-f5f52c121030", + "id": "f1bc7a43-34c6-42d5-94f4-d5eb9aa2f659", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -198570,7 +198570,7 @@ } }, { - "id": "90edaa13-62b6-497a-b22e-2781bfc8a020", + "id": "ffb002d4-2dd1-4216-a3d3-b83b514919c8", "name": "Create Password Policy", "request": { "name": "Create Password Policy", @@ -198612,7 +198612,7 @@ }, "response": [ { - "id": "c68aaa61-8eab-4014-8a01-5565450ed7aa", + "id": "404f447e-e0a5-400e-a7fa-3ceabf5bb210", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -198663,12 +198663,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"2012-08-22T00:05:21.327Z\",\n \"lastUpdated\": \"1974-01-26T00:28:24.709Z\",\n \"firstExpirationReminder\": 45,\n \"accountIdMinWordLength\": 4,\n \"accountNameMinWordLength\": 6,\n \"minAlpha\": 5,\n \"minCharacterTypes\": 5,\n \"maxLength\": 25,\n \"minLength\": 8,\n \"maxRepeatedChars\": 3,\n \"minLower\": 8,\n \"minNumeric\": 8,\n \"minSpecial\": 8,\n \"minUpper\": 8,\n \"passwordExpiration\": 8,\n \"defaultPolicy\": true,\n \"enablePasswdExpiration\": true,\n \"requireStrongAuthn\": true,\n \"requireStrongAuthOffNetwork\": true,\n \"requireStrongAuthUntrustedGeographies\": true,\n \"useAccountAttributes\": false,\n \"useDictionary\": false,\n \"useIdentityAttributes\": false,\n \"validateAgainstAccountId\": false,\n \"validateAgainstAccountName\": true,\n \"created\": \"sint sunt ullamco sed\",\n \"modified\": \"Lorem proident ut\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", + "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"2018-11-05T07:55:03.293Z\",\n \"lastUpdated\": \"2006-03-18T10:04:09.042Z\",\n \"firstExpirationReminder\": 45,\n \"accountIdMinWordLength\": 4,\n \"accountNameMinWordLength\": 6,\n \"minAlpha\": 5,\n \"minCharacterTypes\": 5,\n \"maxLength\": 25,\n \"minLength\": 8,\n \"maxRepeatedChars\": 3,\n \"minLower\": 8,\n \"minNumeric\": 8,\n \"minSpecial\": 8,\n \"minUpper\": 8,\n \"passwordExpiration\": 8,\n \"defaultPolicy\": true,\n \"enablePasswdExpiration\": true,\n \"requireStrongAuthn\": true,\n \"requireStrongAuthOffNetwork\": true,\n \"requireStrongAuthUntrustedGeographies\": true,\n \"useAccountAttributes\": false,\n \"useDictionary\": false,\n \"useIdentityAttributes\": false,\n \"validateAgainstAccountId\": false,\n \"validateAgainstAccountName\": true,\n \"created\": \"ea pariatur\",\n \"modified\": \"laborum id minim exercitation\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "45197d61-9983-4dc8-be90-8e2bf4b792ce", + "id": "5714a3c4-beaa-4e9c-9332-cacca927802b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -198724,7 +198724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcf3e569-73cf-4748-83ca-78378ce81559", + "id": "4095f8cd-338b-4989-bd5e-b471c4405c50", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -198780,7 +198780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f928aac3-5cd9-4c5f-88c0-d6d0540c1db0", + "id": "27511af6-b721-4637-bdb2-5c91e2c9a140", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -198836,7 +198836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c78309e4-a768-42d4-acc6-fdda529b6cd7", + "id": "95d759e1-61a5-4890-8e69-79e59146f76d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -198892,7 +198892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2cf567f-9ab3-4271-9b2f-1be32ecb488a", + "id": "b75ca8e9-9359-4c7e-9a4e-bf22a5b7314e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -198948,7 +198948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28913e3b-2a28-4621-9fdd-a9982200481a", + "id": "6f1b9da6-f081-4ad1-9500-7a590c32067d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199010,7 +199010,7 @@ } }, { - "id": "3a896dff-5f9c-4354-8949-29037890bce1", + "id": "cb561d19-7a2d-403f-87af-f2a60d4dfaa5", "name": "List Password Policies", "request": { "name": "List Password Policies", @@ -199067,7 +199067,7 @@ }, "response": [ { - "id": "c723b7a4-9148-4420-983e-9878861a693d", + "id": "b75ada0d-db82-492b-9af4-b7855203455c", "name": "List of all Password Policies.", "originalRequest": { "url": { @@ -199138,7 +199138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "053d00e5-43e7-4492-8e13-05c3d5349671", + "id": "f9c9e27c-9774-48db-bba9-facd73a6adb1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199209,7 +199209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ae75dbe-d818-4153-b8fc-2199ec580e74", + "id": "1d60b02f-1c5c-447a-a5d9-6731c11e6cc0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199280,7 +199280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bd32543-7b45-4df6-9cdc-e8d706d47b87", + "id": "9cbc8d6d-5785-4e42-be03-3627631f255d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199351,7 +199351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef0cc0b5-4547-4a76-9a0c-6fd64970ff82", + "id": "2dc882c6-2059-4661-ba5e-7e3f4e6f2dee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199422,7 +199422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca3e59f7-754f-44a7-b711-47ea0b908a5c", + "id": "3ff45675-7272-4bde-93f1-9a62b9a3b79f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199505,7 +199505,7 @@ "description": "Use this API to implement password sync group functionality. \nWith this functionality in place, administrators can group sources into password sync groups so that all their applications share the same password. \nThis allows users to update the password for all the applications in a sync group if they want, rather than updating each password individually. \n\nA password sync group is a group of applications that shares a password. \nAdministrators create these groups by grouping the applications' sources. \nFor example, an administrator can group the ActiveDirectory, GitHub, and G Suite sources together so that all those sources' applications can also be grouped to share a password. \nA user can then update his or her password for ActiveDirectory, GitHub, Gmail, Google Drive, and Google Calendar all at once, rather then updating each one individually.\n\nThe following are required for administrators to create a password sync group in Identity Security Cloud: \n\n- At least two direct connect sources connected to Identity Security Cloud and configured for Password Management.\n\n- Each authentication source in a sync group must have at least one application. Refer to [Adding and Resetting Application Passwords](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html#adding-and-resetting-application-passwords) for more information about adding applications to sources.\n\n- At least one password policy. Refer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/policies.html) for more information about password policies. \n\nIn the Admin panel in Identity Security Cloud, administrators can use the Password Mgmt dropdown menu to select Sync Groups. \nTo create a sync group, administrators must provide a name, choose a password policy to be enforced across the sources in the sync group, and select the sources to include in the sync group. \n\nAdministrators can also delete sync groups in Identity Security Cloud, but they should know the following before they do: \n\n- Passwords related to the associated sources will become independent, so changing one will not change the others anymore. \n\n- Passwords for the sources' connected applications will also become independent. \n\n- Password policies assigned to the sync group are then assigned directly to the associated sources. \nTo change the password policy for a source, administrators must edit it directly. \n\nOnce the password sync group has been created, users can update the password for the group in Password Manager.\n\nRefer to [Managing Password Sync Groups](https://documentation.sailpoint.com/saas/help/pwd/sync_grps.html) for more information about password sync groups.\n", "item": [ { - "id": "260d0c38-a0b1-4b01-bbe1-d4c20ed78b2f", + "id": "4978e5cc-9ea5-4db0-ad32-3357095ae961", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -199562,7 +199562,7 @@ }, "response": [ { - "id": "c6e29228-7d88-493a-930e-7e90416fae92", + "id": "fcc4db7f-6d68-4b94-b11e-efb40588b594", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -199633,7 +199633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ce1e8f3-ac0a-4695-9330-e1c2a69538ad", + "id": "8a48c25a-5447-418f-9a2d-cd9c99745659", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -199704,7 +199704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ad97311-8f73-4798-9ebf-8ff74bbd9dcc", + "id": "e13d604a-d3ce-4d19-9470-df6a8e75ce39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -199775,7 +199775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a80a8cb-81d1-4f61-917e-fb7988df5269", + "id": "e74f4eac-78a4-4615-9619-49770e5ee049", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -199846,7 +199846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e44f5fe3-ae76-4b20-a724-1d864399d8fd", + "id": "6842d7d6-504a-4783-a30e-7dc72970eefc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -199917,7 +199917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ddd6f0c-93a5-49a3-94bf-8cc21115d615", + "id": "4ca9af9d-873f-4c34-a1f5-4a8faf6f2596", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -199994,7 +199994,7 @@ } }, { - "id": "af58227f-a402-401a-8a7d-c89924993ce3", + "id": "9fb5092d-ccbb-4c4c-9d16-12d8fc47f66d", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -200036,7 +200036,7 @@ }, "response": [ { - "id": "58570dac-bff8-4488-9b7b-3a97e10666de", + "id": "32b9cc39-4e09-4193-a3c8-d64ab653e238", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -200092,7 +200092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d62d3f34-9a89-4953-9126-a1a8e05399af", + "id": "ccf4e1ce-3819-4dd9-82f4-cee78c020dea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200148,7 +200148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a36097a-1d4e-41f1-bb8a-2fe8165bf6b6", + "id": "737145e8-fa5f-4385-8908-816a9297d732", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200204,7 +200204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ba99fc4-e23b-4274-8362-eef8afa4e67e", + "id": "2f7b40e1-62ea-4dd2-9ca6-0b47f8558e2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200260,7 +200260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8075eb81-a9cb-41ff-a520-c341091495be", + "id": "5de2b847-b25c-42fd-a197-accbef5225f3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200316,7 +200316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af31348-1fb3-42b1-9abd-dbe02e5f1a3c", + "id": "83c0b3da-f677-445e-baa5-376341eb5ccd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200378,7 +200378,7 @@ } }, { - "id": "ead4ac57-87c6-4532-bf04-597568a3f05a", + "id": "6bcebf4c-bb49-4b2e-8187-a9813cc2fe6f", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -200419,7 +200419,7 @@ }, "response": [ { - "id": "ea7b4c4c-c841-44c4-b009-9f0c043d979a", + "id": "19d9a5e3-548a-445c-ae1b-3c36e446024c", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -200463,7 +200463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe2add5-a9aa-472f-ad05-72f4476db4b7", + "id": "12724f68-20ef-4103-8fb1-9fb4f201a9bc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200507,7 +200507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cd31372-a9c2-4c42-ba61-a1c9d278be27", + "id": "00bcf5f6-7611-45d9-a6ef-c68706631389", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200551,7 +200551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ec85bf0-04b5-4644-afb0-e296b916a8ae", + "id": "04829743-8c74-46f4-bb23-ece7d9c1da17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -200595,7 +200595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd49e477-5918-44ad-adf8-197876ac26b5", + "id": "c17adbbd-10d3-4891-903f-af7780e90b0e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -200639,7 +200639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbce28de-88e4-41e3-9afa-1c0285fa4129", + "id": "792ee744-3ef3-4fb5-a3f1-8b3ff1f93726", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -200683,7 +200683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3be7cd5c-0efc-42cb-9e65-6a8eb7059df8", + "id": "8c78b38e-3bfa-4069-8521-691a6bfdea2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -200733,7 +200733,7 @@ } }, { - "id": "ebbacbd4-86ac-4c63-aab2-86ecfe7d08bf", + "id": "f3eac010-ad4a-4c08-8280-865e66ba7939", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -200787,7 +200787,7 @@ }, "response": [ { - "id": "2ba85b0a-b6e3-4468-919a-cc5518fc5c29", + "id": "c28fecec-158d-497a-9dbb-b69724b267a7", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -200844,7 +200844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ba4e3fd-5b95-4cd3-ada0-dfb260f15eb1", + "id": "1f91addf-9875-4be2-93c4-dfa94a4432b9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -200901,7 +200901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7bcd1a8-0d66-4092-86de-66f1cd63768d", + "id": "d549ac03-390d-4372-b79c-e3fcef4bff07", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -200958,7 +200958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4413d1fa-bf06-4fe6-8ee6-1d796e9884d4", + "id": "e0c4bd74-b3d5-40d8-a868-79685947090c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201015,7 +201015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5ef23f9-9220-4693-81ab-128108f2731a", + "id": "006336e5-f09d-4a91-965a-abe7eb175271", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -201072,7 +201072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62ae1923-8d25-428d-a5bc-ae5f7cd60375", + "id": "d567ba82-a7f7-4f0e-ab5b-7faa93556023", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201129,7 +201129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "356b49ae-6120-4d10-ba09-4c63243a611f", + "id": "f4457399-fa92-4cfd-aea1-fef65a53e179", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201192,7 +201192,7 @@ } }, { - "id": "2f2e8b69-fe37-40fa-b9a4-9d23816c4b8d", + "id": "980a0b85-2aa2-4c9a-ba60-49b0a3779473", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -201233,7 +201233,7 @@ }, "response": [ { - "id": "3d588772-5060-43c5-aa01-82ea69a8266b", + "id": "ca2b2149-5953-4137-8838-906fe4b2ea70", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -201267,7 +201267,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e0728b76-18fc-4a48-8f90-388c6e74699f", + "id": "bdbce4e2-e53b-44f4-8818-58af7a1104f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201311,7 +201311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2b2bd68-a457-47a1-924b-42b15f03c050", + "id": "edfe9ec8-f51a-4023-9619-c29cfe400bc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201355,7 +201355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "906c8e73-c7d3-44de-993a-a6196725aac3", + "id": "1b883ca9-6ca9-48b6-a26a-50e6b3f0d020", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201399,7 +201399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c730ddc-1aa3-424b-bc54-0d601551828c", + "id": "1856fd31-7294-4f5e-ade2-5cf62016c9e5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201443,7 +201443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ed4707-a6df-43c4-9706-1768e46e581f", + "id": "1672e6fe-6018-4a83-8de0-de486bb19fcf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201499,7 +201499,7 @@ "description": "Use this API to implement personal access token (PAT) functionality. \nWith this functionality in place, users can use PATs as an alternative to passwords for authentication in Identity Security Cloud. \n\nPATs embed user information into the client ID and secret. \nThis replaces the API clients' need to store and provide a username and password to establish a connection, improving Identity Security Cloud organizations' integration security. \n\nIn Identity Security Cloud, users can do the following to create and manage their PATs: Select the dropdown menu under their names, select Preferences, and then select Personal Access Tokens. \nThey must then provide a description about the token's purpose. \nThey can then select 'Create Token' at the bottom of the page to generate and view the Secret and Client ID. \n\nRefer to [Managing Personal Access Tokens](https://documentation.sailpoint.com/saas/help/common/generate_tokens.html) for more information about PATs.\n", "item": [ { - "id": "22fafc04-7678-46c2-818d-6f1e45381a19", + "id": "02301fd7-f95a-4da1-baa8-e123adfd6e1f", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -201547,7 +201547,7 @@ }, "response": [ { - "id": "235402fc-09a8-4cbc-bb8d-ed95123bc434", + "id": "65386775-2c3d-4d28-b6ae-d642aa087819", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -201609,7 +201609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fde1f07-0a1a-4a06-8e16-8d9857a73d4c", + "id": "3bfdd9b2-652f-4f9a-9299-474701ead4d6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -201671,7 +201671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcd2e9a5-0958-42f3-8c0c-096496604e70", + "id": "c43e4fe4-a8eb-4280-abf6-6ac8e8add024", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -201733,7 +201733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37913547-ae87-45ed-87bd-7843fb77b130", + "id": "9519b35b-4af3-49b6-a7cc-b3bc47d53f8e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -201795,7 +201795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f75af182-8941-4e66-bee2-5a247f6533fa", + "id": "7978fb97-524b-4de5-8337-f345d47b4beb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -201857,7 +201857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c36f30c-33cc-4c3f-b57b-c81fd8cd7090", + "id": "50f6ba0f-668d-4c82-bf24-e320818abd2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -201925,7 +201925,7 @@ } }, { - "id": "a1e78f0f-5e76-4f15-ad4a-d8dd70ba9a50", + "id": "69e7e1b2-0b29-4bf6-8ced-a3baedd15474", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -201967,7 +201967,7 @@ }, "response": [ { - "id": "b7260a1a-a7b2-42d5-ba5b-0e422b5e72c1", + "id": "6e4f5898-8fc8-4b47-80e7-bc9baeed58c9", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -202023,7 +202023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6178077-5a6d-4b41-90f1-4a3c727a4433", + "id": "96daddc8-c1c3-4444-9955-a47b27c115ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202079,7 +202079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0625d416-9e50-465f-b61b-209b99fabe59", + "id": "f1552e65-837c-486a-8c27-881e1cef98de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202135,7 +202135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d879617-5050-452e-bb4e-5446e8b92273", + "id": "e2954a16-560e-4925-bfee-5dc3c1b8afea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202191,7 +202191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96db1422-f185-4ffd-9b30-9f17bee98ae6", + "id": "5b0f33df-6d05-4ea4-af98-20d9fcf67700", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202247,7 +202247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bf62828-bdde-4311-abc2-c0c650a03653", + "id": "51ee4f7b-326c-4449-a0a7-a3cc98a1ad22", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202309,7 +202309,7 @@ } }, { - "id": "3a6965fd-cec9-4c26-94fe-ad9ace1dad23", + "id": "c7bc8fe4-bf70-4234-b2a8-824cedf88a05", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -202363,7 +202363,7 @@ }, "response": [ { - "id": "d43bcadb-cb65-4438-8a74-e2fda777c455", + "id": "762770b2-546a-47fa-809c-194060b62735", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -202420,7 +202420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1d29e85-033e-45a4-8305-570eeb6cc663", + "id": "b41f0738-eb69-40c5-9d05-0dc68f1d1053", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202477,7 +202477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eaa6614-9a48-4925-bd49-aa15ed8a2864", + "id": "6c44ba93-0f1e-4ffe-a326-750890ff215b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202534,7 +202534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bfd90e7-875a-491b-957e-72ecf9bc26d9", + "id": "9abf7fcc-c90c-4a51-b777-0142b35788ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202591,7 +202591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ca91100-c221-4f60-833f-49cc9430426d", + "id": "d65a6c54-365b-418d-b046-9a23c6ce0faa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -202648,7 +202648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456bece0-4aab-4595-a892-d537fefeee2c", + "id": "00587242-2fa0-49cd-840e-56384d3564ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -202705,7 +202705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "065fd05c-946a-4d1a-adf3-6eb31fa043a7", + "id": "a492717e-5968-491c-b697-7b87240914d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -202768,7 +202768,7 @@ } }, { - "id": "13119b1a-6ee9-4f2e-819b-08f3486aa8e5", + "id": "dacf0f2f-4397-40f1-99e2-1075f35a37c1", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -202809,7 +202809,7 @@ }, "response": [ { - "id": "b81552c1-c4b7-4959-84f6-4ac20c7ea474", + "id": "c589945e-d047-472b-9393-6fdd856ddb8e", "name": "No content.", "originalRequest": { "url": { @@ -202843,7 +202843,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e12ef46b-a230-49c7-87e3-fa3b495c5936", + "id": "af099234-f675-4f60-847c-942d265ac0b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -202887,7 +202887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e0a0477-2041-4b33-a9a5-2ba5cb57aa5b", + "id": "08f2dd67-c317-4ecd-8091-b34289c6a642", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -202931,7 +202931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a8496a-d2d9-4de1-9da9-0f39e73a7678", + "id": "68bd9abb-75ff-43c2-83b6-e89f807eedfc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -202975,7 +202975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37e54401-ae6d-4592-8bd3-d1c5e98613a8", + "id": "d0d4e9ab-c1c7-43dc-b04f-492fcb95ac2c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -203019,7 +203019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb6f49b4-cf71-48e8-8f5e-9fd4d0d3136a", + "id": "55b2148b-fb29-4f56-adf9-8d690b694f25", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203063,7 +203063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3ccb6a4-fa0a-492c-a3d2-34459afebbcf", + "id": "23423222-ddbd-4642-9bd3-12d53bf2a3c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203119,7 +203119,7 @@ "description": "Use this API in conjunction with [Public Identites Config](https://developer.sailpoint.com/docs/api/v3/public-identities-config/) to enable non-administrators to view identities' publicly visible attributes. \nWith this functionality in place, non-administrators can view identity attributes other than the default attributes (email, lifecycle state, and manager), depending on which identity attributes their organization administrators have made public. \nThis can be helpful for access approvers, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n", "item": [ { - "id": "31f209e5-0820-4824-a283-e7b35e1d1d8e", + "id": "c79fbe9a-e219-44be-8711-3f1f124d6025", "name": "Get list of public identities", "request": { "name": "Get list of public identities", @@ -203203,7 +203203,7 @@ }, "response": [ { - "id": "697b0140-3a63-4119-9be1-2e0082fc4ba3", + "id": "cbcd2342-6641-462b-b95d-f0f859712138", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -203301,7 +203301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0cb0a40-03ed-4b68-90de-2b8abc3302f1", + "id": "6a8cb53f-b4a1-401b-a574-7c189142ef95", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203399,7 +203399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50966bc4-952e-4347-a8f5-4c1140d86195", + "id": "d187a19a-fb4b-47da-a830-8400e3eadb6e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203497,7 +203497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84f3e587-4f9d-491f-9469-d13c1b902a54", + "id": "7728b1c4-5f20-4283-bbec-bd7074920414", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -203595,7 +203595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ff626f5-0359-4eeb-8cb1-035a42f22a92", + "id": "785fae13-1ef0-41fc-bd04-cd342bb3a8b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -203693,7 +203693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "346689ab-438b-4608-a2f3-6ad6b9f2b5d3", + "id": "25825b40-c8e7-432d-9ebf-eca746853dc7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -203803,7 +203803,7 @@ "description": "Use this API to implement public identity configuration functionality. \nWith this functionality in place, administrators can make up to 5 identity attributes publicly visible so other non-administrator users can see the relevant information they need to make decisions. \nThis can be helpful for approvers making approvals, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n\nBy default, non-administrators can select an identity and view the following attributes: email, lifecycle state, and manager. \nHowever, it may be helpful for a non-administrator reviewer to see other identity attributes like department, region, title, etc.\nAdministrators can use this API to make those necessary identity attributes public to non-administrators. \n\nFor example, a non-administrator deciding whether to approve another identity's request for access to the Workday application, whose access may be restricted to members of the HR department, would want to know whether the identity is a member of the HR department. \nIf an administrator has used [Update Public Identity Config](https://developer.sailpoint.com/docs/api/v3/update-public-identity-config/) to make the \"department\" attribute public, the approver can see the department and make a decision without requesting any more information.\n", "item": [ { - "id": "9b80e147-932a-484c-b2af-0997f6452f05", + "id": "e243a132-8aae-45e2-9a1c-de752c18a054", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -203832,7 +203832,7 @@ }, "response": [ { - "id": "8778a793-833f-4875-9d87-17c1c8387062", + "id": "6cd92ace-ec8c-458f-9b0b-ee2d7d4a0f7e", "name": "Request succeeded.", "originalRequest": { "url": { @@ -203875,7 +203875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52e2f539-ab59-428a-a6d0-86852c64712a", + "id": "03311bc7-acf9-421b-9e62-2b767886b3c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -203918,7 +203918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad7a0842-f7b5-43fa-87a4-3e27c2092b4c", + "id": "a99302aa-a954-4854-9225-cf9281ad541e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -203961,7 +203961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7ad0135-26d5-4825-b320-00a2730257ad", + "id": "199f5ec0-3893-4eec-8a81-725922bb4e17", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204004,7 +204004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "618db061-5c63-4feb-9446-c61999d076ca", + "id": "af133e36-7979-4d6f-94ac-e2ab4490c5e9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204047,7 +204047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f90be3a2-71af-449b-9f56-e2d7769751ed", + "id": "04e573f6-e169-4a5d-aa50-70ab90bb7f6f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204096,7 +204096,7 @@ } }, { - "id": "41c9eecd-70ce-44f8-8d69-fd8f9cea84cd", + "id": "60bae2e2-46bd-4131-a468-cfcb5015bbbd", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -204138,7 +204138,7 @@ }, "response": [ { - "id": "9cc31874-3c65-47c5-b127-ddfa1fbb6758", + "id": "8eb7c58d-d058-4c2b-ba67-23b6f3a12957", "name": "Request succeeded.", "originalRequest": { "url": { @@ -204194,7 +204194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23176dba-076c-4a59-a50e-03a090514c10", + "id": "9d26bc23-aac1-4c47-ac13-f134da1caf0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204250,7 +204250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a285aae0-6eae-46f7-ae42-b13d6b4b8ea7", + "id": "1b8b1245-a4c7-44c1-a915-8e4ba3b574be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204306,7 +204306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02270fe5-70d2-4347-b5a7-c6cfe805e6ad", + "id": "c428320a-303c-4d21-b1b8-b73511c90f9e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204362,7 +204362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20b7488e-9c2b-40f2-91cd-719e39fede79", + "id": "9811a539-0057-4913-ac30-fa258c0d78e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204418,7 +204418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "628b91f2-0799-4ede-b5f8-83a9c64639bb", + "id": "4e797d35-3226-432b-afc0-0919195aa900", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204486,7 +204486,7 @@ "description": "Use this API to implement reports lifecycle managing and monitoring.\nWith this functionality in place, users can run reports, view their results, and cancel reports in progress. \nThis can be potentially helpful for auditing purposes. \n", "item": [ { - "id": "05dc2ace-c4d2-4bc9-8ebc-b7509fa4f9d6", + "id": "308e73f4-bd9c-436b-818a-5965449dcf2d", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -204538,7 +204538,7 @@ }, "response": [ { - "id": "2023a3cd-a263-46bc-9b06-df311c1fab0f", + "id": "35f163d6-933e-4ab3-ab5d-cd244352f272", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -204593,7 +204593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba026337-9524-4e54-bc21-23264f2a7f7f", + "id": "b2f8f64e-b443-448c-94c6-b1802ffeb81b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -204648,7 +204648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73c4cd1d-86b4-441f-9210-0c0e817a9b47", + "id": "dc9d5aeb-6cc9-4162-add6-6a6f6a8ef7a9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -204703,7 +204703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbf689a6-8677-4655-ab19-4e75de82a5ce", + "id": "5023ed9e-1b4e-462d-9ff1-bd8f70700405", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -204758,7 +204758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bab65d62-463e-45a4-b2f7-e329ecb6874e", + "id": "81502194-5ec5-4b85-8125-2f61925d1bf1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -204813,7 +204813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "590d8419-64a1-42a7-b838-b4a1bbba9f0f", + "id": "beae75c3-128b-4505-a439-ecbf4a0d2ff2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -204874,7 +204874,7 @@ } }, { - "id": "a388e6da-6250-4821-a853-75a6314117e1", + "id": "565dd707-56da-4c48-9874-65377fa89e8e", "name": "Run Report", "request": { "name": "Run Report", @@ -204917,7 +204917,7 @@ }, "response": [ { - "id": "8e8bf329-c0aa-4987-8bf2-ecb277ef9812", + "id": "1f9052e8-2eca-4c72-8400-110aeada98f2", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -204974,7 +204974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "318f0157-48b0-4f4b-a479-53d024d43dd6", + "id": "f2edc021-0e83-48a5-bf86-2f23bf00b9d5", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -205031,7 +205031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fec54070-e40c-4b84-99cb-32ab31069f1c", + "id": "f85e9944-04c4-4a57-a43a-c40f2782d2b6", "name": "Identities report", "originalRequest": { "url": { @@ -205088,7 +205088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c511df08-e00f-476a-a409-b41b76d23211", + "id": "7bae2f70-6dae-461e-bc99-7f1de75332e1", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -205145,7 +205145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd4e1ba6-d782-4f2e-a255-6a77af94b9db", + "id": "cbc3da9f-b364-446e-ac68-0abb0e33c72d", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -205202,7 +205202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceb7d0e8-8347-4d24-a542-6477f5d2f03d", + "id": "1cc273fa-43c8-43d7-8d4b-bbe890adc138", "name": "Search Export report", "originalRequest": { "url": { @@ -205259,7 +205259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff5304fb-c046-4cab-991e-608362cddebd", + "id": "c823211c-6bdb-4b0f-9c42-e10e35b13dfd", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -205316,7 +205316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e22f1eed-8b14-48e1-8bc1-4e3197396ba4", + "id": "1a8a28f9-df0a-42ad-b239-36c9434315df", "name": "Account Export report", "originalRequest": { "url": { @@ -205373,7 +205373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14205789-31b4-401f-a3db-ffdbf1ad7cbf", + "id": "2e74861c-b7cb-404c-bb2d-a94f78fdbf0a", "name": "Identities Details report", "originalRequest": { "url": { @@ -205430,7 +205430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b669aa8-ed7e-4ec3-8540-33538ec6b90d", + "id": "aaa35dd3-4d0a-4b81-ae65-dc052450e814", "name": "Identities report", "originalRequest": { "url": { @@ -205487,7 +205487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a3d2850-038b-4f12-91a3-6c33fc931a47", + "id": "9759fbb1-d6ea-484d-9760-acc16550d8a3", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -205544,7 +205544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f977de6b-8279-4440-b48b-2a387ff8b68c", + "id": "39734632-5b26-4ca1-af8a-e31c0d6c963c", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -205601,7 +205601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "667d49dd-52ec-4dfd-9574-c23586b1bb2e", + "id": "197f4f8f-4f07-475f-8fc5-fd254697f194", "name": "Search Export report", "originalRequest": { "url": { @@ -205658,7 +205658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33166171-0ed4-4a85-b075-d1ff6894edb3", + "id": "8edf0eb7-5916-4c26-886a-fd022cefed99", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -205715,7 +205715,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffe21d0a-6dbd-4cd6-a313-839c2d3885d1", + "id": "f90030bd-f93d-4689-aa7b-598edf097b4c", "name": "Account Export report", "originalRequest": { "url": { @@ -205772,7 +205772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba3af4c9-b811-437c-9501-97e2a0647827", + "id": "1c65a8eb-21a3-4455-ac53-676924ca0850", "name": "Identities Details report", "originalRequest": { "url": { @@ -205829,7 +205829,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2408243-6926-4d42-a534-4f215d9896c1", + "id": "667d4f51-671e-4fde-9c97-bd1dc8768116", "name": "Identities report", "originalRequest": { "url": { @@ -205886,7 +205886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40b12cc0-9bb9-4dd1-ae81-5e4a5e09f0fd", + "id": "8f2830b7-34bf-4844-8d91-27f8aa64f1db", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -205943,7 +205943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4699e2e0-8ee4-4d31-8082-9619875d91e9", + "id": "8863d163-07c9-4ff8-aef6-3f564c265cd6", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -206000,7 +206000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c91d9d46-760e-4c88-827c-11a0d22d7363", + "id": "861c72ed-179e-418c-ba26-07659079214f", "name": "Search Export report", "originalRequest": { "url": { @@ -206057,7 +206057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d223c5c1-1b5e-4549-ad54-ed6841313fb6", + "id": "5b22f620-2042-48cf-b112-cef78c277980", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -206114,7 +206114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d0cd1cd-4340-45a0-9c4c-48fc01607e88", + "id": "28b72606-27bd-4faa-819c-0f12d4eeea95", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -206171,7 +206171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f870380c-a8b5-4857-a6ef-e81ce0cbfc74", + "id": "701a9285-c5b2-48cd-86fc-209bdc8405b8", "name": "Identities Details report", "originalRequest": { "url": { @@ -206228,7 +206228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00b75209-d238-4bf6-972d-4c089a0fe2ab", + "id": "9c58e937-4f7f-49f6-a756-ce21aba8ebfe", "name": "Identities report", "originalRequest": { "url": { @@ -206285,7 +206285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29b810ef-ce63-42ba-adf3-bba4955b6046", + "id": "6b2458cb-6b63-4195-88d0-20c55dc940fb", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -206342,7 +206342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9108079d-33f6-4904-a7fb-6435ecfd52f4", + "id": "49bdab44-2542-47c9-898e-5be557ddee7e", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -206399,7 +206399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "600a7eaa-a389-4d0d-a0c9-38209cec9811", + "id": "29c2d46f-7fe0-4d0d-a31b-0f306135a758", "name": "Search Export report", "originalRequest": { "url": { @@ -206456,7 +206456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0067d72a-b4e1-4db9-beff-dd313a2da258", + "id": "56239690-92ad-4032-ad81-c53d01668526", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -206513,7 +206513,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd0216d-ea91-40a3-b1a2-f2fc07179f87", + "id": "15b59de3-3856-434a-a397-8e88e8e06d40", "name": "Account Export report", "originalRequest": { "url": { @@ -206570,7 +206570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "935948a4-47d1-453e-9935-423c8b83ec8d", + "id": "3294e209-90e4-4ba2-8982-50c819223f40", "name": "Identities Details report", "originalRequest": { "url": { @@ -206627,7 +206627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c279e2bd-586a-4dca-9666-2d6ac6b96c70", + "id": "7a91dcbc-6c58-4be8-b566-71a2087c4d84", "name": "Identities report", "originalRequest": { "url": { @@ -206684,7 +206684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9413564a-58b6-4dfa-acbd-2a60215a28c7", + "id": "ac37d925-ecb8-4fcd-bf44-57923854fd7a", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -206741,7 +206741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b96ec69-3064-43eb-a7eb-b416bd634a4c", + "id": "5f6fc24b-8787-4fa9-9d73-5a4baad3a5ef", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -206798,7 +206798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ba8bb7-d030-4cef-8cd4-8e90053e20af", + "id": "1be96895-4da2-442c-b67c-2ab7c0089e53", "name": "Search Export report", "originalRequest": { "url": { @@ -206855,7 +206855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65c4c9e6-d566-4de4-870e-555dd601d2fb", + "id": "abb46c3a-6dd7-4bf2-852c-9577a6469966", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -206912,7 +206912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea9fca16-6b6f-40af-84b8-ee6c19ead7d6", + "id": "9c614e1d-0f72-4306-aac4-e8e35e0a31df", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -206969,7 +206969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3c60760-5e45-47e1-97c9-56b39524b1f0", + "id": "d73b1ddc-f2c2-4397-9956-b8b6e880d323", "name": "Identities Details report", "originalRequest": { "url": { @@ -207026,7 +207026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a78080f-9614-4e0e-ae89-eb047e9dd3fa", + "id": "1fd7f01d-5756-4109-9cb7-0b2c69f211f3", "name": "Identities report", "originalRequest": { "url": { @@ -207083,7 +207083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2dbf278-3aad-4614-9d6d-1dad2986d38c", + "id": "2d393efb-a23c-4942-bd29-dd0dd89541b0", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -207140,7 +207140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "106da8d0-dfee-49ed-bca0-cfe322f1bafc", + "id": "9a59e286-d3f3-48b1-a39b-5ccbca53613c", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -207197,7 +207197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc7cb4b1-a10a-49b4-85a0-e00645799e29", + "id": "1d2ea39f-cd2f-4dde-b2b3-c5293af9af83", "name": "Search Export report", "originalRequest": { "url": { @@ -207254,7 +207254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f0d411-3f6c-4453-8c04-04cd2e121b7b", + "id": "ac3e1090-13c5-4815-b661-2cfe481c90cb", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -207317,7 +207317,7 @@ } }, { - "id": "aa63c4d5-341e-47b2-9584-0bfcde504de6", + "id": "73b1b937-2749-4d93-b734-732316746cff", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -207359,7 +207359,7 @@ }, "response": [ { - "id": "a0dda6e3-b0ff-4333-917a-c3e8ba0be25a", + "id": "0d9a7218-c710-4c9b-9a4a-a5771248b601", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -207394,7 +207394,7 @@ "_postman_previewlanguage": "text" }, { - "id": "326cef43-8ab6-43cd-a378-b2551bef9c83", + "id": "88a5d877-7550-49ed-80fd-55ba6a4ebfda", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207439,7 +207439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccfbdee7-2513-4ace-9d6e-5e36ba4a9e98", + "id": "1aa9852a-1129-45e9-8ae0-044ecd3bcbea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207484,7 +207484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e9551d2-7f2b-4c99-bed3-ec215252bf26", + "id": "cd1ad356-96cc-402e-83ac-2c976a56e4ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207529,7 +207529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8568636b-30f5-4231-91b4-356e2ea5d65c", + "id": "fb59f5c7-7d30-4cb8-812b-2b4040498964", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -207574,7 +207574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3946c8ad-d1bc-4c3f-8290-2811f2eaed6b", + "id": "9bb46b58-1fab-42bb-89d1-60d2d71073d4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -207625,7 +207625,7 @@ } }, { - "id": "6053277a-ef8a-43ee-a94e-1c6327d1ceb5", + "id": "97ca89be-ef5d-42fd-908b-da3e5b590650", "name": "Get Report File", "request": { "name": "Get Report File", @@ -207694,7 +207694,7 @@ }, "response": [ { - "id": "a3969afc-e3e5-43e2-b4fc-3362bb6baf40", + "id": "bc21fa6d-63d6-4886-bb9a-d74973976def", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -207770,12 +207770,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "528cb40a-fe69-472c-b588-994fc99f79ec", + "id": "86ee8afa-55cf-4255-af45-cfb1276343d5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -207847,7 +207847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14394873-11e9-4d20-bc04-28dbfd075f2d", + "id": "6a1722a1-a38a-4782-b2e1-2fb35a14efb6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -207919,7 +207919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efe330f1-020a-4ad7-a7c8-d7e9055c385b", + "id": "5cd9c7c9-8bf6-48e9-803e-33c3b38de70c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -207991,7 +207991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66d5c841-b3d1-45e5-b6a5-28b5fb936280", + "id": "df831d5a-8312-4868-9451-9200d8b21ed1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -208063,7 +208063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a87cfba4-dc74-4b49-af5c-754053e14b27", + "id": "ca4cd88c-cfa5-4add-99e4-d1b89e399b0f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208135,7 +208135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd61ed8-9eff-4368-8001-49170774d1b2", + "id": "b8801111-a621-41a1-b0bc-aee6bfb7a54b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -208219,7 +208219,7 @@ "description": "Use this API to implement requestable object functionality. \nWith this functionality in place, administrators can determine which access items can be requested with the [Access Request APIs](https://developer.sailpoint.com/docs/api/v3/access-requests/), along with their statuses. \nThis can be helpful for administrators who are implementing and customizing access request functionality as a way of checking which items are requestable as they are created, assigned, and made available.\n", "item": [ { - "id": "a248653b-114b-4822-8e28-9e4a68509cfb", + "id": "11e7d8dd-c77b-424a-bde1-d584b243863e", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -208330,7 +208330,7 @@ }, "response": [ { - "id": "e3c6b0eb-ac59-46d0-a543-e4cc84fbc48f", + "id": "313e3256-7f3e-4312-9cff-2a5c83c336f1", "name": "List of requestable objects", "originalRequest": { "url": { @@ -208455,7 +208455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baa96759-c906-40f4-bb24-e85f8a771444", + "id": "6463e45d-fb6d-4bcc-bd04-80dba1bb4e3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -208580,7 +208580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cca8566-7b14-4feb-b0a6-93b913ff9ce1", + "id": "1fd32e30-6371-4266-81f1-d1a54a51cf6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -208705,7 +208705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "868b4a6e-1340-4b9e-877b-bc181457e0b6", + "id": "86de0ac7-6eee-470d-9fb0-c6511d448ef8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -208830,7 +208830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f5325bf-8d57-48a6-9bcb-9dab8eb1ebcc", + "id": "dcf95eca-7cac-48e7-8bae-5b8478133e17", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -208955,7 +208955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efc92b27-539c-4c09-aba9-42fa80ffb6ef", + "id": "c5cdcea5-bd04-47dc-8267-d92f70f18f9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209092,7 +209092,7 @@ "description": "", "item": [ { - "id": "37752788-d40f-4a3b-93f9-859127bc38ec", + "id": "771d4d53-79f9-4f4b-8722-d9b23782349e", "name": "Generate insights for roles", "request": { "name": "Generate insights for roles", @@ -209131,7 +209131,7 @@ }, "response": [ { - "id": "ba32df4d-bf74-4857-8e1d-7942c762fa18", + "id": "04ab8a5e-1aff-4a27-8c65-a379989d6393", "name": "Submitted a role insights generation request", "originalRequest": { "url": { @@ -209184,7 +209184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee57a8b6-c83e-41c9-9ea2-77a0ff35c2b5", + "id": "93919d9b-b388-4b1e-9061-b8fbca718330", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209237,7 +209237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01a9b3cc-c4ff-4abd-a854-9984afe94eee", + "id": "3442a8a6-2b99-4abb-bdf1-0ff00560bd2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209290,7 +209290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79f65fc3-ef61-436c-9634-3e3623f80a6c", + "id": "59add2bd-30cf-4f8c-9ccd-954232971b3a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209343,7 +209343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43d4cf2a-afed-440c-a066-45380cc70c55", + "id": "a6b2997b-bd00-4c6e-9d9f-8c56f723d637", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209396,7 +209396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36becc63-5872-4911-a7b1-d180419091be", + "id": "ba8f1641-3312-4d8a-9531-e7b7bdffa88e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209455,7 +209455,7 @@ } }, { - "id": "3b95004e-37b5-4c53-a640-2140c389a8cb", + "id": "72e3275e-db00-4003-9653-11a5d0ef621f", "name": "Returns metadata from prior request.", "request": { "name": "Returns metadata from prior request.", @@ -209506,7 +209506,7 @@ }, "response": [ { - "id": "26750d55-4c06-498a-822a-db929cd441f8", + "id": "4bf86acd-1e4c-4087-9ee0-7846ee0b5644", "name": "Succeeded. Returns details of an earlier role insights request.", "originalRequest": { "url": { @@ -209560,7 +209560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d290859-680c-437e-b43d-4e246c6354c5", + "id": "8cefceb5-d39b-4b9f-9921-5b47ab8d3dc8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209614,7 +209614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "142288d0-2e67-4614-92d6-6b94353c6f9a", + "id": "40ca1b16-2f6e-4c74-9204-844190719ae2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -209668,7 +209668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d179262-bcb4-40f8-9548-bda2852b16a1", + "id": "38206572-d5ba-46bd-82b6-15e14f0eaec4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -209722,7 +209722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d16e23ed-d7a5-4e19-9257-227c179b72c2", + "id": "97c21d13-eeb5-40c5-b8cb-b68169078ea1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -209776,7 +209776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4c7c8da-5136-4ca5-b2d8-9307b380f99f", + "id": "2d24b176-3368-4e94-a64f-d20c5a05cf50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -209836,7 +209836,7 @@ } }, { - "id": "4453a2fa-0319-4f3f-86f3-fb8550efbe65", + "id": "b5c53e3a-64f4-4507-98ce-f42dc5ea819d", "name": "Get role insights summary information", "request": { "name": "Get role insights summary information", @@ -209875,7 +209875,7 @@ }, "response": [ { - "id": "289e7ed8-7379-482d-9ee1-188cfec8b6af", + "id": "52e5d971-39ed-44d2-b146-45b0f875c0a2", "name": "Succeeded. Returns high level counts.", "originalRequest": { "url": { @@ -209923,12 +209923,12 @@ "value": "application/json" } ], - "body": "{\n \"numberOfUpdates\": -66713059,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", + "body": "{\n \"numberOfUpdates\": -17946257,\n \"lastGenerated\": \"2020-05-19T13:49:37.385Z\",\n \"entitlementsIncludedInRoles\": 45,\n \"totalNumberOfEntitlements\": 250,\n \"identitiesWithAccessViaRoles\": 550,\n \"totalNumberOfIdentities\": 980\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a7fa68ba-a06f-42bd-afc1-eb1348251a95", + "id": "e7375501-f2b6-434a-8238-b32badc8f692", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -209981,7 +209981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07f834c6-35a2-4c9b-9240-c1a5a04458d1", + "id": "af81d2ea-1e9b-4581-a5eb-0dc3619708ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210034,7 +210034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2527beef-9e94-4ec1-af1b-c9241bfdae58", + "id": "00e4372e-b8f3-4f82-a18a-26f458f6cc72", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -210087,7 +210087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23a40c2a-3998-4df9-8a11-ab37d39e985a", + "id": "9753cca8-57c1-4057-8d4e-cbd5f2528482", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210146,7 +210146,7 @@ } }, { - "id": "771c2cc1-b537-4472-956b-ec5388efcb69", + "id": "19117415-2e3d-4aec-9a3b-431d6fe45f41", "name": "Get role insights", "request": { "name": "Get role insights", @@ -210230,7 +210230,7 @@ }, "response": [ { - "id": "4f49234b-538a-4bf4-a67c-690910382ffd", + "id": "319ac4ee-1207-4200-a3a1-7dc1ad546a6f", "name": "Succeeded. Returns a list of roles with information about insights for each role.", "originalRequest": { "url": { @@ -210323,12 +210323,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2024-03-11T00:46:18.384Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"adipisicing\"\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2015-05-24T06:27:38.485Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"est irure consequat anim\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1996-12-08T19:29:22.651Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"nostrud id dolor ad\"\n }\n },\n {\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"2024-02-10T03:53:46.516Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"in culpa\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f50bcd0b-dca0-41bc-80c4-791c1401a995", + "id": "f34a39a0-ceef-4edd-a3a9-395a0a5b5bbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -210426,7 +210426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dde9d60-110e-449b-8936-e74209fd0224", + "id": "44e7179a-a368-4deb-9408-276ffe837875", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210524,7 +210524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "769e8607-f9a2-437c-8b45-59576dd79206", + "id": "dd263e3d-c249-4a58-a8da-5576d6aa3e44", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -210622,7 +210622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc917b98-03cd-454f-9a26-ff7ade9e8427", + "id": "eff66030-46dd-4720-b242-9d8bffacafd0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -210726,7 +210726,7 @@ } }, { - "id": "2f260643-c78c-472a-971e-efb31e928c85", + "id": "241e43f3-97e2-462c-b8ea-15b5730c5326", "name": "Get a single role insight", "request": { "name": "Get a single role insight", @@ -210776,7 +210776,7 @@ }, "response": [ { - "id": "7d9c58c4-7dc0-4df3-b884-41369b18ec7c", + "id": "19326a0b-f0e8-4715-9261-c115dee34b14", "name": "Succeeded. Returns information about insights for a single role.", "originalRequest": { "url": { @@ -210824,12 +210824,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1955-07-10T01:39:25.728Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"officia sed\"\n }\n}", + "body": "{\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"numberOfUpdates\": 5,\n \"createdDate\": \"1945-06-23T07:02:32.767Z\",\n \"modifiedDate\": \"2020-05-19T13:49:37.385Z\",\n \"role\": {\n \"name\": \"Software Engineer\",\n \"id\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\",\n \"description\": \"Person who develops software\",\n \"ownerName\": \"Bob\",\n \"ownerId\": \"1467e61e-f284-439c-ba2d-c6cc11cf0941\"\n },\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"id aliquip\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "be0fb79b-18d5-49be-a03e-f449b32e5c83", + "id": "4e081019-b92d-4922-891b-621fa0b2e569", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -210882,7 +210882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "217852ca-19de-4893-bdd3-9195f3047a07", + "id": "7046734b-9693-42dc-a95a-86964bf6b5ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -210935,7 +210935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ff757a3-ec96-4dee-8a51-7903a0e05f77", + "id": "eb07b2b5-17ae-4777-b181-5f84fa0006f5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -210988,7 +210988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50caa022-8e95-4338-bd15-b9cabf83cd41", + "id": "d98b2935-77e7-4ffb-8aef-ecd6fc0c7a0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -211047,7 +211047,7 @@ } }, { - "id": "321d02f9-a7a8-4928-8445-24c33db2dfff", + "id": "e5ed7dae-f4bd-47ef-ad7f-7a94d163ea5c", "name": "Get entitlement insights for a role", "request": { "name": "Get entitlement insights for a role", @@ -211072,7 +211072,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -211117,7 +211117,7 @@ }, "response": [ { - "id": "81ec82ce-e630-48c5-944b-7ea5188c8fbe", + "id": "f6e081b2-36c4-4c24-b79b-d39ff2a85f86", "name": "Succeeded. Returns a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -211137,7 +211137,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -211185,12 +211185,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"ea aliqua\",\n \"id\": \"aute labore sint\",\n \"description\": \"nisi laboris dolor dolor\",\n \"attribute\": \"a\",\n \"value\": \"in exercitation cupidatat velit\",\n \"source\": \"exercitation\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"in aliquip sunt\"\n }\n },\n {\n \"name\": \"qui pariatur veniam\",\n \"id\": \"eiusmod commodo officia\",\n \"description\": \"labore ullamco aliqua sunt mollit\",\n \"attribute\": \"dolor commodo et enim\",\n \"value\": \"do ad fugiat anim\",\n \"source\": \"aliqua sint nisi\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"deserunt ullamco\"\n }\n }\n]", + "body": "[\n {\n \"name\": \"cupidatat Ut\",\n \"id\": \"velit labore mollit proident\",\n \"description\": \"Duis dolor non reprehenderit\",\n \"attribute\": \"officia Ut proident commodo\",\n \"value\": \"ex tempor\",\n \"source\": \"eu nisi\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"Ut sit Lorem et\"\n }\n },\n {\n \"name\": \"irure dolor mollit\",\n \"id\": \"ut in\",\n \"description\": \"elit\",\n \"attribute\": \"Excepteur cupidatat deser\",\n \"value\": \"commodo conseq\",\n \"source\": \"mollit ut id\",\n \"insight\": {\n \"type\": \"ADD\",\n \"identitiesWithAccess\": 850,\n \"identitiesImpacted\": 150,\n \"totalNumberOfIdentities\": 1000,\n \"impactedIdentityNames\": \"aliqua\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a29cb969-cb61-4f81-b1f7-5692e299f547", + "id": "9a1f60bd-9f88-45cc-a112-474ec548e504", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211210,7 +211210,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -211263,7 +211263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b289465-f0a6-4d3b-a590-9ffc53ac7289", + "id": "842cd6b4-bb1b-419c-b5a8-6abd7c044735", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -211283,7 +211283,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -211336,7 +211336,7 @@ "_postman_previewlanguage": "json" }, { - "id": "198e2669-d309-4d46-a37c-2789eed92fda", + "id": "1c5b3e58-be6c-4a5d-8858-dd5cceb70374", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211356,7 +211356,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -211409,7 +211409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bccad169-3ac0-4dd5-bc9f-048ed63d5d81", + "id": "bf45067a-6868-45ed-b193-817a9b119a7f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -211429,7 +211429,7 @@ "type": "text/plain" }, "key": "sorters", - "value": "sint amet" + "value": "dolore ut labore dolore" }, { "disabled": true, @@ -211488,7 +211488,7 @@ } }, { - "id": "b4264081-f47d-4256-a48e-08c9d99616cb", + "id": "bfd86b22-fb6a-4f1b-aac2-f4737aa70c8e", "name": "Download entitlement insights for a role", "request": { "name": "Download entitlement insights for a role", @@ -211559,7 +211559,7 @@ }, "response": [ { - "id": "e947a893-424a-4c39-aa1e-ef5994d80e5d", + "id": "9a4c846f-9c24-42ec-bb74-6b54d43d365d", "name": "Succeeded. Returns a csv file containing a list of entitlements to be added for a role.", "originalRequest": { "url": { @@ -211628,12 +211628,12 @@ "value": "text/csv" } ], - "body": "sint amet", + "body": "dolore ut labore dolore", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "eb1d60cd-4eae-425c-94af-1b5205e3c692", + "id": "b1eb8633-0011-4012-9da6-fe6cab10a9d9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -211707,7 +211707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "530ed01c-4e70-4d2b-b2a8-9e33d220426e", + "id": "3baae759-e724-4766-88bc-793c65023c63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -211781,7 +211781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e9471e3-a24b-4db0-8578-129011be4196", + "id": "317532da-8c91-4942-944b-6c098f6f7c2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -211855,7 +211855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dce5847c-70a6-4e15-b6a1-e5f75cc112b7", + "id": "12b62c1e-ee61-438b-8668-69e27c4124a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -211935,7 +211935,7 @@ } }, { - "id": "ebcbeadc-0809-4ff8-8832-9218bd46c116", + "id": "e7a457f1-f742-4e00-8152-3d723f85751b", "name": "Get current entitlement for a role", "request": { "name": "Get current entitlement for a role", @@ -211996,7 +211996,7 @@ }, "response": [ { - "id": "b0a42abb-66a6-41d8-80c0-a710f5a8389c", + "id": "69583848-d490-445d-ac14-c7b0a837a410", "name": "Succeeded. Returns a list of current or pre-existing entitlements for a role.", "originalRequest": { "url": { @@ -212060,7 +212060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "683bd9fb-11a1-4652-8fd1-f10da6161e41", + "id": "4daf4886-3262-4ec9-b751-1575654e48e6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212124,7 +212124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4825c177-1de4-4257-87de-39e959f52296", + "id": "9140e1b4-0178-4ff6-bff5-18bf0196dac9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -212188,7 +212188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6b89c29-7e0e-4464-bc87-cabb6d4fe87c", + "id": "088cd321-3900-4b43-83f9-2088a70b30eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -212252,7 +212252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd9495fd-4c30-4e16-b16b-ca05095520b2", + "id": "d058291a-2635-45d6-8247-253d8cdd6145", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -212322,7 +212322,7 @@ } }, { - "id": "eaaa6d9e-6642-4a00-949f-d62c32418210", + "id": "d615d90b-402d-4976-bf92-f279e83bb7a1", "name": "Get identities for a suggested entitlement (for a role)", "request": { "name": "Get identities for a suggested entitlement (for a role)", @@ -212440,7 +212440,7 @@ }, "response": [ { - "id": "7e4f2ddf-2427-4fb1-b072-b603c962563f", + "id": "d1d773be-83d7-4df2-aaf2-c083e2af35d3", "name": "Succeeded. Returns a list of identities with or without the entitlement.", "originalRequest": { "url": { @@ -212551,7 +212551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b297ffa9-246b-43d8-8db7-9cd1ac1d08f3", + "id": "62f3b955-4c4e-4222-a364-6a319c9afbee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -212662,7 +212662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "224a64de-9dd1-48a2-aeb8-a676084902cb", + "id": "243cf05c-8b06-4dee-afca-a48ba273f643", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -212773,7 +212773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29068d02-40f4-45c8-bfbb-02a143b0be4d", + "id": "8913d48f-7a86-4125-ba17-38ce7aba8f2c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -212884,7 +212884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e1e7684-b966-42ee-aee9-aba3068163bc", + "id": "99ced36e-200f-4ec1-a8d7-52a33818aa45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -213007,7 +213007,7 @@ "description": "Use this API to implement and customize role functionality.\nWith this functionality in place, administrators can create roles and configure them for use throughout Identity Security Cloud. \nIdentity Security Cloud can use established criteria to automatically assign the roles to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks.\n\nEntitlements represent the most granular level of access in Identity Security Cloud. \nAccess profiles represent the next level and often group entitlements. \nRoles represent the broadest level of access and often group access profiles. \n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both. \n\nRoles often represent positions within organizations. \nFor example, an organization's accountant can access all the tools the organization's accountants need with the 'Accountant' role. \nIf the accountant switches to engineering, a qualified member of the organization can quickly revoke the accountant's 'Accountant' access and grant access to the 'Engineer' role instead, granting access to all the tools the organization's engineers need.\n\nIn Identity Security Cloud, adminstrators can use the Access drop-down menu and select Roles to view, configure, and delete existing roles, as well as create new ones. \nAdministrators can enable and disable the role, and they can also make the following configurations: \n\n- Manage Access: Manage the role's access by adding or removing access profiles.\n\n- Define Assignment: Define the criteria Identity Security Cloud uses to assign the role to identities. \nUse the first option, 'Standard Criteria,' to provide specific criteria for assignment like specific account attributes, entitlements, or identity attributes. \nUse the second, 'Identity List,' to specify the identities for assignment.\n\n- Access Requests: Configure roles to be requestable and establish an approval process for any requests that the role be granted or revoked. \nDo not configure a role to be requestable without establishing a secure access request approval process for that role first. \n\nRefer to [Working with Roles](https://documentation.sailpoint.com/saas/help/access/roles.html) for more information about roles.\n", "item": [ { - "id": "60a97d05-8e15-4832-88e9-5b0d8c32a0db", + "id": "2007d6f7-65a7-4345-90fa-74eee926049f", "name": "List Roles", "request": { "name": "List Roles", @@ -213109,7 +213109,7 @@ }, "response": [ { - "id": "f76dc99a-698d-4602-bb02-86d5e5495517", + "id": "f132d108-72e2-4ef3-850e-bbfc56bc8a8c", "name": "List of Roles", "originalRequest": { "url": { @@ -213225,7 +213225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d013d5d-3bbb-469b-81ab-313a82fd48c7", + "id": "a927ec10-4d18-4562-9007-8157343a934a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -213341,7 +213341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29f9fb65-b389-476f-9858-07a0b298b037", + "id": "b5cab8cb-d161-4054-b01a-495e39c98aaf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -213457,7 +213457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04e6b1d1-1877-4ab3-9e26-1e0c645b85b2", + "id": "6653afb9-bd4f-4553-b64b-90d7685cd1bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -213573,7 +213573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a589e2cf-568a-4c28-b435-6b360270984d", + "id": "35678268-d1dc-4322-9fba-5a4692e66ce0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -213689,7 +213689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53543080-4784-4eff-8648-05e03dd5b376", + "id": "83557bfb-b776-4f89-b2f1-4f79bba4bf99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -213811,7 +213811,7 @@ } }, { - "id": "0fff50a8-8fce-40c6-b96c-94393313f7f8", + "id": "26d2a0da-56be-4b87-9689-ad81fd60ab50", "name": "Create a Role", "request": { "name": "Create a Role", @@ -213853,7 +213853,7 @@ }, "response": [ { - "id": "480e2e13-b4a2-4098-816e-249aa18ef86e", + "id": "83fa9841-035b-434f-8f95-5e070a46a877", "name": "Role created", "originalRequest": { "url": { @@ -213909,7 +213909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7317aec5-06e3-4257-a330-baccbedd4c78", + "id": "b7777fef-363b-4874-8d73-c0d921c00cc7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -213965,7 +213965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d2a06d3-cc16-49df-b828-5e7cb74ab1d8", + "id": "92e8a0ec-a2ca-45af-997b-df0f5b4bf744", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214021,7 +214021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9411b37-4010-4863-9cfa-b4e1acf0b817", + "id": "4903353a-9684-4921-bce2-1fdb8aab4f69", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214077,7 +214077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b42b2c9-fc2e-4159-b6e0-9e740fb98f9c", + "id": "20926aa3-43d2-4992-8739-989bf75b2ba0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214133,7 +214133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f999f4f-91ab-467c-8c20-7d7ea1fd5daa", + "id": "a41e52f5-1928-4026-8a0a-26c5c7c55e45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214195,7 +214195,7 @@ } }, { - "id": "a173f824-540d-44b6-8720-a0ac8275a62e", + "id": "96234b0e-5108-4bcd-a2d7-4d475daed9a5", "name": "Get a Role", "request": { "name": "Get a Role", @@ -214236,7 +214236,7 @@ }, "response": [ { - "id": "b6aa085d-0539-4f44-8541-b2087ca38f0c", + "id": "1b6cb9f9-f72e-42c2-a32c-9e888003ac13", "name": "List of all Roles", "originalRequest": { "url": { @@ -214280,7 +214280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8a43444-0ece-4061-9353-130964346623", + "id": "ead2fd8a-add1-4269-a1f3-18d9b10dd52a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -214324,7 +214324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac0e18d5-603c-45e9-8ae9-23b3229d4bb1", + "id": "c009420e-6693-4c47-8053-44de5f8b979e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -214368,7 +214368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cbe4fff-7db8-4850-bc13-ad42997f0df8", + "id": "26cc7a60-c338-4028-9df7-631e375dbe30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -214412,7 +214412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "395f8717-dcd3-421d-adb9-32d3777d44d1", + "id": "6153e85b-0d69-41c7-88cf-74b21596d408", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -214456,7 +214456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c39d22f2-3fba-479b-89f9-52b848dcaaff", + "id": "24eb44e4-454f-40a9-a1a4-6423101333f3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -214506,7 +214506,7 @@ } }, { - "id": "7930097d-fdfb-43f3-ac0c-186f065eacef", + "id": "d1cc2afe-d31c-4fd2-b578-1300ca3f5f83", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -214560,7 +214560,7 @@ }, "response": [ { - "id": "ed51490f-aefa-465d-bac5-ec7f46f63fd3", + "id": "b5705b46-fd63-4e49-ba75-cbe443ba9315", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -214617,7 +214617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f5c1d20-54b2-4ae0-b476-decd46cda5cf", + "id": "38ebcb97-dd9a-4d73-9bab-e452ebd37e99", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -214674,7 +214674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9683f162-4bb7-472c-898c-6862bfc02147", + "id": "7c3eedbe-79a6-4fc2-98c5-3471abc5ce53", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -214731,7 +214731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "426a9713-3d25-4553-8a62-bd2e145cb4f8", + "id": "ecbbc965-06b5-45cd-a8e9-f5d24f17b80f", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -214788,7 +214788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d3423d-ec5e-4eb0-90aa-95d4d1a1c9a2", + "id": "0da06b54-b532-4415-a1d8-5e4fd3e64cff", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -214845,7 +214845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb83a46f-7eed-4395-bf70-c28fb962e64f", + "id": "1679b61f-0833-4159-b2fe-78cd5da46832", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -214902,7 +214902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "224c3921-7ef5-4763-aa78-b9d920a1afeb", + "id": "4acdec93-59b2-4e93-b694-079319b4e878", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -214959,7 +214959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f2fdc67-6a78-41ab-952c-817d79b67a43", + "id": "a1eec5c2-c368-4a74-91d4-7c0491817ac7", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -215016,7 +215016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82755af7-99c2-4d97-898d-54e6df2b29de", + "id": "2502d589-57b6-4761-a62f-7b85714e0971", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -215073,7 +215073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a0848f-8235-476e-8fbe-562f3d62fbf8", + "id": "379a3fdf-41fd-415d-ab7f-59b600bdfafb", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -215130,7 +215130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e38c2a3-b9f7-44a6-82e7-0b864641e828", + "id": "ddae39a9-932c-45a9-8488-dd28a88cbe0e", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -215187,7 +215187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b59b732-dd1c-46a1-8758-f610808b23e4", + "id": "6e2dea6b-6935-4464-a324-a987a7514fea", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -215244,7 +215244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3750e56-f572-4a30-a2df-aec37794bb09", + "id": "74a5a1be-47b9-4562-b23a-62e3cbb7dd35", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -215301,7 +215301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28fcb223-a25c-4a77-ab79-2f4582342017", + "id": "b64f062b-9a43-4d11-97fe-18b4d025de9b", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -215358,7 +215358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0fd7f2d-f923-4b97-ab06-79230ca7176a", + "id": "16b6fac2-95f0-4a41-b779-38bb04a8901c", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -215415,7 +215415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c007587-0f10-4a1d-b086-eb4a0d47a062", + "id": "a058a2d8-ca9b-498c-aa6b-d15bb9e1e390", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -215472,7 +215472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "097fe791-9063-4871-85f0-d7a4843594b2", + "id": "9c351b94-dc99-4585-ba53-102d2e141187", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -215529,7 +215529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4db976a9-fb6f-4b2c-a903-6befcec3e3e2", + "id": "5dd9fd5d-3629-47e4-8b58-401fb7270d90", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -215586,7 +215586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "854ce812-44a8-467b-8131-4574cfdb4813", + "id": "bf0b0d69-37c5-4486-9e98-993028890a69", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -215643,7 +215643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f64defa3-ac97-4534-95a1-b6caf23ea374", + "id": "e316e5d3-915c-44eb-ab41-575a094967bb", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -215700,7 +215700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc629fa-c12a-4c68-9c67-622b93b81137", + "id": "74b3aed9-5c34-40a8-874a-b9660a2f33c6", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -215757,7 +215757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3558608-cb63-4dfe-8a07-b1d6c95a89f1", + "id": "dfea6a9e-07d2-4a60-9d7e-aacb6ce11e77", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -215814,7 +215814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a747ece-7c81-46b9-990c-1de7792826d2", + "id": "be337993-3a80-44ae-901f-fcb880cca476", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -215871,7 +215871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bbd1f1d-d939-4c27-bd40-08ee3e988ef0", + "id": "2860cbe0-8fc2-4b97-a8ee-136e71045436", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -215928,7 +215928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4fb9779-a9c7-43fa-bf96-b15a73a0ec0d", + "id": "e8536cdf-9c43-444b-963d-9fb4fa2c937c", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -215985,7 +215985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b8ad885-5f99-4c50-8201-66b7a903d9f6", + "id": "9b259db5-6a96-44e9-9ec8-687c47f01ede", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -216042,7 +216042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89f83bf6-3e33-430f-954b-7dbc4c529732", + "id": "0ff99930-baf0-43d3-899e-8fdfc030c80f", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -216099,7 +216099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e189e20-accb-49a1-8592-e9661c1fc1d9", + "id": "387980b7-1dab-4259-95f1-87f734de4539", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -216156,7 +216156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b874c689-9dc4-4cc7-b485-ac9a5252b7ab", + "id": "f34a8686-e81b-49a1-b372-6105e8c69762", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -216213,7 +216213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c56d0fb-e216-467b-964f-6a3b5e6490ed", + "id": "d2548cee-e486-48ba-bc76-01b55a6d2751", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -216270,7 +216270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3910c009-e38c-4740-9805-fccbf1f5ad40", + "id": "57ebbfb7-3c91-461a-a3fe-78e6a6e2b12a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -216327,7 +216327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "909dc438-c714-495a-ad03-2fd95a879ab7", + "id": "2b2a1dff-4b1f-4faf-854f-e11ff25f1c67", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -216384,7 +216384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f514921d-89a2-4043-b68c-587e0463bf77", + "id": "c59fb87b-63aa-4f37-8336-a86437dd5b20", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -216441,7 +216441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6752ca2b-3e7b-4d07-828f-c48931837694", + "id": "3b230ebd-dc2a-4010-b4a0-96d778311268", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -216498,7 +216498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e950c19-8033-44a7-aacc-125ac5ca3338", + "id": "d12dbb1f-73e6-4c4c-82f9-22aa752290a0", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -216555,7 +216555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e92b596d-ed23-4b13-b868-a2381996b6c4", + "id": "23b0e3d8-3444-485b-9d52-06b2c096a373", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -216618,7 +216618,7 @@ } }, { - "id": "481106c7-cb76-41a9-8f09-142814a40a62", + "id": "1732df02-9021-4048-bbfd-2d02c41c2ccb", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -216659,7 +216659,7 @@ }, "response": [ { - "id": "04929055-0626-49a5-b788-273b202891ca", + "id": "fb979c00-5bba-420e-bd86-f23a3e5d393e", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -216693,7 +216693,7 @@ "_postman_previewlanguage": "text" }, { - "id": "84cae7cb-dd78-412d-8107-117affa99689", + "id": "0db77efc-0bcb-48c6-8f32-19572892b583", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -216737,7 +216737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "785cc01e-e04e-4f35-ad4f-395d56943451", + "id": "efde59ec-d37e-428a-af01-9696340642fb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -216781,7 +216781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baca1310-ae87-4a56-82c9-407eac079c55", + "id": "e5595c3a-d71e-4c7a-80f5-6ce7d840b8ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -216825,7 +216825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae5f20fe-f307-44ac-bf4e-dbf131550111", + "id": "5dadee73-a9af-47d0-97a7-d30c571b1481", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -216869,7 +216869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c0298bb-8760-4e0f-b939-183899d21c21", + "id": "6adc05da-9684-4365-af01-b5b940030725", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -216919,7 +216919,7 @@ } }, { - "id": "dcc8df9b-9c87-437c-89c8-dca010285a7d", + "id": "4f762443-03ba-4d90-8891-521c49068daf", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -216962,7 +216962,7 @@ }, "response": [ { - "id": "b8a4cc8b-7782-43a9-b984-378625d1e4da", + "id": "4fe01816-404f-4e6f-a217-3ab91d7c89c8", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -217019,7 +217019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb4a8aff-43d7-483a-879f-380db500ca14", + "id": "0027b3f1-4767-4301-a95e-7f036552fdf5", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -217076,7 +217076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e2f540-b6d4-41c7-ae5b-6aeb90054c0f", + "id": "05517d97-f675-4384-a6f0-efbdcb36d5a1", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -217133,7 +217133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62bc0534-7a39-449c-8610-8c8461c83e24", + "id": "97fb9dd1-3fc6-4ede-a9d0-d5dc26457742", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -217190,7 +217190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e21fdd-cb5d-44d6-b2b0-35810a84b018", + "id": "6b76f78a-cdf2-4674-ac19-cda6a32a08df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -217247,7 +217247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6617d3e2-49d0-4b1c-9747-b8ce4c568335", + "id": "7d288221-223e-4993-8646-820a4851b774", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -217304,7 +217304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a66b6c3a-5f94-4bbc-95f5-50a1fb586c39", + "id": "75a84e9a-5dfc-4bba-8ea7-95444aaa7a0d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -217361,7 +217361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1494352-b809-444b-a714-679ec767f4ee", + "id": "9bfc8b0a-958e-4ae3-9c48-eff493b707ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -217424,7 +217424,7 @@ } }, { - "id": "780ad57e-f02a-436f-9019-e901751d74a8", + "id": "d729833c-4f90-48c5-904d-8fd31c9f3dc3", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -217509,7 +217509,7 @@ }, "response": [ { - "id": "251bcd3c-5b0f-4ac7-b869-610cb5e3a6ac", + "id": "482f9855-3b88-4e99-9b79-2416d0aee0ac", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -217600,7 +217600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c089cda-6881-4435-9e6b-4b571fc2e266", + "id": "f042d9e4-08d4-4e95-8f57-e08b23543a35", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -217691,7 +217691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32c71b76-b83f-456c-bfa5-bbc88eac833c", + "id": "764179d0-3f35-4925-a36c-40fb1534a5cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -217782,7 +217782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "390b9abc-f6be-4501-a648-651ce6b4c86f", + "id": "12c416f4-583a-4e32-89c2-7e32fe4084f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -217873,7 +217873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52c8e3e8-5247-494e-9718-90ce9e103a53", + "id": "613dd9f3-7807-4437-b77e-a1342c716be2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -217964,7 +217964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "248dca35-547f-4cfe-815c-eb83231493da", + "id": "f7644981-2744-41d7-9f2c-aa572b5bbb52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -218061,7 +218061,7 @@ } }, { - "id": "12dc6ec3-1942-4bc2-b7bf-3d19985fd7b1", + "id": "88c22625-5b13-45e0-841b-a4d33396238c", "name": "List role's Entitlements", "request": { "name": "List role's Entitlements", @@ -218158,7 +218158,7 @@ }, "response": [ { - "id": "89c313f9-5aac-4d2f-8105-75f848158640", + "id": "73e4e0bf-c247-4fc4-abe6-a97a0abbd527", "name": "List of Entitlements", "originalRequest": { "url": { @@ -218258,7 +218258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eadc31a1-c44e-49c6-9e3b-78aeaecee7ac", + "id": "4a681e07-bde3-455f-81de-cd5556a5b284", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -218358,7 +218358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b8584c6-5da9-4a24-8f46-e2c54e8b06bb", + "id": "62c95ba3-a20d-42df-bb56-917af208ca03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -218458,7 +218458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a639e211-efb2-413a-a817-a4ff39e2ea97", + "id": "a3b3ad8d-63ca-4bb5-a0e6-645c05250dc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -218558,7 +218558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23badef2-3faf-4e18-b408-398d2c145274", + "id": "61104cdc-cc2e-4114-aea8-1a54a04b173f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -218658,7 +218658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcffbd56-2e2b-41b6-9417-674ae3dbe92a", + "id": "e1b0d79c-1f27-4761-a2ca-5c67019c12dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -218764,7 +218764,7 @@ } }, { - "id": "bbb86e39-3eb1-4c4c-8ecc-137f55cd04d8", + "id": "e0a078e6-2ea1-42b8-a124-b00da44176e0", "name": "Add a Metadata to Role.", "request": { "name": "Add a Metadata to Role.", @@ -218829,7 +218829,7 @@ }, "response": [ { - "id": "a2508794-7e61-47d5-8bdb-1d8096c2fc68", + "id": "7017254f-4a8b-4b5c-b9d7-dd5b8e84aa30", "name": "Responds with the Role as updated.", "originalRequest": { "url": { @@ -218877,7 +218877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e09684e-c37b-4c00-923b-15575d7acfd1", + "id": "98422f28-0111-4119-8cd3-f85c709cb9da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -218925,7 +218925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1065a519-f8ea-4f42-8ef3-72630442f639", + "id": "842b64f9-014b-4ead-be2d-bd5ab0ef9dbc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -218973,7 +218973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26eed599-1c94-47f8-99de-caf2e8e3d395", + "id": "a1ff4068-d071-4c1e-8090-b55053e4e407", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219021,7 +219021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd7686e9-b7b8-400c-a3a3-cbb2c60b83d2", + "id": "307ad410-31c8-41e8-8adb-582d4a42d820", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219069,7 +219069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cb8732f-2834-437d-967d-d911dffdb938", + "id": "1a77370e-2123-4ef9-9ca9-a78ad78657e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219123,7 +219123,7 @@ } }, { - "id": "e1c1d419-380c-4be6-93dd-359750cc56c5", + "id": "773e7672-5f8c-4289-a754-22b3b45358af", "name": "Remove a Metadata From Role.", "request": { "name": "Remove a Metadata From Role.", @@ -219188,7 +219188,7 @@ }, "response": [ { - "id": "e761ab34-d061-457a-9ecf-9bfc3075205f", + "id": "75e884dc-d25e-4792-b892-70545592690d", "name": "Request accepted", "originalRequest": { "url": { @@ -219226,7 +219226,7 @@ "_postman_previewlanguage": "text" }, { - "id": "452a95d4-1074-4c04-b543-8875482cc12f", + "id": "5a7aaff5-9cc4-451e-b56f-6e55f708ba12", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -219274,7 +219274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cdb9445-f29a-48f5-9381-89b40e6e4166", + "id": "17539548-f943-4901-9b86-c3daa90c6cd4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219322,7 +219322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d80aa8d-b13b-4ae6-8285-ca060f29ba1f", + "id": "fb849b09-aebe-4187-ab7d-884356786998", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219370,7 +219370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "474e1cec-4e25-4336-899b-a3cbd4e09b6e", + "id": "442ec2ac-a66b-4af9-8456-3dca2407def6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219418,7 +219418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f839e4ee-27bc-4c4a-9cfb-99cdd7cdf604", + "id": "16b33ccf-7ab0-4a74-945d-cf2b2a96eb29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219472,7 +219472,7 @@ } }, { - "id": "f9a923c0-be74-4fda-8685-98853f110665", + "id": "2daf390a-8702-419e-b66c-ee893fb1f9da", "name": "Bulk-Update Roles' Metadata by ID", "request": { "name": "Bulk-Update Roles' Metadata by ID", @@ -219517,7 +219517,7 @@ }, "response": [ { - "id": "88dacad0-f8eb-4a03-983d-e837362ee608", + "id": "dd81c955-7696-4537-b3af-9bb31c9b5ac3", "name": "Returned if bulk update request created", "originalRequest": { "url": { @@ -219576,7 +219576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf50e82b-dbbb-461c-8c03-9584586527c5", + "id": "5ce4c8da-25bc-4089-a0f8-a1137468fb9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -219635,7 +219635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e1b123c-0494-4c9a-9e36-4aa7048957d4", + "id": "d18872f6-9de7-4f7e-95d2-9234e8cf75af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -219694,7 +219694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9968462d-c6a6-4374-ae21-8696f1144d1a", + "id": "27969edf-cd38-4f2a-b429-0ffbd03ce904", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -219753,7 +219753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b736f85-b275-45b4-88e3-6ee61908e4af", + "id": "a2943fac-0fe2-4765-aed1-eeae3f1b078f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -219812,7 +219812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc3816f9-c81a-4053-8cf6-4cb5f9f49da1", + "id": "955eab53-763c-4a87-8a70-4b98fd73ad56", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -219877,7 +219877,7 @@ } }, { - "id": "5481dddf-4c17-4a28-9b13-e877a75d9feb", + "id": "48dfcc21-9e03-4ec5-807a-386ac4d4dca4", "name": "Bulk-Update Roles' Metadata by Filters", "request": { "name": "Bulk-Update Roles' Metadata by Filters", @@ -219922,7 +219922,7 @@ }, "response": [ { - "id": "b8d7d98f-1d4f-4a94-a197-8071d3cad310", + "id": "26080082-ed79-4fce-8b4b-fcaf80304ecc", "name": "Returned if bulk update request created", "originalRequest": { "url": { @@ -219981,7 +219981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b7cc926-7636-4730-a50d-039759463162", + "id": "99700514-4f29-4e20-840c-87c21a37a3f7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220040,7 +220040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b070986a-b592-45b8-ac92-6750899d3243", + "id": "3bd12b94-c0e3-4ead-9822-1762bc355bd5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220099,7 +220099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90f046d5-2b1a-4071-b174-5d1ec6e9901a", + "id": "f4c55156-c864-4971-8d82-c4564bd2cecb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220158,7 +220158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58bf708-28b2-4b57-b227-2d45915e10b1", + "id": "e8b296c3-f9be-489c-aa1e-643b9f19257b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220217,7 +220217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b9ba706-d49d-4486-9355-cbc5004f84d8", + "id": "ab6438a2-ea5d-414f-ad87-6f0b160cff14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220282,7 +220282,7 @@ } }, { - "id": "7d660e44-eea6-4345-86b1-84eefcd1aef1", + "id": "1931c761-312f-4f46-87ff-4b67aaa4f026", "name": "Bulk-Update Roles' Metadata by Query", "request": { "name": "Bulk-Update Roles' Metadata by Query", @@ -220327,7 +220327,7 @@ }, "response": [ { - "id": "1e7021aa-a62c-487f-a849-49ea821ea737", + "id": "8583c535-de5b-45c4-9dfa-a2f9a798a3a9", "name": "Returned if bulk update request created", "originalRequest": { "url": { @@ -220386,7 +220386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd13cd30-d2ac-4192-9dbf-683dacd1e529", + "id": "f0acc65d-a4f0-4d02-a62f-e204e412c2c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220445,7 +220445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29502985-cf70-4dc3-a09b-50fe89d28fee", + "id": "03ac6db5-e4c0-4e1d-8bdb-9493e8845ad9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220504,7 +220504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d34b5d59-518d-4311-aad5-3025dd9fd74a", + "id": "b1476453-30f1-4b7a-94fd-adb6494d27d3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220563,7 +220563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e270f6fa-f581-4b3e-999d-e9878a4a57f7", + "id": "1ef2d86f-2238-4dd6-8da1-ab183e44d91f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220622,7 +220622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a2f25d5-d855-4220-b49d-bf4df5c4a847", + "id": "1910643e-d909-44a3-97cf-95d5eb9e5784", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -220687,7 +220687,7 @@ } }, { - "id": "4625ffa9-7771-498f-83a4-972e5afc53ac", + "id": "6c982a42-0f01-4835-a623-1ce15d22a0bb", "name": "Get Bulk-Update Status by ID", "request": { "name": "Get Bulk-Update Status by ID", @@ -220730,7 +220730,7 @@ }, "response": [ { - "id": "a0268e51-e99f-45d1-853d-6a7d087513e9", + "id": "974ea204-aefe-4dcb-b6fc-43f721506dba", "name": "return if bulk update status could be found.", "originalRequest": { "url": { @@ -220776,7 +220776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76da798f-2c3a-4e46-896b-c5580e38e595", + "id": "342f614e-c257-434a-b1da-325c3cc7e2b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -220822,7 +220822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b1dc41c-3ffe-494e-8d85-6dc4922e3d01", + "id": "8ecdbbfa-05b5-4221-8051-d8efa4e04276", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -220868,7 +220868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5599466d-4c2a-4c76-a967-9234a601c7b9", + "id": "d594e1e1-d0d0-49b2-8193-a18a21f9d351", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -220914,7 +220914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e90f9457-9436-4f52-bfbc-2950d9c06526", + "id": "bcec33e9-0ea6-4fda-8ca6-4a8078763ab4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -220960,7 +220960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07141d7d-d66a-498e-8291-c62ad7877404", + "id": "8a7e924d-6060-4e90-9bc0-813cef7cba6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -221012,7 +221012,7 @@ } }, { - "id": "13183869-860d-4ba3-9cc1-801598fd433f", + "id": "ea2fb8de-5185-4354-a5c9-12d6368fec3e", "name": "Get Bulk-Update Statuses", "request": { "name": "Get Bulk-Update Statuses", @@ -221043,7 +221043,7 @@ }, "response": [ { - "id": "e1b683b7-e650-47df-b896-16e4e9107f48", + "id": "0cb676ff-87e3-43b8-86a8-2de7ec2ed071", "name": "successfully get the status of all unfinished bulk updates request.", "originalRequest": { "url": { @@ -221088,7 +221088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21d97093-aa6a-4865-be30-eb45608ec0c1", + "id": "dafe7c42-c911-480e-9a16-17bc1cfe5c84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -221133,7 +221133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dde1ce13-6068-44da-9eb2-30e05285573b", + "id": "027aeac4-0cbe-465d-90fd-a29c114b8da3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -221178,7 +221178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a693592a-39c5-4f60-aa58-1175e91ba813", + "id": "f2b03db8-774c-4d30-b2fe-05d758dfeee6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -221223,7 +221223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79bd8085-7868-4a84-b13c-a49cbc6825e0", + "id": "656bcbc9-8dd0-4a91-a094-3a772d8cce60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -221268,7 +221268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6198c3d6-4260-4635-a142-c67153ea9b91", + "id": "d09e3b13-77ea-47e6-9f9f-d2550578b53b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -221319,7 +221319,7 @@ } }, { - "id": "745389fc-f2bf-4e83-a21e-6d348ddaa65b", + "id": "2b45e914-2867-4f8b-9ba0-2d73deba9a98", "name": "Filter Roles by Metadata", "request": { "name": "Filter Roles by Metadata", @@ -221435,7 +221435,7 @@ }, "response": [ { - "id": "3402c372-1434-4601-8207-917423e618de", + "id": "6ee65404-82c8-4508-8de4-2866a5c8da67", "name": "Responds with A list of Roles", "originalRequest": { "url": { @@ -221556,7 +221556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a834acd2-81e3-43c0-911c-b0ffea3887da", + "id": "2e9fc3d7-8b88-48f5-9104-f8414688db62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -221677,7 +221677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "213062c1-f055-4130-9a86-865b28f4750b", + "id": "58b47e97-8b5f-4278-a9fe-8974ae94cc23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -221798,7 +221798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82768f6c-907b-40f7-a5e8-613b22a89d76", + "id": "7bfbc1cd-4028-46de-92df-9e4dcddf92d0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -221919,7 +221919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e96fecd9-0650-40e8-a713-28c8420a8429", + "id": "f0fb4181-0f60-4bdc-958f-7592d0bd9d7b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -222040,7 +222040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1cdcc8c-7ab5-4fcc-ad94-a4dcb6f50806", + "id": "f64771e5-1522-4dc7-8d30-1c55c38a7c06", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -222173,7 +222173,7 @@ "description": "Use this API to implement saved search functionality. \nWith saved search functionality in place, users can save search queries and then view those saved searches, as well as rerun them. \n\nSearch queries in Identity Security Cloud can grow very long and specific, which can make reconstructing them difficult or tedious, so it can be especially helpful to save search queries. \nIt also opens the possibility to configure Identity Security Cloud to run the saved queries on a schedule, which is essential to detecting user information and access changes throughout an organization's tenant and across all its sources. \nRefer to [Scheduled Search](https://developer.sailpoint.com/docs/api/v3/scheduled-search/) for more information about running saved searches on a schedule. \n\nIn Identity Security Cloud, users can save searches under a name, and then they can access that saved search and run it again when they want. \n\nRefer to [Managing Saved Searches](https://documentation.sailpoint.com/saas/help/search/saved-searches.html) for more information about saving searches and using them.\n", "item": [ { - "id": "a9ca9e7a-7ec5-40b1-ae3a-694d721f25b3", + "id": "530072bb-1cae-4847-9373-d233f2a4db98", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -222215,7 +222215,7 @@ }, "response": [ { - "id": "503bcfcf-5bd4-40aa-ab07-484e572e1c76", + "id": "8ef0be94-9647-4bd4-9e1f-71061571f4b9", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -222271,7 +222271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811b0470-4ca4-4c5b-ad31-a6a93babf721", + "id": "fae69851-7805-43be-aa5a-b95ec9e8d9a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -222327,7 +222327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2fd8b91-67b1-4093-a293-b41b0bfdc878", + "id": "4db22d1d-8482-4b4b-97da-1d38621ddb39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -222383,7 +222383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cf4fbc9-c6f8-465f-b7d2-0c3442c723fb", + "id": "fbf7bd07-fdcd-4173-96fb-630fd1036e89", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -222439,7 +222439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a8ec813-d0c6-475e-9596-c96bc88eb05a", + "id": "ff4b26c7-94e1-4f78-b031-f56ff797d25a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -222495,7 +222495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4380ac88-ab8d-46f5-b49d-0baa10dc2fe9", + "id": "abdf3a87-23f9-494d-a94b-b5ec258052e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -222557,7 +222557,7 @@ } }, { - "id": "f234652a-5fda-4d31-b63f-33b54435c6bf", + "id": "12762d41-07d8-4e4c-a145-1b302f6de906", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -222623,7 +222623,7 @@ }, "response": [ { - "id": "3752ae04-4de2-49d0-b956-ffe507acccb0", + "id": "76b9d887-e272-4e9a-ad5e-238e94398f23", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -222712,7 +222712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a9d8c5d-5924-468f-9ad2-855e5db30b1b", + "id": "bd3ac7fa-82bc-4d75-b123-668e2fae257b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -222792,7 +222792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd100c0f-b5d7-46a8-95ae-c0101511038f", + "id": "d8b95aa1-a18e-4116-9e53-b0665c7d8106", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -222872,7 +222872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2caf7f0f-7cc2-47d9-b0fa-e72e658ed383", + "id": "56885356-6acf-485d-a02c-61504610abc3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -222952,7 +222952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d63143e3-7a77-4b46-ab31-ff92466c361a", + "id": "a0d332a8-006e-4575-87c7-d82610ac09cc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -223032,7 +223032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a31de99-cbd0-4a0c-9207-34b341e7ba18", + "id": "3ac75e44-a5e8-4c77-a612-4de5da2992b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -223118,7 +223118,7 @@ } }, { - "id": "d12cdd36-aecc-49f5-a8d1-5d7f0eae34c6", + "id": "07fdce54-c597-4394-8bf5-9bb5dadc728d", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -223172,7 +223172,7 @@ }, "response": [ { - "id": "1f52f9d9-22bc-4d82-a089-9628b8f9d2d2", + "id": "6bef341f-b01e-4a70-a28f-90a999b852a0", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -223229,7 +223229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e763ff4-2cbd-4bbe-9e7a-3e221bd9cbd8", + "id": "963eaa70-db00-4826-911a-d9f2beb26d3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223286,7 +223286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8424fc4-2fe8-4fd3-8b6f-227c765406f1", + "id": "bbb82723-cdee-47fb-aa68-bfc770b7c543", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -223343,7 +223343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abf55f7a-cc2c-4a33-8000-7c7a69e30f65", + "id": "0e3ecdb3-d9fc-41dc-873c-b06b0c551916", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223400,7 +223400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb20f97-b12c-4968-8ce6-afadad510954", + "id": "aebb2837-b5d1-4eae-907f-307d73f689ea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -223457,7 +223457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e71d160b-2b1d-4b4c-a3ee-133b76f2983f", + "id": "555e9775-43ab-40bc-b7d7-3f333c3fa13a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -223520,7 +223520,7 @@ } }, { - "id": "2c1728ff-36ba-45ce-9255-4a236a3220e0", + "id": "6f9a8d7c-dd0c-4ac3-a29b-940465143141", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -223561,7 +223561,7 @@ }, "response": [ { - "id": "5c693d9a-d1cd-4839-addc-3c302ccb0958", + "id": "823ed1cf-71e5-426c-ae56-8afdcd1fc5bb", "name": "The requested saved search.", "originalRequest": { "url": { @@ -223605,7 +223605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a5e1601-77bf-41c6-a5f5-a3322c3ec796", + "id": "b3263166-643a-4d3f-a613-1c4be5f4e9eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223649,7 +223649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88d26765-f560-4286-8a48-a067e3f66278", + "id": "45d345ce-550a-4ad0-8aba-1ce2819b397f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -223693,7 +223693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f9a3ad-d8f6-4ecb-8f5f-0564d461853c", + "id": "f7e8fcbd-01f0-41b0-a5e9-e042da42b482", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -223737,7 +223737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0302bc77-5740-4ffc-87cc-591e09c538ae", + "id": "ebf9c72e-bc33-44dc-a46e-b75f7c227a81", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -223781,7 +223781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04059be4-ba46-4ef2-8369-9bcff6437d56", + "id": "5784ce5c-e2e0-43fb-ba25-047680dd54b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -223825,7 +223825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d36d39bf-4787-4a0e-81d3-f57d4d8697d1", + "id": "b78804c0-90d1-48cf-b17d-885144b70047", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -223875,7 +223875,7 @@ } }, { - "id": "cd851633-b69a-4172-982f-fa23307ae041", + "id": "9b283697-766e-4de4-a713-574532b43aaf", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -223916,7 +223916,7 @@ }, "response": [ { - "id": "bdef5688-9abd-4ef0-b18f-57c3464e6bab", + "id": "812181c6-ad97-4400-a8e4-ea1dfc92716d", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -223950,7 +223950,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3d56bca0-b5c3-4ea3-806d-0b4c6754972b", + "id": "323b665b-9ff6-4138-ac2f-bc42132675dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -223994,7 +223994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47e85c37-c423-4471-b508-8c8f715145a9", + "id": "f2a7aced-ac4c-4db6-8b60-f8d5a6cbec1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -224038,7 +224038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64de7068-ce00-49cc-a9ea-9a2412b18bd3", + "id": "16a93eba-c7f5-4e84-b828-e31b5cc26970", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -224082,7 +224082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31fac2ae-1d91-4575-9c75-5a9eb16e9e59", + "id": "3bf4d969-d345-4aed-bb5a-9ecb6eb88d2f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -224126,7 +224126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e1aa142-b9e1-46ed-8cb8-22a4f835a9eb", + "id": "0fbfd410-dccc-4f87-bb6a-a5260390bc4f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -224170,7 +224170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a1b9fe6-cf73-438c-bd32-310dd85033a3", + "id": "9879bc98-c36f-4f1d-a0b9-cf09952faed6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -224220,7 +224220,7 @@ } }, { - "id": "70ce96f8-e6a6-4a7d-a748-5ab574ba19fb", + "id": "e5fc59b0-fe9d-48d0-b05e-59a32c5ce33c", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -224275,7 +224275,7 @@ }, "response": [ { - "id": "82c7cad8-1046-4eb7-bb06-43bda1f8ec65", + "id": "fb33f765-ef42-4d71-8c36-4a316ba7b8ec", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -224323,7 +224323,7 @@ "_postman_previewlanguage": "text" }, { - "id": "181596f1-eebf-4867-8389-7a37ecb10665", + "id": "b4a2ce1a-a08a-4b7a-91a7-1034ddf41fcd", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -224381,7 +224381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f057548e-504c-46aa-b9c5-eff7fefc9ca3", + "id": "df87c640-7a81-45d8-9f30-2489f7ee35c2", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -224439,7 +224439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1f12652-1c74-4539-a999-b3cdb5b79bb5", + "id": "5c82fd10-f0d4-498b-944d-e2c98976fa2f", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -224497,7 +224497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2766779a-6509-4b3c-a3ac-e4e4f07b225e", + "id": "79d92eaa-b60d-4d05-81dc-0e2c67a117d7", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -224555,7 +224555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c0c4fa5-caad-46d4-947c-24d25cb918f3", + "id": "270a1d97-bee1-4c2e-87b0-813f3acb0c55", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -224613,7 +224613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fb9b4bc-8bda-4a66-815e-8eb4a6ef349e", + "id": "6f9dccc1-4b2b-4704-bebf-5f20e4b6b285", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -224671,7 +224671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84b24f9e-da76-414e-a07a-32a64a2c051f", + "id": "ac100291-8730-425d-b3fe-dbd80992a559", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -224729,7 +224729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c16acf07-a484-4220-879b-bba2a89cd9ae", + "id": "18863737-7e8e-42aa-b74c-480ada50f515", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -224787,7 +224787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7c280e1-d4d3-4b81-b797-fc8524d83250", + "id": "be7938e5-e1fc-4cce-825c-e2748e4157a2", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -224845,7 +224845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bcbf8c3-938f-4347-bc5c-022e9e61a0c2", + "id": "6696545e-4ed3-4906-b1b3-ca6e6ac3e7e8", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -224903,7 +224903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3d0725b-c61f-4cf9-bdf7-ac5c6e6e0cb3", + "id": "9553695c-a1c9-42c5-9af6-a96fda223155", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -224961,7 +224961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb9df961-640f-4ea9-9f96-35d36f609f0e", + "id": "df2f1524-1ac0-4465-8e8e-329ee3d7d3a1", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -225031,7 +225031,7 @@ "description": "Use this API to implement scheduled search functionality. \nWith scheduled search functionality in place, users can run saved search queries on their tenants on a schedule, and Identity Security Cloud emails them the search results. \nUsers can also share these search results with other users by email by adding those users as subscribers, or those users can subscribe themselves. \n\nOne of the greatest benefits of saving searches is the ability to run those searches on a schedule. \nThis is essential for organizations to constantly detect any changes to user information or access throughout their tenants and across all their sources. \nFor example, the manager Amanda Ross can schedule a saved search \"manager.name:amanda.ross AND attributes.location:austin\" on a schedule to regularly stay aware of changes with the Austin employees reporting to her.\nIdentity Security Cloud emails her the search results when the search runs, so she can work on other tasks instead of actively running this search.\n\nIn Identity Security Cloud, scheduling a search involves a subscription. \nUsers can create a subscription for a saved search and schedule it to run daily, weekly, or monthly (you can only use one schedule option at a time). \nThe user can add other identities as subscribers so when the scheduled search runs, the subscribers and the user all receive emails. \n\nBy default, subscriptions exclude detailed results from the emails, for security purposes. \nIncluding detailed results about user access in an email may expose sensitive information.\nHowever, the subscription creator can choose to include the information in the emails. \n\nBy default, Identity Security Cloud sends emails to the subscribers even when the searches do not return new results. \nHowever, the subscription creator can choose to suppress these empty emails. \n\nUsers can also subscribe to saved searches that already have existing subscriptions so they receive emails when the searches run. \nA saved search can have up to 10 subscriptions configured at a time. \n\nThe subscription creator can enable, disable, or delete the subscription. \n\nRefer to [Subscribing to Saved Searches](https://documentation.sailpoint.com/saas/help/search/saved-searches.html#subscribing-to-saved-searches) for more information about scheduling searches and subscribing to them.\n", "item": [ { - "id": "df05781b-bb31-4352-83a8-c633cb129abd", + "id": "1cb1ad29-6b33-461e-853b-6c3eafc664be", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -225073,7 +225073,7 @@ }, "response": [ { - "id": "3b5c386c-2c79-4d6f-8cf4-008fd03ddbbb", + "id": "57fb9339-0bee-4b7b-b3d4-c000629c5a59", "name": "Daily Search", "originalRequest": { "url": { @@ -225129,7 +225129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b7bcfba-0747-48e0-8311-1c94ad252fa8", + "id": "d64a3cd3-17e7-49c4-be11-499f0d543486", "name": "Weekly Search", "originalRequest": { "url": { @@ -225185,7 +225185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "782901b7-dd1a-49e7-a658-738b64b0beae", + "id": "a28d2d1a-ff14-4e56-a15e-e9c0638f2093", "name": "Monthly Search", "originalRequest": { "url": { @@ -225241,7 +225241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ecaeae3-974e-4c7f-8641-79a3c9d0e4e9", + "id": "1d1667fa-9bda-42d0-b39c-053aeddd3efa", "name": "Annual Search", "originalRequest": { "url": { @@ -225297,7 +225297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4717389e-ac48-46ef-9774-f13b37d9e786", + "id": "bcb978a8-5144-461c-8fe9-ff5191d5f723", "name": "Calendar Search", "originalRequest": { "url": { @@ -225353,7 +225353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc38000-21d3-4bca-99cd-997f7cd6fab4", + "id": "92992a00-c0cf-4a9b-bcb3-7bfebd825fea", "name": "Daily Search", "originalRequest": { "url": { @@ -225409,7 +225409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dc21159-9dbb-4a3c-9ea3-0b4b66049428", + "id": "8fee9fb0-027d-483f-8577-7862a9c705ed", "name": "Weekly Search", "originalRequest": { "url": { @@ -225465,7 +225465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3aa62fe1-a9d8-4254-b824-3caf3cf0b60b", + "id": "1ffd1be3-a88d-4327-a152-facb783ed927", "name": "Monthly Search", "originalRequest": { "url": { @@ -225521,7 +225521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ff3613c-c49b-48f9-9360-1de756666fe0", + "id": "d026e063-fe41-440d-af2e-6dcbb83eb80e", "name": "Annual Search", "originalRequest": { "url": { @@ -225577,7 +225577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "239f2b07-f18c-4407-86c3-2af338bbb4f0", + "id": "4120d230-a94f-4877-9818-587a3d6e2a23", "name": "Calendar Search", "originalRequest": { "url": { @@ -225633,7 +225633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63aa7cb5-57a0-478a-8ef1-4be62c2aeec7", + "id": "eee20e03-679d-4fcc-a848-98aa1a621431", "name": "Daily Search", "originalRequest": { "url": { @@ -225689,7 +225689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e3a8817-7d61-4a00-a584-302baaaebacf", + "id": "34736c93-42d4-43a6-8e38-92ede53f45bb", "name": "Weekly Search", "originalRequest": { "url": { @@ -225745,7 +225745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66438e93-8242-42db-8736-297151be738e", + "id": "533f41c3-5fbe-472a-9197-da46e9dc6111", "name": "Monthly Search", "originalRequest": { "url": { @@ -225801,7 +225801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52380231-2631-4c32-b572-73536e80e651", + "id": "d5f04eb4-09ae-4c98-a825-1ba15f6c6d1c", "name": "Annual Search", "originalRequest": { "url": { @@ -225857,7 +225857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9da6657-b01f-40b7-8099-3d1121976a65", + "id": "d01ad2a2-0919-4d0e-b526-795834dc2e70", "name": "Calendar Search", "originalRequest": { "url": { @@ -225913,7 +225913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73e3e6c5-0022-4beb-9c40-ab174fa3f978", + "id": "5b997bcd-04d9-4d19-8774-a8ae3c364342", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -225969,7 +225969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf621222-1131-4539-81a8-8097dee81268", + "id": "a09855da-f355-4757-9573-63fe0f648847", "name": "Weekly Search", "originalRequest": { "url": { @@ -226025,7 +226025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "253691fa-9d14-4ab4-be98-b141added3ec", + "id": "76876b12-9081-41e5-886a-8937b3c05935", "name": "Monthly Search", "originalRequest": { "url": { @@ -226081,7 +226081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f21ade3-a612-45a8-828d-728a7f5c31ae", + "id": "ab6159f3-c14d-4ca5-a3cc-cba9e9177fb9", "name": "Annual Search", "originalRequest": { "url": { @@ -226137,7 +226137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd583266-bb7a-4c42-9c81-3e7cc99aafde", + "id": "45a40aa7-cb6f-4421-8906-3a0c95e94c21", "name": "Calendar Search", "originalRequest": { "url": { @@ -226193,7 +226193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6afb517f-0b55-4639-a203-6241b5e383a1", + "id": "0c34bb76-38ac-4a7f-8731-3018c9c0a453", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -226249,7 +226249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d554165-e47a-45a2-b8a4-981a96967344", + "id": "d4a4c775-89b7-467d-9889-0e64672ff4fa", "name": "Weekly Search", "originalRequest": { "url": { @@ -226305,7 +226305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e55fa291-6683-4ba5-ae4a-7a2d2f6df73a", + "id": "096a8642-4e69-4921-b355-4498a568f191", "name": "Monthly Search", "originalRequest": { "url": { @@ -226361,7 +226361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf171287-3abd-4110-93b9-06918df8ec09", + "id": "c2b22101-d811-4e14-8e29-ab2cb14b233b", "name": "Annual Search", "originalRequest": { "url": { @@ -226417,7 +226417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43b0bf5a-b1e8-42a0-8e77-9eda9e702294", + "id": "2445a5dc-ef30-4439-af9b-e3913bf85997", "name": "Calendar Search", "originalRequest": { "url": { @@ -226473,7 +226473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11c693db-049a-437a-b33f-35607d1eadd7", + "id": "bcdb79e8-79aa-47cb-bbef-a92d1bbbb7c6", "name": "Daily Search", "originalRequest": { "url": { @@ -226529,7 +226529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1468a81f-dd51-45c7-b53c-a35aba24c2ce", + "id": "2c5996e6-4361-40c8-94ad-c9073600c412", "name": "Weekly Search", "originalRequest": { "url": { @@ -226585,7 +226585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9afc6a83-fa60-406a-8305-f0c324a661ab", + "id": "90877fe5-940a-4894-b9f7-b2c03df27668", "name": "Monthly Search", "originalRequest": { "url": { @@ -226641,7 +226641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6d6f61f-e629-4f11-9c64-992590ea143f", + "id": "e948d8cc-83ce-43bd-993a-d7c92523870c", "name": "Annual Search", "originalRequest": { "url": { @@ -226697,7 +226697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f673828a-8eec-4662-9c72-3675ee34c310", + "id": "57d6849e-7482-4663-bd34-322e0c885e35", "name": "Calendar Search", "originalRequest": { "url": { @@ -226753,7 +226753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb29b77-75a3-49fa-b60f-b60a87808ff7", + "id": "7fdcbb35-a55c-4a49-b59a-36e9ab081887", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -226809,7 +226809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c277052-b154-48e7-b269-513da26ac153", + "id": "4ce339d1-8021-4de1-b892-746d0a2152d9", "name": "Weekly Search", "originalRequest": { "url": { @@ -226865,7 +226865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4f3ec72-7084-4611-8b36-d278ed9cb0df", + "id": "bc02d568-c025-4af9-9455-02eb3d06ed69", "name": "Monthly Search", "originalRequest": { "url": { @@ -226921,7 +226921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43ec32c6-fcb4-440f-be5f-68cb7096d637", + "id": "aa2e173e-d82e-4d07-9622-a8f75501ae7a", "name": "Annual Search", "originalRequest": { "url": { @@ -226977,7 +226977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11fd3116-9f46-499e-b771-45d4f27c466a", + "id": "b45e4ff0-ba34-48fb-91e2-2dabbd4ebf21", "name": "Calendar Search", "originalRequest": { "url": { @@ -227039,7 +227039,7 @@ } }, { - "id": "2b49131c-59de-48f8-8d77-c49966ac6121", + "id": "e04fb6af-d386-44f1-8e2d-1f6707386c04", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -227105,7 +227105,7 @@ }, "response": [ { - "id": "5dc3b219-d6d4-48e5-9f50-657b1f335712", + "id": "55814c41-f328-4ba0-a2f4-56190ff22b66", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -227194,7 +227194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "770003b8-af34-4767-896d-64a452f24a4b", + "id": "3424a6f6-899a-44c0-8082-c7c3411530fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -227274,7 +227274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9752cd11-d173-4b60-8636-2597e0f99289", + "id": "6188c975-f3d7-417d-828d-427c2df4a62d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -227354,7 +227354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d83be99-0f64-4f05-bbd1-6fc08081ae50", + "id": "fae29368-2ca1-4efa-89b6-563a5efffaa6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -227434,7 +227434,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92f7c377-c0c1-4f86-a90c-48f7c93fca85", + "id": "3ee2c111-45bf-4c35-a823-c7f43fdcf7b5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -227514,7 +227514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe00bb60-ef79-4662-a328-0a6f18b59495", + "id": "67425f55-7841-4288-a4bd-0f972f29878b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -227594,7 +227594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d4c93d2-c5d5-49ba-863f-17d1d94f0cee", + "id": "c258c36e-8797-4775-8bec-b55d3b9209c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -227680,7 +227680,7 @@ } }, { - "id": "6b966fa2-c6c4-474f-87e1-e1079938a244", + "id": "b8d44e39-4eb4-405e-877b-e5f0b63e2b8e", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -227734,7 +227734,7 @@ }, "response": [ { - "id": "86ded798-f110-4533-a1d1-aed785124712", + "id": "c40465da-d41a-4a52-8990-2c86092570e8", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -227791,7 +227791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "238b21fa-ab77-4faf-b50e-1cc72c61f063", + "id": "b72cb546-0e2e-4c71-8929-3d4cd7d41f67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -227848,7 +227848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98397118-b7e3-4c9c-9d77-a3c3003a9d7b", + "id": "721130ca-2d5b-4b02-a812-763957fceba1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -227905,7 +227905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a7161a8-feff-4e3f-b8db-faf793b6c0a3", + "id": "4feb3483-cc73-4ea7-b851-470ccd8ec1e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -227962,7 +227962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29e8b8f7-198f-44b2-a582-2a2fc27aea7b", + "id": "1a67cdef-c768-4675-a407-9509bd385375", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -228019,7 +228019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e46c6284-a8a5-4d0f-8a3a-5cbe9c5f0233", + "id": "fa043f62-be90-489a-b8d3-c297d95893f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228076,7 +228076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c4b85c0-6948-4335-b29b-59beaff7da6b", + "id": "d2d3f7de-f5d6-4282-a37a-78fa7c09f169", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228139,7 +228139,7 @@ } }, { - "id": "d2f7bcb3-336d-4c3b-8ae2-1dffc2f0a759", + "id": "6401dc7b-6629-4338-8f05-ca4bf8616d91", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -228180,7 +228180,7 @@ }, "response": [ { - "id": "51d2eb12-bcf5-430d-a80c-049cb4ba1d10", + "id": "b2e87d22-0180-427a-bc50-69f9297cd82f", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -228224,7 +228224,7 @@ "_postman_previewlanguage": "json" }, { - "id": "069ab6a0-19d5-4f3e-81de-d4c04947e01f", + "id": "35a60996-1061-4d56-ac38-a99fed0b9b36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228268,7 +228268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "283b8e69-07d8-419d-bea6-3a166c3a8df7", + "id": "c54baa02-c6d6-4a93-a1b9-175a9c691910", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228312,7 +228312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d0ed655-4aa8-4bde-849e-86f5ce250df6", + "id": "acd984b9-a5b7-483c-b64b-dd1403f56ebc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228356,7 +228356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d257e24-1994-4f6c-9fd4-7707d515be1f", + "id": "c8b1cdb3-aa8a-4174-ac65-6eac4fbb9323", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -228400,7 +228400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "badc47fe-1d4d-4643-b837-c677a1aae679", + "id": "40962d51-6a6b-476f-9989-09b69714fbf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228444,7 +228444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8daea82-31a0-43e7-998c-7ccadc3d65de", + "id": "4e678f90-1c17-4d56-b21a-61a6f8604987", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228494,7 +228494,7 @@ } }, { - "id": "eb82fb7d-770e-4e45-b903-9d9b7802b75c", + "id": "0c2924cd-e05f-42d9-861f-d23111f2cb49", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -228535,7 +228535,7 @@ }, "response": [ { - "id": "c164f497-2f88-49c3-89bf-0d8b8dc89b2c", + "id": "bb08cee8-bcf3-4d1a-abf4-3fd3aaf49a99", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -228569,7 +228569,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5cc974ab-2124-4dd3-9251-89dd1c7527d7", + "id": "9d397f76-8f1a-4df2-bce4-40c44c46a7de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -228613,7 +228613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e95d6ac8-9ed3-4a76-86d7-1c9ee3c28645", + "id": "589ee2d5-42b5-4afe-9f43-6d0eeae0e156", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -228657,7 +228657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a8b7cfd-2dc2-4794-882b-3f3f535a329b", + "id": "b72113bb-c34f-4b94-82ce-211f8202b965", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -228701,7 +228701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5ebdbbf-9722-4f90-927e-61cd1d63a5a1", + "id": "c489ccb9-19ba-44fe-b6e8-560998b852a9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -228745,7 +228745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7497f03a-ded1-43f7-a757-387ee78e712f", + "id": "f5f08918-9128-428a-8a27-4665114f78d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -228789,7 +228789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9957a4b-85cc-44ed-b445-53fa95a87555", + "id": "8fb60dbf-4012-45ea-8f8f-a3f9b993ac7e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -228839,7 +228839,7 @@ } }, { - "id": "f6b710c5-e24e-4d63-b91a-324d891aeca7", + "id": "a8b39687-acc2-475f-a223-66d80c108292", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -228894,7 +228894,7 @@ }, "response": [ { - "id": "ccfac19c-40c0-406c-8002-2be84b636dd5", + "id": "62481f40-77a3-4b40-aaed-38788be83914", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -228942,7 +228942,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3317f3f8-2724-4074-8b6e-45b992a69c9e", + "id": "8ba04b63-9dfc-4c3c-9d70-65206fd637dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -229000,7 +229000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c82213b2-11b0-4625-a7ed-003b60206456", + "id": "b58d2980-dc0f-447d-a47d-07c19abfa0f2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -229058,7 +229058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1685bf9a-b0ed-4827-a354-4744c9853930", + "id": "b4f1ee67-ebb4-4ec4-874e-274c995169a3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -229128,7 +229128,7 @@ "description": "Use this API to implement search functionality. \nWith search functionality in place, users can search their tenants for nearly any information from throughout their organizations. \n\nIdentity Security Cloud enables organizations to store user data from across all their connected sources and manage the users' access, so the ability to query and filter that data is essential. \nIts search goes through all those sources and finds the results quickly and specifically. \n\nThe search query is flexible - it can be very broad or very narrow. \nThe search only returns results for searchable objects it is filtering for. \nThe following objects are searchable: identities, roles, access profiles, entitlements, events, and account activities. \nBy default, no filter is applied, so a search for \"Ad\" returns both the identity \"Adam.Archer\" as well as the role \"Administrator.\"\n\nUsers can further narrow their results by using Identity Security Cloud's specific syntax and punctuation to structure their queries. \nFor example, the query \"attributes.location:austin AND NOT manager.name:amanda.ross\" returns all results associated with the Austin location, but it excludes those associated with the manager Amanda Ross.\nRefer to [Building a Search Query](https://documentation.sailpoint.com/saas/help/search/building-query.html) for more information about how to construct specific search queries. \n\nRefer to [Using Search](https://documentation.sailpoint.com/saas/help/search/index.html) for more information about Identity Security Cloud's search and its different possibilities. \n\nThe search feature uses Elasticsearch as a datastore and query engine. \nThe power of Elasticsearch makes this feature suitable for ad-hoc reporting.\nHowever, data from the operational databases (ex. identities, roles, events, etc) has to be ingested into Elasticsearch. \nThis ingestion process introduces a latency from when the operational data is created to when it is available in search. \nDepending on the system load, this can take a few seconds to a few minutes. \nPlease keep this latency in mind when you use search.\n", "item": [ { - "id": "f4915d5f-b4fc-4521-bbc4-74938db97262", + "id": "e9ad5505-193c-41bd-a44c-d78f40d4b2c8", "name": "Perform Search", "request": { "name": "Perform Search", @@ -229198,7 +229198,7 @@ }, "response": [ { - "id": "2170109e-2b19-4281-a4fe-bc4ba135368f", + "id": "79fed6e8-7dc6-46a0-abfe-71db4cbcab3f", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -229291,7 +229291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b112667-06b2-4e1a-bf05-f4ec5a9ca146", + "id": "018df9ea-6a7e-42cd-a46c-c362de00e5a8", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -229384,7 +229384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e03f4ff2-f1c3-4a8d-80c8-619a1851d395", + "id": "4d142201-6db7-43eb-b611-dbadc5ed0f01", "name": "A collection of Events", "originalRequest": { "url": { @@ -229477,7 +229477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58f4eb5-90f1-4495-8671-ff3d289f6296", + "id": "6401c91c-9d19-44af-9270-32b9bd341bff", "name": "A collection of Identities", "originalRequest": { "url": { @@ -229570,7 +229570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22037139-e189-49dc-9882-b93e61745916", + "id": "afbd123c-7a1b-4cb5-992c-b1a37b8e8c74", "name": "A collection of Roles", "originalRequest": { "url": { @@ -229663,7 +229663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa954f09-bf4e-4a47-9207-844a06c9e146", + "id": "584915f5-f9ce-4052-b28b-6ebb7a2b1e53", "name": "Filter with Exists", "originalRequest": { "url": { @@ -229756,7 +229756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd2d23dc-ac3c-4242-ba22-c420e052c7c3", + "id": "8acb2adc-9ece-47a8-ae32-b346e60553d3", "name": "Filter with Range", "originalRequest": { "url": { @@ -229849,7 +229849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3dc2759-b4e5-4fe1-ae00-e80220813114", + "id": "b6f31284-968a-4988-b6a9-e5fb0bea664d", "name": "Filter with Terms", "originalRequest": { "url": { @@ -229942,7 +229942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70550de0-125c-4911-a573-fd7c408800ac", + "id": "b64d111c-6640-462b-8596-ea94e0ec77e6", "name": "Query with Fields", "originalRequest": { "url": { @@ -230026,7 +230026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99fc7105-1f85-499c-97aa-02934004e3f3", + "id": "cc9f05d7-f9e9-45d2-8aba-1bff0f33b41c", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -230110,7 +230110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95974de1-c06a-4663-a18f-0c1839b5203e", + "id": "56323ee0-caed-4c32-8e80-76ea03b685ba", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -230194,7 +230194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e6d96db-b2d2-4c54-93c9-8af805fafb71", + "id": "b0015a0b-a43e-43fc-88b7-1d2914ece0aa", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -230278,7 +230278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98badef4-7d0b-4eca-a987-6269fabdd316", + "id": "4d4aecca-0d28-4cfc-be07-c17b1545c9e3", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -230362,7 +230362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "904b5d58-49db-49f6-86ed-7b0529c92fc9", + "id": "bbf528bc-f6c8-4b58-bcfd-8517392be6b3", "name": "Filter with Exists", "originalRequest": { "url": { @@ -230446,7 +230446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7282f0b1-e39e-484f-bc8a-b9ee8326dcf5", + "id": "5e10e9a4-35ae-46b6-b253-278858cc26e7", "name": "Filter with Range", "originalRequest": { "url": { @@ -230530,7 +230530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4df4e11b-e58f-4811-844f-5fec4d7bfc39", + "id": "f26f73fe-3ca7-4dd0-afd1-38e58bb448da", "name": "Filter with Terms", "originalRequest": { "url": { @@ -230614,7 +230614,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53af6b4-d8db-447c-8ffc-e090bc2a7b03", + "id": "b7cfca06-8d80-4f39-92d5-1cd69229caac", "name": "Query with Fields", "originalRequest": { "url": { @@ -230698,7 +230698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee170a6e-4db2-4811-a179-9a15115c87cd", + "id": "73dbd12a-5838-46b7-af4e-4d014f5cab10", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -230782,7 +230782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "398cc4aa-9a99-439a-90de-799311b3eb1a", + "id": "8047d125-36f5-46ea-8e1f-0ccb3a4b71a7", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -230866,7 +230866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c216456-e227-4f93-968e-379657d5d567", + "id": "fc815952-14b3-4e39-bf95-016f0676b63f", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -230950,7 +230950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e5c46db-6a39-46aa-bf08-a5d5e530e61b", + "id": "8a560cd8-0de1-45d0-88fe-d5e080beca62", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -231034,7 +231034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4de897a-6dc5-4e75-9cd0-730b237054e8", + "id": "7f4b2e69-c171-4342-a1f1-a8c0b91787e5", "name": "Filter with Exists", "originalRequest": { "url": { @@ -231118,7 +231118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26e8779e-e152-4ca5-a259-28f5805bb329", + "id": "93666114-d1c7-4c48-8c3f-2694057478cf", "name": "Filter with Range", "originalRequest": { "url": { @@ -231202,7 +231202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24d3235c-6085-40f0-bb4c-93ec9641392c", + "id": "df6c6c78-f065-4d95-a1b8-9dbcef3bafe2", "name": "Filter with Terms", "originalRequest": { "url": { @@ -231286,7 +231286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66396fe3-b2b9-4121-ab1a-749cd7bf1d2e", + "id": "b8f4f70d-42d0-4828-99e6-e3b1f76172b2", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -231370,7 +231370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef18aac3-1414-49c9-bcfd-0950b1b29a6c", + "id": "6141b0a7-aec2-4856-98e7-7e6e14f0e391", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -231454,7 +231454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8739c2cf-0859-4f8a-90d0-14d133120428", + "id": "f7db54da-2b04-4ca6-af59-b4101703d24f", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -231538,7 +231538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3df6fbcd-f1a1-4632-bc52-f0e97de5d5da", + "id": "1e911512-3e85-4e2c-8e06-20905bb714c3", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -231622,7 +231622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17e421b4-41ac-4b73-a8ad-9372819b3c65", + "id": "f83f50aa-d6fa-4f30-b6a3-8f3650078116", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -231706,7 +231706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d591d60a-987c-421e-9ea5-33e29330612c", + "id": "c5b4c569-61df-4c39-a3cf-996dd25b1dcd", "name": "Filter with Exists", "originalRequest": { "url": { @@ -231790,7 +231790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b07e2ffb-d3f3-45b6-8f81-37e101de3254", + "id": "427b98ce-0540-4aaa-b36c-81677df18165", "name": "Filter with Range", "originalRequest": { "url": { @@ -231874,7 +231874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9cbe6c8-025a-4bfa-afe6-98c2757dfb46", + "id": "447dbe14-1ead-4da9-b137-3c64ec90f992", "name": "Filter with Terms", "originalRequest": { "url": { @@ -231958,7 +231958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ae45a79-aa9a-4ebb-92ef-1262398de5a4", + "id": "44fb6ea6-9300-4bd2-8c5e-55f283dd0470", "name": "Query with Fields", "originalRequest": { "url": { @@ -232042,7 +232042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "863541c9-9340-453d-9f6e-ba818f860d15", + "id": "fe83fa2e-ca9f-4b96-987a-13ef3ed89a2b", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -232126,7 +232126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aaf8b2f-cfa3-41e7-b724-0724926a9bea", + "id": "4cc6aceb-b4bc-4544-bc72-05c42debe2be", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -232210,7 +232210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "769c67b8-579f-4247-9aaa-9074380b6056", + "id": "34540686-f028-4260-a8c7-9bc2ca75681f", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -232294,7 +232294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7389d9b-f261-47ff-9a03-bb8acede75e2", + "id": "6da8b567-ac76-4fea-a68f-520ae3251b40", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -232378,7 +232378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01b89559-1e52-4a48-82a7-c7b603a4c0d7", + "id": "4abed668-8518-40c0-a0da-9d8de109d74f", "name": "Filter with Exists", "originalRequest": { "url": { @@ -232462,7 +232462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "241b388b-67c7-45df-905d-b5a8602ac6b8", + "id": "724a657b-63c0-4ad2-87e1-493eadd3e644", "name": "Filter with Range", "originalRequest": { "url": { @@ -232546,7 +232546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f414479-f7b5-4803-a6ac-fa69317895a8", + "id": "eb08554f-5a17-4ebb-ac06-76c32be06d0f", "name": "Filter with Terms", "originalRequest": { "url": { @@ -232630,7 +232630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b302208-7dac-4b15-a639-27127a5e623b", + "id": "e158b0e4-b02a-41be-81f3-5aa0b0bedcba", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -232714,7 +232714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14b109bf-52c0-43b9-a779-3481b5bc371b", + "id": "4c1f2234-5884-4d03-bcc2-d737c5a8598d", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -232798,7 +232798,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8ae6ea0-b648-40d2-9d1b-77caa456b134", + "id": "70d6f47e-1c63-4443-86af-ae7a08ef04f9", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -232882,7 +232882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f6be1db-46d3-49d4-9855-92e80a414e3a", + "id": "52daaad6-ee8c-4adb-a020-6709b9dab4ca", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -232966,7 +232966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbdf6778-48a7-48d4-a113-6504c3e2e4a8", + "id": "854c4a7c-8fbb-4477-aff3-5402d132fd9b", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -233050,7 +233050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e814a989-8c7a-4500-9cff-d682a13fb777", + "id": "6e1477c8-2ff7-40a3-96db-96a5c9f6df30", "name": "Filter with Exists", "originalRequest": { "url": { @@ -233134,7 +233134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1471a16-d9df-4b83-96da-a72a76cdbf1e", + "id": "6e775c42-5a32-43fd-8653-e8b7f8836d65", "name": "Filter with Range", "originalRequest": { "url": { @@ -233218,7 +233218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0370f96-06fe-44ec-a102-fcaed715dd9f", + "id": "d871ad0d-9b19-4109-be20-bdc5c21001d1", "name": "Filter with Terms", "originalRequest": { "url": { @@ -233308,7 +233308,7 @@ } }, { - "id": "f744f190-0992-485d-89d1-23be4141d7a3", + "id": "cd3361bc-8876-4087-8676-be748a8b8107", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -233351,7 +233351,7 @@ }, "response": [ { - "id": "8b537878-8cba-4751-8e81-0eb3fd9a6006", + "id": "eeca7bf6-fb2e-4ad6-b333-dc3cc7ab6988", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -233408,7 +233408,7 @@ "_postman_previewlanguage": "text" }, { - "id": "815b681c-0a7d-4770-8994-d957a80a3a51", + "id": "c2db6191-9e5a-451d-a7e7-158f23646c43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -233465,7 +233465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0905ce5f-a36f-4632-aa6f-fe59040989b1", + "id": "aa2ac106-aa20-4454-b3bf-be80b4c5ab0e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -233522,7 +233522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a30f2466-7f3f-40a4-991c-b0ba8760d0d2", + "id": "73055219-9a50-4cc4-a4ce-c06149fc8b90", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -233579,7 +233579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "734dc3eb-28df-45d2-839d-de6e6b3304dd", + "id": "03f3cd80-21bc-4de9-86e2-31ef2ec7b9f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -233636,7 +233636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aefb2dc-b1a2-43a9-b758-c58244f8fa15", + "id": "15e52a30-9514-42cf-b9ed-fe9e1e594dee", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -233699,7 +233699,7 @@ } }, { - "id": "b206754b-6b05-4497-9a71-2a2453127a82", + "id": "f0285954-4929-43fd-abcf-14d774230e40", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -233770,7 +233770,7 @@ }, "response": [ { - "id": "8c1b83d7-6128-4dc9-9d96-2df0f48e2979", + "id": "630503cf-937e-4abd-b328-bcabaf7635a9", "name": "MetricAggregation", "originalRequest": { "url": { @@ -233864,7 +233864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b1b4161-9e2b-42a1-91e9-da7d68b909a9", + "id": "4e0f1320-1bfd-4263-bfa5-bc3257db87d8", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -233958,7 +233958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3295970-4f59-4ecb-9dc4-70ebe1cb46b7", + "id": "e1ced99c-387b-458e-95f0-9921b840959f", "name": "BucketAggregation", "originalRequest": { "url": { @@ -234052,7 +234052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccf5bf39-b72e-4971-ac40-64a045c1250a", + "id": "37b16d01-ecf4-4a5f-b435-06fea2179e22", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -234146,7 +234146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ec4396-88fe-4ae9-ad1a-89c2b9769010", + "id": "73389831-abf2-4971-8427-a993cc765934", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -234240,7 +234240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ec0c118-d240-4140-b11a-dcc5da9e8c0f", + "id": "0ab399e6-de04-4979-b9b2-2103e13b9548", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -234334,7 +234334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d1b26e-260f-4497-8516-53d25c09ae86", + "id": "4e59e8f4-0aa9-4275-8663-ec3d1211ce5c", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -234428,7 +234428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c800bbe7-227a-4f24-97c2-d60d89387e30", + "id": "83d14068-9998-4e2a-b3aa-4eaba64ed28b", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -234522,7 +234522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f538264-e1c5-4b70-81b4-ef0762e8989e", + "id": "b33648f8-b8f9-42c1-8681-4c99b2075dc0", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -234616,7 +234616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a2e30e9-57f7-4b06-af1d-36cfe2a197b6", + "id": "89e9113f-94fd-461b-abfb-d2a45e5dd2f9", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -234710,7 +234710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "079d06c3-1ee4-4e4e-9ae0-a08466ca7d8e", + "id": "5c9bdb21-7e94-4861-ae11-ea7803fbdc4f", "name": "MetricAggregation", "originalRequest": { "url": { @@ -234795,7 +234795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a75fadd3-3d49-46e7-9ce6-c9f2c8a18744", + "id": "d7580baa-1d40-4178-a631-a8d80fa6ff86", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -234880,7 +234880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af98fda-7701-4757-b292-f5aa6e1b40f4", + "id": "793415f8-e2ee-4a31-ac55-ff3391e64506", "name": "BucketAggregation", "originalRequest": { "url": { @@ -234965,7 +234965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "772fcb42-5eba-47a0-afa4-36c2196dc270", + "id": "7dc3b9e7-cc34-470b-acac-86a746ad33f7", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -235050,7 +235050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "347177dc-c9e3-4466-88a8-cd38a8478869", + "id": "233a5b76-e9e2-40fa-bebb-5d3309c68873", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -235135,7 +235135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fab7e64-fd5a-4c43-99a7-7563b1c2b03b", + "id": "093c4e28-147b-4a75-bad7-d19a46fa82b0", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -235220,7 +235220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10ece697-1d6a-4ed3-b1f5-490029059b6b", + "id": "b1d877ac-90e4-4bfc-a739-d7e01f7d0ac9", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -235305,7 +235305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cd7c7e1-82fe-4200-82e2-e6fba48a371f", + "id": "e7e7f6ad-8bda-4f93-a919-fc15e579e114", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -235390,7 +235390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eea4268-b950-4f1c-b802-c603f541c653", + "id": "1abcc038-14ee-4ac0-9e85-33ce61b8feb9", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -235475,7 +235475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "839c4a1b-448a-4468-9ab3-7b3c49de6f7f", + "id": "b43baa5c-4dab-4375-8af8-ae65b94e9e74", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -235560,7 +235560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f21b2f0-8684-4a98-9863-7d966570b89a", + "id": "2ae71255-4ced-4e53-9bd4-7ca0ad899efd", "name": "MetricAggregation", "originalRequest": { "url": { @@ -235645,7 +235645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09405e3b-27d3-4519-a93b-71ad596fd6bc", + "id": "ab0fe4cd-2d2b-4d54-9eb4-9d36daae4a19", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -235730,7 +235730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2b88bda-21f8-4ae3-aa36-7d2590bfb1d0", + "id": "7da59038-e6c8-4ade-ab55-059baf59f812", "name": "BucketAggregation", "originalRequest": { "url": { @@ -235815,7 +235815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd451185-6b0c-4aaa-a3ab-5d32553e26cc", + "id": "429812a4-f1eb-42a7-9bff-236572cfad76", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -235900,7 +235900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2757668e-b61b-40dd-8246-4d3bebbb2d5a", + "id": "83ce0e2e-1613-4aa2-94cc-8f7b37b8647b", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -235985,7 +235985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb6d6cbe-9cfe-4443-a16c-0e63e6f4a6a7", + "id": "b9f443df-47db-4cf6-a332-8de05e32d295", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -236070,7 +236070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89807891-1a06-4881-9838-a31eacad957c", + "id": "93ded9bf-4b2e-41d2-9cd6-efa0c4a8ad0a", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -236155,7 +236155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "330ca59c-1284-419c-bb2c-27e0445fb226", + "id": "3333cb9a-9efb-457c-93e4-3bc7bfc5831f", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -236240,7 +236240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1c20548-90d6-4dfa-8319-4ddf8709c5ca", + "id": "20c8f8e5-0749-446c-9774-11c179eb1957", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -236325,7 +236325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "428c39d0-f414-4537-917e-65ac94d6a941", + "id": "a7ceac8e-31bd-44e8-a2c9-741b90134963", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -236410,7 +236410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1a22504-cb89-4171-bdd9-4c4473a6bcc8", + "id": "726c07bc-7760-4faa-8bc4-7496870cb5c2", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -236495,7 +236495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c25a137-1fd1-4cbb-be98-cd341ebdf9e3", + "id": "5e5d0f9e-2248-4506-bddd-49ab89dafae1", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -236580,7 +236580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d62d2cd-68c4-47cf-bb54-b4b5b2a60434", + "id": "559c6c02-540d-4d26-8034-7eca9150425b", "name": "BucketAggregation", "originalRequest": { "url": { @@ -236665,7 +236665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "386946bb-c18f-4a92-b8b8-bad6ed52d6a1", + "id": "289f359a-e4ec-4d46-a86d-be35d7117cb4", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -236750,7 +236750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26998608-835f-4468-9518-b86c37372d71", + "id": "8a697272-f875-4eab-8f6b-3909c66ffa94", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -236835,7 +236835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e3d5a51-20e3-49b5-a00d-4257756329af", + "id": "de957067-2b13-4463-bd1e-9ec38e7a6a43", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -236920,7 +236920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ea87d32-d74a-4577-a009-0d822e3581da", + "id": "cf808b2e-686c-435a-8312-6c1f5319b2d0", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -237005,7 +237005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea4c457c-85f6-4ce5-8e74-dac6f5a0ecef", + "id": "9eb10df9-b436-488c-a9e4-ae82acaeef91", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -237090,7 +237090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a040371c-5cee-4070-b4ea-23808012778a", + "id": "592d162f-5f88-4ca8-af2d-2ec079cd49f4", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -237175,7 +237175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e3fff2-f858-483f-8ca2-cf0005c18cda", + "id": "37db739b-83d4-4860-9119-f9312bc417fc", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -237260,7 +237260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b1957c1-24cd-440f-b278-7b0c5ba2bf1d", + "id": "dad61096-770e-4f42-ae5a-4ce6399ee989", "name": "MetricAggregation", "originalRequest": { "url": { @@ -237345,7 +237345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d10e1aa-ac0d-46cb-988d-b621d4cc44ef", + "id": "5ad2f337-95be-451c-87e8-4a9fc17487e7", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -237430,7 +237430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd5ebad-8c65-441f-b76d-36a3bfa9646c", + "id": "ca9892a2-3f99-4a3f-a93e-80e28bf19181", "name": "BucketAggregation", "originalRequest": { "url": { @@ -237515,7 +237515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64fcab70-1b7f-4993-a728-2bb026bf77a0", + "id": "a8523a54-25ea-438a-9e3c-f08a1a97f1f4", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -237600,7 +237600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db7c7a24-e90d-4941-946f-3da69741e9e8", + "id": "b9fbd0b3-a145-436d-a9ed-27f7c25a8e88", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -237685,7 +237685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d804b6b-3c4f-4c92-ba40-6dbdbbcf1dca", + "id": "5e8aff5e-114d-4feb-8e20-e89e78484315", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -237770,7 +237770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4615d14-d9af-42c7-89c4-ad0c4ec0239b", + "id": "6ea58434-319e-4fc0-a0c8-981399add189", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -237855,7 +237855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cef4929e-0440-4e31-a2bf-f61b22e9eb95", + "id": "9168579a-5116-4d82-add5-5d0bef568c8a", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -237940,7 +237940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbc8754c-4687-4085-8a18-0e06569f87c8", + "id": "a89942ac-1de4-48e8-9638-14729708966f", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -238025,7 +238025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef78459b-c4cc-4203-89f6-c3fc55dba76b", + "id": "8f3ea8c1-e313-42fd-821d-e2badcd38618", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -238110,7 +238110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6138ca7-15c9-4cec-acb6-3bec97e26fe1", + "id": "e4aadc96-e1a4-4c88-b5e8-9997fd03e133", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -238195,7 +238195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfee22d7-76c9-4f38-9065-df587561f4e5", + "id": "16aaa4c0-7115-4971-acd1-542a20b47561", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -238280,7 +238280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4beba5ad-f0d7-477e-b804-fbf96aa588c7", + "id": "5096c73f-014c-4e46-a1d5-9a56c8c6a0d9", "name": "BucketAggregation", "originalRequest": { "url": { @@ -238365,7 +238365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4f3383-adc0-4e47-9667-4550b7e666ca", + "id": "b5995318-41eb-4967-bdd0-4fd6b0b7087b", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -238450,7 +238450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ddb0ec-c36e-4af5-a958-35f690f85999", + "id": "3b566521-a13f-46a6-aed4-d1a7a6d6279c", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -238535,7 +238535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff208c7e-65aa-4138-89ff-8da9ebd25f64", + "id": "8c600625-d9dd-4df3-8214-fdc9d82c2171", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -238620,7 +238620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a4e8e26-5052-426a-947a-e3e1064a8908", + "id": "9498efad-515e-47b3-be20-d3217e40c041", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -238705,7 +238705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2087647b-f3b0-45db-8096-fe2d1708520b", + "id": "de86421c-553a-44ff-8765-cf014003295b", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -238790,7 +238790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78325a09-2341-4c3c-8ce2-309f7cee60d4", + "id": "00810952-b269-402c-97ca-d83bde07739d", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -238875,7 +238875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e79c3fa-4272-4de5-a05c-bb819d7cf954", + "id": "127eb93b-fc29-40ee-b4e9-d815268ed3db", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -238966,7 +238966,7 @@ } }, { - "id": "c3f39c05-75c4-4531-a170-cdef0973e85c", + "id": "89db7b2b-f3d9-45d1-8139-952920c3508c", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -239018,7 +239018,7 @@ }, "response": [ { - "id": "6480bad2-2e41-47d3-b1dd-4c28530e843b", + "id": "010cc4ed-54d5-423c-b389-9e7f4aa0924d", "name": "AccessProfile", "originalRequest": { "url": { @@ -239063,7 +239063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c9bfe59-def4-4c65-b5c0-74ed16ac06a0", + "id": "9d547893-9407-4a11-ae61-38da5c3f5e16", "name": "Entitlement", "originalRequest": { "url": { @@ -239108,7 +239108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b70485ea-7bcc-476c-a0f7-55d78170e43b", + "id": "46b7dd69-7393-4747-8f00-4741a1118a0a", "name": "Event", "originalRequest": { "url": { @@ -239153,7 +239153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b38f818-01e2-47c6-aae0-02e9e860b742", + "id": "800e3f08-5c6a-495b-82af-b833330d20b4", "name": "Identity", "originalRequest": { "url": { @@ -239198,7 +239198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa952e4-1c34-4329-942d-dbbf00f2286d", + "id": "9ac68d36-89e6-47a5-a7b3-93134af5853d", "name": "Role", "originalRequest": { "url": { @@ -239243,7 +239243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "097560d2-7aa3-4fab-8166-31485548d865", + "id": "cc9b58e4-6fdc-4508-a373-71e43ca04983", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -239288,7 +239288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5d0b16d-716b-44f3-9cef-fd4c8f622397", + "id": "e34e6a0f-4346-41a8-92ee-5a86742640eb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -239333,7 +239333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2976e71-70cf-4f29-928b-259cd6cb7b10", + "id": "4ed59d72-e867-4b1f-b4e7-7a301b8b02cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -239378,7 +239378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3709b20-f1ac-4ddd-b2f8-14f709fcc5df", + "id": "19964c13-3138-4886-a70d-36e62bb9d887", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -239423,7 +239423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15a4d288-3ce8-4818-8e5d-443068a4ebbe", + "id": "8f0fde83-8e4c-4e7f-9d93-f31e97fd4629", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -239468,7 +239468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f512191c-0263-413c-b968-feea2f8c106d", + "id": "a6527c19-54d1-4b6b-a3de-058c58e630c1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -239525,7 +239525,7 @@ "description": "Use this API to implement search attribute configuration functionality, along with [Search](https://developer.sailpoint.com/docs/api/v3/search).\nWith this functionality in place, administrators can create custom search attributes that and run extended searches based on those attributes to further narrow down their searches and get the information and insights they want. \n\nIdentity Security Cloud (ISC) enables organizations to store user data from across all their connected sources and manage the users' access, so the ability to query and filter that data is essential. \nIts search goes through all those sources and finds the results quickly and specifically. \n\nThe search query is flexible - it can be very broad or very narrow. \nThe search only returns results for searchable objects it is filtering for. \nThe following objects are searchable: identities, roles, access profiles, entitlements, events, and account activities. \nBy default, no filter is applied, so a search for \"Ad\" returns both the identity \"Adam.Archer\" as well as the role \"Administrator.\"\n\nUsers can further narrow their results by using ISC's specific syntax and punctuation to structure their queries. \nFor example, the query \"attributes.location:austin AND NOT manager.name:amanda.ross\" returns all results associated with the Austin location, but it excludes those associated with the manager Amanda Ross.\nRefer to [Building a Search Query](https://documentation.sailpoint.com/saas/help/search/building-query.html) for more information about how to construct specific search queries. \n\nRefer to [Using Search](https://documentation.sailpoint.com/saas/help/search/index.html) for more information about ISC's search and its different possibilities. \n\nWith Search Attribute Configuration, administrators can create, manage, and run searches based on the attributes they want to search. \n", "item": [ { - "id": "46fd854f-228c-426c-a682-59d7ab8d9c23", + "id": "53946963-01bb-43d1-968f-240f7de1dd79", "name": "Create Extended Search Attributes", "request": { "name": "Create Extended Search Attributes", @@ -239568,7 +239568,7 @@ }, "response": [ { - "id": "49bd8f0c-7309-4ab7-bac2-dbfd3cc9f76a", + "id": "bf3cfcd0-cbc7-474a-b9bd-13c99dc88d11", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -239625,7 +239625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b440490-82da-4dd9-84dc-92b69801b06c", + "id": "e93e09f7-90c1-4a6c-a53f-46b9f1d371c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -239682,7 +239682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fc2da54-f472-44db-91db-7bda69b2f28d", + "id": "fb105e43-0098-4d41-a538-3edc899ace28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -239739,7 +239739,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee9538b5-616c-4bba-a392-42d2d212ae24", + "id": "408276ae-7260-4fdc-8baa-46be918540b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -239796,7 +239796,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1072075f-1b76-41a4-8692-fb87eb46ee80", + "id": "e3d0a06c-b39d-47ca-b512-e5cad4de9d4c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -239853,7 +239853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "115f29a2-1bb6-4369-bd4d-c569ee627bcd", + "id": "6f0d343b-ebbe-4f19-be82-e28b8cb43327", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -239910,7 +239910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "222ece27-ca6f-40d7-9803-1cf76598731a", + "id": "42729ceb-2ce0-40ee-943f-df9ff4de510c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -239973,7 +239973,7 @@ } }, { - "id": "2e0530e6-b1de-43be-8b90-45c030f70807", + "id": "a4e96570-0c4c-4101-80af-be937c20d4b8", "name": "List Extended Search Attributes", "request": { "name": "List Extended Search Attributes", @@ -240003,7 +240003,7 @@ }, "response": [ { - "id": "ceccdc23-47d8-48c7-ad1d-039b42798f39", + "id": "cb6dd3ee-03ee-4383-9a8d-d13e5b4fc8fd", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -240047,7 +240047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "323bfca4-f698-407f-a7bc-cc173f77d36f", + "id": "79e00e0a-36ae-480b-99f0-3168c12d51f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -240091,7 +240091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80f32c2b-439e-491a-b4ec-ff25f648899f", + "id": "48d8f7cf-2455-48dd-aa54-a5c51dfe3741", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -240135,7 +240135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84526fe5-6dee-4c04-b0ae-f50f052c46b0", + "id": "eaaa2bb1-22b5-45f5-99b0-8b6c8b66c88e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -240179,7 +240179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84d0b332-742e-4cf4-82f6-ab7cce38c6b1", + "id": "5329a13b-7f39-4bb4-bd99-8d8c31adbae4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -240223,7 +240223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c456753-a217-4d3e-9dbf-841dd4371eed", + "id": "eac084f1-76cf-42e8-aac8-1d5ba9daa6c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -240273,7 +240273,7 @@ } }, { - "id": "98d3ab93-6bc6-43a0-8556-7ddf517e9bd9", + "id": "db2d858d-1a61-482c-995a-5e13ec67b9e2", "name": "Get Extended Search Attribute", "request": { "name": "Get Extended Search Attribute", @@ -240315,7 +240315,7 @@ }, "response": [ { - "id": "9d830a99-930f-4397-8549-c1cd38124658", + "id": "d9ede8d2-40ed-4386-aa20-754596b8a0d6", "name": "Specific attribute configuration in ISC.", "originalRequest": { "url": { @@ -240360,7 +240360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d195c8f9-ca7c-454d-81ce-3bd0df8ec4dc", + "id": "20458b50-0b6f-461b-b487-0b1dd04a2d5f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -240395,7 +240395,7 @@ "_postman_previewlanguage": "text" }, { - "id": "67a5a94f-dcdb-46da-89c8-24a2f1cf2d2e", + "id": "b4aaeede-52da-4df2-b143-1b47ea593555", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -240440,7 +240440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fab3d31-8f13-4e80-8c3c-40a6431c58d8", + "id": "61f11b4f-8751-4578-a4a1-a6e5af28b758", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -240485,7 +240485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee47f0d3-1f5c-473e-b5d1-cf7149926d5e", + "id": "5ddeac57-a2ab-499a-89cc-013faa84c00c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -240530,7 +240530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "454fdd13-dde7-44a1-897d-75f91cf9d7de", + "id": "bbaeebff-eeb4-467a-ba80-39d1b2c16417", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -240575,7 +240575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4041eb05-2a58-46d3-bf73-503327a99f29", + "id": "5b6e087d-0d98-4f36-a96f-91e440743030", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -240620,7 +240620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f4eb895-5487-4d00-a76d-ff0b12290759", + "id": "a579c210-878e-4b71-b4e3-57ade287d677", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -240671,7 +240671,7 @@ } }, { - "id": "4db329a1-f0d1-494b-82a3-d593fc5c8f8e", + "id": "d1620c2d-0829-4d8b-9a59-71f614e48a27", "name": "Delete Extended Search Attribute", "request": { "name": "Delete Extended Search Attribute", @@ -240713,7 +240713,7 @@ }, "response": [ { - "id": "6fd8c7bc-710a-4a52-bf33-75ebb8f06c87", + "id": "3f73ca54-053b-430f-8e2c-e9b4e76464f5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -240748,7 +240748,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ee6829da-6aae-4334-b0f1-6ab8bbc8fbc5", + "id": "5b612b62-87a6-413e-b9d7-d30abb139e3c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -240793,7 +240793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "699c5bd5-6069-43c7-ba72-49eecdb65817", + "id": "39592f22-d74d-4af6-9689-dd6a91d273cc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -240838,7 +240838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f22d51-74d4-466c-a177-94e9c90cbbf7", + "id": "5c1771a0-4607-4e44-8c9d-d291a6356b9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -240883,7 +240883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b13c7d1-1c98-4c89-87d7-24d557ae57b1", + "id": "99b40b3b-1a89-4930-a80a-2185a757b555", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -240928,7 +240928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "640cd11e-8ce3-4ae4-9165-9b6aa3199e82", + "id": "fb0d4ab2-615f-4659-a0c7-74c8fca6dbed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -240973,7 +240973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c583f82-6e86-492f-87b8-8c70b4481f82", + "id": "c85b88c8-c308-4d83-bf70-b2c30fe433be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -241024,7 +241024,7 @@ } }, { - "id": "da2db1f7-130f-4bdf-bd5b-e49045fcfe9f", + "id": "accbff24-ae4d-4a06-95a2-6d279ed1d2b8", "name": "Update Extended Search Attribute", "request": { "name": "Update Extended Search Attribute", @@ -241079,7 +241079,7 @@ }, "response": [ { - "id": "a2ab5c0b-0662-40a4-8382-213d9a2f021b", + "id": "2f667149-fcec-4e6b-9dc6-619c82c49380", "name": "The updated search attribute configuration.", "originalRequest": { "url": { @@ -241137,7 +241137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17204917-f5bc-430d-ab36-22677d1f682a", + "id": "ce9c3164-9134-4798-839d-5d38423546ce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -241195,7 +241195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dfbb2b1-7ca2-4aad-b2e5-1010d9ea65d7", + "id": "5727d4be-b718-4796-ab27-36ef68072d65", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -241253,7 +241253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6082d7bd-9d1d-47b1-9909-12d2ea168357", + "id": "3bc8ab64-5190-42a3-b8a1-fdb14d88267d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -241311,7 +241311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cd77d5a-a519-4164-912b-9f06f5e54740", + "id": "8a5a7d18-6eaa-43a3-9178-e3af5e0bd979", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -241369,7 +241369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4818cba8-3044-4816-9186-082738371b67", + "id": "0f246057-d917-4c02-9fc7-914f22a63924", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -241427,7 +241427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "220f6fcd-a6f0-44cf-b0c6-5c59d4387ab5", + "id": "a9bf1c7d-d8b3-42e9-956b-7257fb5666d1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -241497,7 +241497,7 @@ "description": "Use this API to implement and customize access request segment functionality. \nWith this functionality in place, administrators can create and manage access request segments. \nSegments provide organizations with a way to make the access their users have even more granular - this can simply the access request process for the organization's users and improves security by reducing the risk of overprovisoning access. \n\nSegments represent sets of identities, all grouped by specified identity attributes, who are only able to see and access the access items associated with their segments.\nFor example, administrators could group all their organization's London office employees into one segment, \"London Office Employees,\" by their shared location. \nThe administrators could then define the access items the London employees would need, and the identities in the \"London Office Employees\" would then only be able to see and access those items.\n\nIn Identity Security Cloud, administrators can use the 'Access' drop-down menu and select 'Segments' to reach the 'Access Requests Segments' page. \nThis page lists all the existing access request segments, along with their statuses, enabled or disabled. \nAdministrators can use this page to create, edit, enable, disable, and delete segments. \nTo create a segment, an administrator must provide a name, define the identities grouped in the segment, and define the items the identities in the segment can access.\nThese items can be access profiles, roles, or entitlements. \n\nWhen administrators use the API to create and manage segments, they use a JSON expression in the `visibilityCriteria` object to define the segment's identities and access items. \n\nRefer to [Managing Access Request Segments](https://documentation.sailpoint.com/saas/help/requests/segments.html) for more information about segments in Identity Security Cloud.\n", "item": [ { - "id": "3e7effd3-6159-41b0-8bbf-0357d65ca2dc", + "id": "a4cc7a61-65b8-4aac-a538-0d611a2eb849", "name": "Create Segment", "request": { "name": "Create Segment", @@ -241539,7 +241539,7 @@ }, "response": [ { - "id": "ecefa41f-c5fd-40da-8460-d4553eefce69", + "id": "e628dbfe-d98a-4d27-ba42-2ec2173e7640", "name": "Segment created", "originalRequest": { "url": { @@ -241595,7 +241595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0930a935-7f5b-499a-afaf-c0c75fa31dfe", + "id": "09f15eae-0c4e-4164-95db-b36eed590b67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -241651,7 +241651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe9fe0f3-5585-4ea3-af1e-c750eb892971", + "id": "4fd26156-8af4-4661-a4a6-2397d72f793e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -241707,7 +241707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af162df0-097a-498e-a26b-74bdcfcf2873", + "id": "d439fda4-318a-47fd-b8b4-68c6a027dda1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -241763,7 +241763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9249951b-8b1f-41fb-9458-b027d6776d64", + "id": "d50c9316-744c-4f67-a5a4-149fdeb85ede", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -241819,7 +241819,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d20383e-4048-453d-82e6-83e23f1f541e", + "id": "33bf6d1c-e568-4d86-b2fd-7e28fa321e54", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -241881,7 +241881,7 @@ } }, { - "id": "3acbc742-e8c8-45cf-874a-009d4afa96c2", + "id": "9542adc7-4b3b-4a3e-aa6f-77a621924ce6", "name": "List Segments", "request": { "name": "List Segments", @@ -241938,7 +241938,7 @@ }, "response": [ { - "id": "cfeeb406-db3d-4e2b-9488-4f9c0b4b96be", + "id": "784bd4a6-5346-4761-ac2f-86481287b264", "name": "List of all segments", "originalRequest": { "url": { @@ -242009,7 +242009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efed9d0a-92c2-4af7-82a9-1477043ef004", + "id": "9b13c314-f071-4c8e-8b05-2f7965392b99", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -242080,7 +242080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05af248c-dd79-42b8-9081-d286dbd147fd", + "id": "eff894b1-1314-4f25-af37-3d619b97f449", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -242151,7 +242151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "251968b3-b510-4c62-94b1-5e007067246a", + "id": "61e6f182-2c81-4b34-97b9-b8781f448705", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -242222,7 +242222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e24ce9-79a6-48d1-9006-80cde2611fa3", + "id": "0e85d3da-d103-4b46-a703-363533c48139", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -242293,7 +242293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e74985b-aebd-4ee6-a9d7-6b788005c6e1", + "id": "3b9a2015-0968-42da-99e2-0f43423e8660", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -242370,7 +242370,7 @@ } }, { - "id": "893c23cc-dd4a-4ae0-a7a0-56fbd8295d9d", + "id": "bb15119a-4df4-47a0-b49b-68b213742002", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -242411,7 +242411,7 @@ }, "response": [ { - "id": "628b7f5e-e1ef-4a2b-812b-25cf3ad05e2e", + "id": "e5017551-75cc-4903-b1b7-85e0d9a01eb5", "name": "Segment", "originalRequest": { "url": { @@ -242455,7 +242455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e64593cb-a155-430e-b77e-c3c05c295b24", + "id": "fb9c58f1-5b17-43dd-894b-a6cb8b63a12f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -242499,7 +242499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78519e40-0dc9-4c85-9053-f81417fd11ac", + "id": "1f130174-4b36-4ca7-9bd0-ff6597a28ac2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -242543,7 +242543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aa199e8-a49f-4823-a6f4-b836c99a761a", + "id": "bc56c399-8e01-4e94-8649-c7076e5be413", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -242587,7 +242587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de0d3730-bbae-473d-8b2b-37a995d5f824", + "id": "17044e74-eb9e-45a2-9029-8836f4962464", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -242631,7 +242631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44bfae60-facd-4d7b-b63e-ac0e4518e9dd", + "id": "f6d3c24f-b688-46d1-a80c-310be33cf969", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -242675,7 +242675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18182eb7-e7fa-42d6-a45f-4f15a12f9cc3", + "id": "d183af19-4cea-4a30-a3bb-cc7e8cb23b64", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -242725,7 +242725,7 @@ } }, { - "id": "0d85f30b-0bad-4bcc-82a1-227022b77d52", + "id": "ce2e7168-dcda-4d65-8058-b47565024fda", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -242766,7 +242766,7 @@ }, "response": [ { - "id": "2410bf0f-37b9-493e-a20c-884b15199e21", + "id": "1aef10aa-d015-458e-b284-ffd6da60a76e", "name": "No content.", "originalRequest": { "url": { @@ -242800,7 +242800,7 @@ "_postman_previewlanguage": "text" }, { - "id": "39c59537-742d-4729-9649-dd10cc0604da", + "id": "2d9f05cf-1166-4839-ac5f-12bba59e670c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -242844,7 +242844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bbdd94c-b37c-4013-bcd5-6d3723c9943f", + "id": "440468b2-5f0e-439a-ab8b-c7c259003f08", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -242888,7 +242888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aff32f04-e97d-4d14-98f8-143ab290fd29", + "id": "ce57f0ff-591f-4779-b619-71ee42847175", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -242932,7 +242932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26b6bf35-1992-4258-aabd-c125dfc4908f", + "id": "37e13608-4ece-45e5-9de9-9387f4b38c61", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -242976,7 +242976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "683874ca-e2d7-4b99-8397-76aeeced3cd7", + "id": "618b8106-dfe4-4a90-832b-e3e16d3be906", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -243020,7 +243020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34d8a911-edd8-4e60-9652-d6b5d0b352d7", + "id": "3f1eedf2-1ebd-4587-b761-819f8bf285b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -243070,7 +243070,7 @@ } }, { - "id": "d62a9c72-5d3d-405f-a2af-c8abdabe5cf2", + "id": "9395a027-85ec-4e03-88f8-a677621ff6b8", "name": "Update Segment", "request": { "name": "Update Segment", @@ -243124,7 +243124,7 @@ }, "response": [ { - "id": "2272de1b-1291-4d90-911b-ab18dd8fdd24", + "id": "25712dcd-6753-4790-b1c0-59b3ca121a80", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -243181,7 +243181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "726e3f26-29d0-4ba6-a3b3-13ae93e1109e", + "id": "27d76e8b-96e6-490d-9bc2-23e0881f9b1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -243238,7 +243238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53afa11d-0630-4926-880a-18ecf5b4d404", + "id": "5671f437-8a68-435f-9272-cc1931cf52e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -243295,7 +243295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46d0db36-04a9-4010-b817-783f319abd45", + "id": "c641adf1-7c36-4332-96c0-a35a07edc09b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -243352,7 +243352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4d3bda2-1843-4e56-a4b9-93b64c6d0291", + "id": "045b073a-54c4-4c95-908c-f7e451c73e32", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -243409,7 +243409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b5622ae-083b-4d68-acbf-2e129e849fd9", + "id": "76b9eb7a-c9ef-49a2-992a-0018854d6267", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -243466,7 +243466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51dd6fa9-3001-4cec-9d50-44bfddd32235", + "id": "3493124b-c8dc-48fb-899d-59c7c0181486", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -243535,7 +243535,7 @@ "description": "Use this API to build an integration between Identity Security Cloud and a service desk ITSM (IT service management) solution. \nOnce an administrator builds this integration between Identity Security Cloud and a service desk, users can use Identity Security Cloud to raise and track tickets that are synchronized between Identity Security Cloud and the service desk. \n\nIn Identity Security Cloud, administrators can create a service desk integration (sometimes also called an SDIM, or Service Desk Integration Module) by going to Admin > Connections > Service Desk and selecting 'Create.'\n\nTo create a Generic Service Desk integration, for example, administrators must provide the required information on the General Settings page, the Connectivity and Authentication information, Ticket Creation information, Status Mapping information, and Requester Source information on the Configure page. \nRefer to [Integrating SailPoint with Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html) for more information about the process of setting up a Generic Service Desk in Identity Security Cloud.\n\nAdministrators can create various service desk integrations, all with their own nuances. \nThe following service desk integrations are available: \n\n- [Atlassian Cloud Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_cloud/help/integrating_jira_cloud_sd/introduction.html)\n\n- [Atlassian Server Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_server/help/integrating_jira_server_sd/introduction.html)\n\n- [BMC Helix ITSM Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_ITSM_sd/help/integrating_bmc_helix_itsm_sd/intro.html)\n\n- [BMC Helix Remedyforce Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_remedyforce_sd/help/integrating_bmc_helix_remedyforce_sd/intro.html)\n\n- [Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html)\n\n- [ServiceNow Service Desk](https://documentation.sailpoint.com/connectors/servicenow/sdim/help/integrating_servicenow_sdim/intro.html)\n\n- [Zendesk Service Desk](https://documentation.sailpoint.com/connectors/zendesk/help/integrating_zendesk_sd/introduction.html)\n", "item": [ { - "id": "24e5bb65-7393-4454-acb4-7833d4d2ba92", + "id": "32f55432-61ce-4a85-bb77-4133dc39d43e", "name": "List existing Service Desk integrations", "request": { "name": "List existing Service Desk integrations", @@ -243610,7 +243610,7 @@ }, "response": [ { - "id": "8f5f0556-723a-4722-9357-04524f1ff24c", + "id": "3731fbb1-c016-406e-a206-3c745a065aef", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -243699,7 +243699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2810b236-6a82-4edf-9b37-887a136c865b", + "id": "3a0dcd4e-ce29-4708-b7b1-80651e865ec2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -243788,7 +243788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbc44329-0271-4e15-8f6b-1c65b1f7da95", + "id": "bc5bdd0d-e41b-495a-91e0-8e0e99ce6270", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -243877,7 +243877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2baa814a-272a-4114-8094-8ec92eaea35c", + "id": "f0fc0d50-2776-4b47-aad2-d052e86edf0a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -243966,7 +243966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca45a6c-1d85-47db-bde9-46c4274a3804", + "id": "f7f5f7c0-da8d-4379-b9cf-0a1fcdba981a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -244055,7 +244055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8228b269-22f3-4e71-9dfb-2657d9959a7e", + "id": "5e0b2f9b-bfb6-4429-8765-538de9a863e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -244144,7 +244144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc4b77b3-6640-4161-821c-7f291b18760f", + "id": "584d1a5b-7979-4ec6-b252-41b775c54ee4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -244239,7 +244239,7 @@ } }, { - "id": "6503ce56-ac3b-49c4-8659-dc1227b51aeb", + "id": "003df8d6-78e8-42ba-b30a-e1165c20b290", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -244281,7 +244281,7 @@ }, "response": [ { - "id": "431eb717-4a04-42f7-a907-1d39130ad8c7", + "id": "e817ccc5-b5f5-49c2-a5f1-986e4bf27e05", "name": "Details of the created integration", "originalRequest": { "url": { @@ -244337,7 +244337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "417dc82a-68e6-4322-92e3-d86606b47c2e", + "id": "3bd7e331-c7f9-4021-9194-e0387c5cdde6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -244393,7 +244393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "822eb24d-f432-457e-8707-4bbd674e6e64", + "id": "3ce279dd-462d-43c5-a4b4-fd93a3c3acb0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -244449,7 +244449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2740fb25-346f-4364-b0d9-ccd1d974723d", + "id": "1dd12860-c606-4920-9a06-0e13c79ec215", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -244505,7 +244505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85873666-828b-4278-9ab7-48889fa68d11", + "id": "e3edb1e1-ca32-435d-970a-033d77ca42af", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -244561,7 +244561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "066f8eab-8185-470c-8b60-79adb9b48a86", + "id": "a8ef8d38-7a11-4823-8e26-6f4d292455f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -244617,7 +244617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed5044c5-32ed-467c-bc42-ccd45fbf4e26", + "id": "0efc658c-1259-4660-9b67-a35a3680bd9c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -244679,7 +244679,7 @@ } }, { - "id": "736644dc-68dc-429c-92a8-684000d5476e", + "id": "261714ae-8e60-4b5d-a9b6-b3584270089c", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -244720,7 +244720,7 @@ }, "response": [ { - "id": "cbced05c-6d9f-49e4-885b-92e51761d2c1", + "id": "57ec7293-254e-4af0-af9f-292ff08599f9", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -244764,7 +244764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "751ed8e3-53fc-4cb0-b23b-d0512feaedc3", + "id": "5730c710-98bc-43ba-bd36-7d02a3bc63b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -244808,7 +244808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9ae174d-b9fe-42e2-bea6-eb19d670d56c", + "id": "dcfc8a1c-cd9e-40a2-94c3-3fb1717355a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -244852,7 +244852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "467f45a0-f9cf-455d-8a61-9a952525af3b", + "id": "a35e0236-4d79-41f7-ac42-973386b0d6fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -244896,7 +244896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20c18637-922b-4a6f-9cc1-82ec899dddcc", + "id": "4302e638-dfc9-4497-a4e1-979d4814c3d0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -244940,7 +244940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05ddc28f-1b21-49bc-918a-c2cf7f3ea095", + "id": "5c1c0428-4913-46ae-aa93-38fb1058e599", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -244984,7 +244984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72d49cc5-c0ae-4477-93b1-986937cad3ab", + "id": "3b808f18-ad54-4605-b5bd-f71a36777def", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -245034,7 +245034,7 @@ } }, { - "id": "3b8e6358-7069-47d1-94d5-af2c00405219", + "id": "c954c67d-6e9c-417d-a3c0-69937b7c37ba", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -245088,7 +245088,7 @@ }, "response": [ { - "id": "617d9ecc-5a2c-4487-a2b7-7fca10a07811", + "id": "09b563ea-45d6-46af-a656-e0071536654a", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -245145,7 +245145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc0ee92c-39fd-43a3-bae2-f9ba82f343dd", + "id": "331e2b48-cb41-4e9b-b876-f1e5ba861ff1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -245202,7 +245202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4492859d-35c8-4b00-810a-cb8673339478", + "id": "55438c41-78a8-42e1-850e-ef8cb04579bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -245259,7 +245259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "783425f8-0cc9-4a0f-9933-384da0ef71ff", + "id": "45ff240f-1a50-4dd5-9fe5-ed251d5e36cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -245316,7 +245316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43799d1b-20b9-41be-875f-d1a7958cf934", + "id": "de58a9d1-30e4-48e9-ba5c-7e585f9bcd4c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -245373,7 +245373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3d39fb7-32c5-452b-8fa2-7ec3bba0303d", + "id": "9124aeb4-7500-431e-89f9-19a7bf7827ae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -245430,7 +245430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e31a8eb-9511-4504-b290-e04fe244e494", + "id": "45172775-94a8-40f2-af8f-c69e0b8bf486", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -245493,7 +245493,7 @@ } }, { - "id": "dc53bc7b-e227-4037-a6d5-4412cd220684", + "id": "80a68c11-45cb-4623-8228-aa9753f1a86e", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -245534,7 +245534,7 @@ }, "response": [ { - "id": "faf0c542-12f2-4bef-a6da-1f2e1421abd0", + "id": "c7b638cd-cb6f-47ff-bb35-fc47671d3bae", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -245568,7 +245568,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ab2f4541-a838-4e49-8db0-1892940c2d46", + "id": "9e4c2418-5e92-4c04-9340-f54465d6bba5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -245612,7 +245612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51e16ec3-3516-4508-a351-3beb1ee199c6", + "id": "a8c98b95-b5bb-4697-bfcf-dd98671ce618", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -245656,7 +245656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4309274-eec9-41be-86b6-a3b8a0f06261", + "id": "adbadaba-4e28-4d6a-b310-f62a6830529d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -245700,7 +245700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2543d729-02d0-4c05-95f3-6fb5dae15721", + "id": "551d2224-a57f-4a7d-b395-681d34406872", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -245744,7 +245744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd42697d-7522-4a03-8ecc-8aab231d5590", + "id": "38287367-d8c3-402d-955b-bf5ed89c350b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -245788,7 +245788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54bcc7ee-f6c4-4602-89cd-bdf01460870f", + "id": "01e75f9a-cbf1-4399-b544-4eae2b825943", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -245838,7 +245838,7 @@ } }, { - "id": "8f92f19b-8a88-45ca-92e5-08c9b1e12a09", + "id": "03de867f-07e6-488a-b395-a35471563d8f", "name": "Patch a Service Desk Integration", "request": { "name": "Patch a Service Desk Integration", @@ -245892,7 +245892,7 @@ }, "response": [ { - "id": "547ed434-012a-4e30-afd8-eb86664ec93f", + "id": "fbdb62fe-3ed1-458c-b8b7-ff4b7677ac0e", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -245949,7 +245949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88d54b52-dab5-4edc-9fed-ba523396ac5c", + "id": "ce720ee4-8a55-4bad-bc16-c0d663a27fdc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -246006,7 +246006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1a7de60-f548-4b58-9b46-7cbb5cc33238", + "id": "a51121a5-68a9-4ba9-89f7-b530b49e17ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -246063,7 +246063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ec68cff-87b9-4dee-b953-19e20d91d7db", + "id": "7e0cf85c-3211-4513-9bd5-f827f4fe4d29", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -246120,7 +246120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d727f95-f290-488a-ae2c-0d244cf625aa", + "id": "0253e66e-12dd-4679-bd1a-541e5c4ecff7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -246177,7 +246177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1854979-d7b5-4930-b037-31c11e50494d", + "id": "d5db827c-9cea-41f7-9109-c96d67c12961", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -246234,7 +246234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3f439ff-97ad-400e-92ce-8a301627e62b", + "id": "26850b9a-6d19-47e2-9052-10a7ece646c9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -246297,7 +246297,7 @@ } }, { - "id": "cc35ad73-f147-4241-8884-fe9680f2ceae", + "id": "134b9ac5-b7a8-47e3-995c-8ca8d8da8225", "name": "List Service Desk integration types", "request": { "name": "List Service Desk integration types", @@ -246327,7 +246327,7 @@ }, "response": [ { - "id": "8ded5255-24d2-4fb5-b0da-3c27a6210560", + "id": "158e399a-d1a7-4b74-b36b-35e68a42dde6", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -246371,7 +246371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67aa0d02-5c79-459a-98d7-84989761512a", + "id": "c2183f26-a3fb-45ca-9e64-f892bfcf24c6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -246415,7 +246415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95e453d3-d160-4aeb-958e-f14258468f0b", + "id": "da9f7197-d27d-42ae-aad5-aaa894e40574", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -246459,7 +246459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3357f43-0efc-47d0-b916-858427bc09a0", + "id": "ed031906-9b76-4295-879f-51027941318e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -246503,7 +246503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51b9d0d1-7398-4605-b832-1170a64484ea", + "id": "317497b9-7dc6-4c05-817b-20d8db2aead0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -246547,7 +246547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17b58ad6-546d-4662-9821-6f087c3997ae", + "id": "f277512b-9ad2-44fb-ba3e-2dcc37337741", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -246591,7 +246591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ea755f4-65e9-4abc-8233-30e064718816", + "id": "9aea1551-817d-4e1a-9a93-f85f45300c82", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -246641,7 +246641,7 @@ } }, { - "id": "3d42689f-f361-4406-aef6-308d5bcb4da2", + "id": "5511bb02-429e-49ea-901a-35a43cf38b81", "name": "Service Desk integration template by scriptName", "request": { "name": "Service Desk integration template by scriptName", @@ -246683,7 +246683,7 @@ }, "response": [ { - "id": "ee36961f-b438-4f27-8b68-d84b3a0877c4", + "id": "d888ca64-96bb-4b50-8cc2-1049257190ba", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -246728,7 +246728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7261ccd1-6b08-4505-bf6a-0f16507c2942", + "id": "fe2fa09d-a845-4f52-9bb0-b9755183bb57", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -246773,7 +246773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb1e7aef-0cb6-4627-aff6-68288ad831bd", + "id": "9c83b8c3-ee3c-4398-83bd-a5f18672fb8f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -246818,7 +246818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc620cf4-9198-4cb4-88b6-561066b5d665", + "id": "6e22976c-c6d7-4fc9-917d-0595d7e2a741", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -246863,7 +246863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "236ad789-8acf-48e1-87fb-a37a960e3b90", + "id": "dd38e3c4-4344-4f8b-ac97-54b8210085e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -246908,7 +246908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acdf37d7-9323-465c-81dc-87d741936b60", + "id": "a1bc0b11-6700-44fc-8632-6d012f67b428", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -246953,7 +246953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc53c1fb-c776-4592-97eb-96cad4db0ed0", + "id": "87ca4155-0fb7-4f06-a82b-562553e5137e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -247004,7 +247004,7 @@ } }, { - "id": "190bfb58-23ac-49d0-b4e7-43c283b17f97", + "id": "ebe39f68-3e6b-4996-ab3a-2a1b36facdca", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -247034,7 +247034,7 @@ }, "response": [ { - "id": "d3b20098-1b7d-4601-b81a-6ec8787ffdf9", + "id": "fc47508c-e1b4-459b-9856-a5aa7568a430", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -247073,12 +247073,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8ba11bb-d1b7-4302-b2cc-2f63c53f183c", + "id": "005f9155-441b-4dee-bcc4-f7dfadbc8909", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -247122,7 +247122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa3a7032-6752-4776-89a2-82fcf30cb9b3", + "id": "44018ef5-eac1-4754-b5f6-567ecae02739", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -247166,7 +247166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b93c7892-cff9-4b77-a3c7-c1fe34450b38", + "id": "947e6451-6a0c-4ee7-b722-ba46c602440e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -247210,7 +247210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28aa6896-9f00-49f5-a246-c0a02caa76a1", + "id": "51a7d63c-1adf-4c48-9f41-a78c16f65644", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -247254,7 +247254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3105f7fa-d31c-4266-a408-bb9598f183e2", + "id": "bc80689d-4eb8-498f-97a3-450d42401a63", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -247298,7 +247298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a3535aa-7088-4e0f-aba0-7c425b036f80", + "id": "26f39a56-0a06-4742-94c8-f58e40ba68be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -247348,7 +247348,7 @@ } }, { - "id": "5c741564-1348-4af5-ae6a-46073d9946a4", + "id": "b509d4ee-1afc-43c5-9df6-f61b124df20d", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -247380,7 +247380,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247391,7 +247391,7 @@ }, "response": [ { - "id": "469a3d4e-b270-4dca-a72c-1f19c1bc7b5b", + "id": "95e5edf1-b0bc-466d-b016-e2eeff6111c2", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -247426,7 +247426,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247443,12 +247443,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4cbba8ef-debd-4e09-a937-e48cb40b31e7", + "id": "de9d5035-dc14-419b-8b70-020f2345758b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -247483,7 +247483,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247505,7 +247505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da62f03b-7bc8-447d-805f-2ad82b69abc3", + "id": "c5ca9af3-c3a1-4e0c-a961-029c60f90cc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -247540,7 +247540,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247562,7 +247562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "523669d6-be7c-46c5-a4de-dc04ad5a4306", + "id": "2e17b302-56d4-4b2b-81bd-15d6e4e9f607", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -247597,7 +247597,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247619,7 +247619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54d2be4d-db83-4389-ad14-9ef375a15a40", + "id": "6df99b3d-cba4-46e6-a8bf-75222ff6b551", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -247654,7 +247654,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247676,7 +247676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "686a86f4-cf98-416c-8959-c2939afbca53", + "id": "c7a732af-b6db-4afb-a5a5-e4eb8a3d6e76", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -247711,7 +247711,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247733,7 +247733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec35c5f7-5c40-4b2e-9ff7-d8c989105659", + "id": "c3843191-c763-4d11-96db-3f8da57af459", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -247768,7 +247768,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"ea\",\n \"provisioningMaxStatusCheckDays\": \"Ut in dolor\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"est ea labore\",\n \"provisioningMaxStatusCheckDays\": \"nostrud Excepteur aliquip nisi voluptate\"\n}", "options": { "raw": { "headerFamily": "json", @@ -247802,7 +247802,7 @@ "description": "Use this API to administer IdentityNow's Service Integration Module, or SIM integration with ServiceNow, so that it converts IdentityNow provisioning actions into tickets in ServiceNow.\n\nServiceNow is a software platform that supports IT service management and automates common business processes for requesting and fulfilling service requests across a business enterprise.\n\nYou must have an IdentityNow ServiceNow ServiceDesk license to use this integration. Contact your Customer Success Manager for more information.\n\nService Desk integration for IdentityNow and in deprecation - not available for new implementation, as of July 21st, 2021. As per SailPoint’s [support policy](https://community.sailpoint.com/t5/Connector-Directory/SailPoint-Support-Policy-for-Connectivity/ta-p/79422), all existing SailPoint IdentityNow customers using this legacy integration will be supported until July 2022.\n", "item": [ { - "id": "50a73cfd-c2b9-4e96-b200-7fda29aaa520", + "id": "fc43b05c-0810-4fb0-950d-85de6d030ca6", "name": "Update an existing SIM integration", "request": { "name": "Update an existing SIM integration", @@ -247865,7 +247865,7 @@ }, "response": [ { - "id": "5f34b7ef-c18b-468f-a5a3-699836efe175", + "id": "c57f2da7-f19e-4ebc-882d-3ac88f3bbe32", "name": "details of the updated integration", "originalRequest": { "url": { @@ -247931,7 +247931,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85e96cb0-3dc2-4560-91c8-b7985e044ca6", + "id": "395f25d4-f69e-4278-96ae-58cf2663e1f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -247997,7 +247997,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28be15cb-057b-4442-a6b2-7f6acaf7439b", + "id": "dab584d2-7701-4595-9dde-0438f63afd6b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -248063,7 +248063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f71c48d-c06c-429f-889d-b20bc50e4e11", + "id": "f61b5ae8-1d69-418b-95ce-6b58537c0b6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -248129,7 +248129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cca3f48-210a-4c1c-aa40-338b785903c4", + "id": "a84acf66-87a8-4811-923e-a58a00229840", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -248195,7 +248195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f6e4bd4-5a3f-4c85-b58c-c14a05c522ba", + "id": "d32c2be7-2705-4000-8eeb-eb9c9c9d7943", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -248261,7 +248261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "968fb596-f795-4762-a143-fa7ce717ddbc", + "id": "e2d46d69-bca3-4f54-8265-e16c42fc35fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -248333,7 +248333,7 @@ } }, { - "id": "1903b5e7-e8ac-41c3-a79a-99f7a300f828", + "id": "e2eef5f7-0b4b-4422-a4e7-1f95f67648d8", "name": "Get a SIM integration details.", "request": { "name": "Get a SIM integration details.", @@ -248383,7 +248383,7 @@ }, "response": [ { - "id": "4a7fa60d-70c6-4965-8e60-d4d8924d9176", + "id": "adf56693-53a9-46fe-9ce7-d4047334d493", "name": "The DTO containing the details of the SIM integration", "originalRequest": { "url": { @@ -248436,7 +248436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dd64594-7f70-49a0-bd76-4b14c61de343", + "id": "a1284a0f-39e5-4358-9fb3-c37ee1d38008", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -248489,7 +248489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5abcf079-1bba-47e2-aa87-7899e51f7d8e", + "id": "20e5dc3b-1214-4019-94d4-7d7d5b2753fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -248542,7 +248542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3c7e93d-d86f-404b-ab5b-f7f4fdbd276a", + "id": "1f963981-c340-4af4-9d64-1f756b123898", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -248595,7 +248595,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e61ce55d-44fb-411d-aa5b-35d4c4eee053", + "id": "03230610-107e-433c-95e8-fb5c2492eaac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -248648,7 +248648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da7c9cf1-bd6e-49cd-b7aa-22966d428e7d", + "id": "c79d5b93-8fab-46e1-b2c9-239a11b1b8ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -248701,7 +248701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98af3f0d-d86b-4bb6-a4c8-7012145e90ac", + "id": "8ccba91c-eeb4-4466-83b7-7a650bd1cefc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -248760,7 +248760,7 @@ } }, { - "id": "60f0b9d5-870a-427c-b6cb-f3a135d30773", + "id": "b58f4226-9c2c-4092-972f-bdd0bb1029a1", "name": "Delete a SIM integration", "request": { "name": "Delete a SIM integration", @@ -248810,7 +248810,7 @@ }, "response": [ { - "id": "ee1dc570-8aa1-492b-be07-81d5b48da35d", + "id": "5b43be76-391c-42e9-a167-e6ae79173e71", "name": "No content response", "originalRequest": { "url": { @@ -248853,7 +248853,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1024abcb-4786-416e-bbcd-4feb67fe265a", + "id": "a6e7e129-b4bc-4bb9-8311-8e736030a843", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -248906,7 +248906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb0f6915-245b-427f-9285-be4b1f4119c4", + "id": "d085efba-548d-499b-b547-802ee868802e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -248959,7 +248959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb1b397e-f01b-4421-9006-d424e6994e43", + "id": "b22c7bc0-3413-4786-8c95-6153e42725c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -249012,7 +249012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be4bd47-f9a3-4f8f-832d-f28113d5db11", + "id": "389b16f6-768a-45fe-8a55-5287bab133e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -249065,7 +249065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3bdeda7-2909-4e60-bea1-26c50c2c4ce8", + "id": "f7906ff5-72a5-4369-b1cd-0403cf56f4b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -249118,7 +249118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41ee5285-24fd-4f31-a293-0d1e6e06fa21", + "id": "d5d4a219-1448-48ff-a16f-c5fd918d0c8e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -249177,7 +249177,7 @@ } }, { - "id": "995afb0a-aaa1-4987-9df4-56142f622720", + "id": "1ca7de31-edbc-4a7b-8bc2-d89427f83016", "name": "Patch a SIM attribute.", "request": { "name": "Patch a SIM attribute.", @@ -249240,7 +249240,7 @@ }, "response": [ { - "id": "9b7c7cc9-298c-4428-9501-1a4708677133", + "id": "44995517-201a-4cad-a2ff-8d0ed373fd11", "name": "The updated DTO containing the details of the SIM integration.", "originalRequest": { "url": { @@ -249306,7 +249306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4da5eb21-e0a6-4bf8-8d16-c90d90f16e5a", + "id": "086cfa3f-0d83-458e-bb49-ad5c02ea5565", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -249372,7 +249372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18daace4-b716-488c-acd2-a0ac96fca981", + "id": "b6d304ab-9b3c-4846-b110-49ff6e74c6fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -249438,7 +249438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bfe9e0b-d633-4fd0-9982-6b16aa7188b1", + "id": "53de96e3-dc27-4c9f-b0ae-b87de272a9d1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -249504,7 +249504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd886ef-27f5-475f-9735-c061e97f7fd2", + "id": "1349a06c-c216-435e-bf03-6c6d3b4f27fa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -249570,7 +249570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2496c3f-8e5c-41de-afe9-ef590d790688", + "id": "9d581174-ad9f-421b-a23f-f936f7406a08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -249636,7 +249636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "662eada9-aaea-4963-95d6-56fcd6549dd2", + "id": "49c9a8ce-06aa-4fb0-a5cd-0c79c8654aaf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -249708,7 +249708,7 @@ } }, { - "id": "93f1ff9d-3fe3-435f-b397-ea1c3e991115", + "id": "1d18ea5f-7a6d-4f49-82e5-a34c82590f33", "name": "Patch a SIM beforeProvisioningRule attribute.", "request": { "name": "Patch a SIM beforeProvisioningRule attribute.", @@ -249772,7 +249772,7 @@ }, "response": [ { - "id": "efc21b23-b24c-46e0-a440-f02563a850b6", + "id": "e923eac9-e737-4e8b-bf2a-a9c446fa8976", "name": "The updated DTO containing the details of the SIM integration.", "originalRequest": { "url": { @@ -249839,7 +249839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c4cbe2f-6ee4-41f3-bd42-1fb6359d4514", + "id": "4b9023af-6726-4e64-a58b-0d18ed6872ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -249906,7 +249906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42beb230-45ec-4d25-8ec9-bd17cd6fbae9", + "id": "53b5f668-3942-4764-8cf7-c118ad7e1b99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -249973,7 +249973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61aa9a0b-9969-4b46-b81e-e3e2e95c4587", + "id": "ec765f59-da3f-49b1-9bab-9333fe7df79f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250040,7 +250040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8a7350d-565f-45b7-8f42-be06170fcd21", + "id": "42b06583-b007-484b-af3b-427eac92308b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -250107,7 +250107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99a6eb07-29a3-42e5-ba93-75f8b89e8b60", + "id": "238c1aae-1fe5-455d-aab7-415762b89c53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -250174,7 +250174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83f6638c-d8a4-4f12-a11c-8fdbb605ca88", + "id": "bd426805-61e0-4c62-a6ce-aa432fb797ef", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -250247,7 +250247,7 @@ } }, { - "id": "fdc0abec-e7bd-47df-bd88-3052ceb2cd17", + "id": "aee4f3f6-3a86-4927-9196-87762e9668ef", "name": "List the existing SIM integrations.", "request": { "name": "List the existing SIM integrations.", @@ -250285,7 +250285,7 @@ }, "response": [ { - "id": "135321c1-1536-4587-af8f-15f54518056b", + "id": "0ee67e82-097e-4be0-ad84-38b88ff7da5b", "name": "The DTO containing the details of the SIM integration", "originalRequest": { "url": { @@ -250337,7 +250337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f6945e2-0097-4eca-9519-7798d141c394", + "id": "abae4b33-739a-495c-96f0-6cd9ab7435f0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -250389,7 +250389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c9651b4-831c-401c-9da4-28bd6bce31ae", + "id": "d9ac7a73-1b1a-4fe9-9e6b-bedb12e56911", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -250441,7 +250441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad4b9b8-942f-407d-a858-5a3ced12b690", + "id": "b636338d-cdf7-442b-bb51-16f5a2d2da66", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250493,7 +250493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fabda5e2-d284-416b-8d78-2debc375d624", + "id": "0e18872c-665d-4124-b136-22ae90ed3827", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -250545,7 +250545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce79af7-4574-479d-a696-ddeade4f62ae", + "id": "5ae9c60c-c9b9-4977-a74e-93ece012e853", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -250597,7 +250597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec67fc3d-a3ce-416a-8b00-14d933a6960c", + "id": "3ef9f6ef-0aaa-42fe-955b-0d0957221507", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -250655,7 +250655,7 @@ } }, { - "id": "713377cc-0ad3-436d-97d2-9606ccbc3dbc", + "id": "23e3ec8d-968a-4154-989c-a79f09945618", "name": "Create new SIM integration", "request": { "name": "Create new SIM integration", @@ -250706,7 +250706,7 @@ }, "response": [ { - "id": "9ad83e7c-73e4-4269-9fc3-950c96cce286", + "id": "2d595810-e6f9-4a47-a6fa-4eecd74755a3", "name": "details of the created integration", "originalRequest": { "url": { @@ -250771,7 +250771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "455252c7-20f4-416d-8de2-ecc11f112c0a", + "id": "d7f20612-2fd6-41f7-9254-b41013c68d6e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -250836,7 +250836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a82c6282-0f90-4f52-b837-720ee23143b4", + "id": "3ded8027-b48b-42fe-bb8f-6ed8ea32ff0b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -250901,7 +250901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2205e5c1-5366-467a-b1ed-152ff27005d7", + "id": "4b0d46e2-1b35-43cf-ad6f-e286595f7cf6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -250966,7 +250966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "639930de-664e-489f-9410-d3883cfbc70f", + "id": "36ff17fd-afd3-40ae-81bc-a06e106b1878", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -251031,7 +251031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8fa50de-bda2-4349-9736-fefdfd835ad3", + "id": "313a5443-56da-4c85-b05d-47669bb7d5f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -251096,7 +251096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "988fb02a-74ec-4e2c-86d4-c187b1f085a9", + "id": "51d4a97e-5b0f-4ef2-aa07-199056ab7127", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -251173,7 +251173,7 @@ "description": "Use this API to implement and manage \"separation of duties\" (SOD) policies. \nWith SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nTo create SOD policies in Identity Security Cloud, administrators use 'Search' and then access 'Policies'.\nTo create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.\nThey can search for the entitlements they want to add to these access lists.\n\n>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list. \n\nOnce a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies. \n\nTo create a subscription to a SOD policy in Identity Security Cloud, administrators use 'Search' and then access 'Layers'.\nThey can create a subscription to the policy and schedule it to run at a regular interval. \n\nRefer to [Managing Policies](https://documentation.sailpoint.com/saas/help/sod/manage-policies.html) for more information about SOD policies. \n\nRefer to [Subscribe to a SOD Policy](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html#subscribe-to-an-sod-policy) for more information about SOD policy subscriptions.\n", "item": [ { - "id": "f71d5c56-4125-467b-9b52-048ad958d3dc", + "id": "a1acf211-8a23-4c9a-96ae-a4e595e549e3", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -251215,7 +251215,7 @@ }, "response": [ { - "id": "6646fe95-411f-4d0c-ba1d-e3e3b025a7b8", + "id": "10b11bcb-c51c-49b7-8bed-6c157e02ab3b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -251271,7 +251271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3be4a4ec-60da-4147-8911-1417fb81be04", + "id": "5808f623-d267-469b-8346-b07d84adab2e", "name": "General Policy", "originalRequest": { "url": { @@ -251327,7 +251327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1c08f84-f6f4-41e5-af24-16601280510e", + "id": "5dd910ae-527f-48b8-8625-a085242974e3", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -251383,7 +251383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ef3b574-23f6-4302-951c-b72fa501993a", + "id": "49406e7d-d52e-4adb-838e-3643e3c866ca", "name": "General Policy", "originalRequest": { "url": { @@ -251439,7 +251439,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66890909-ad0c-4d8a-8ef3-c30a8e9a5f2c", + "id": "a1c642e3-f95c-4665-99e0-9bcd9f08e3dd", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -251495,7 +251495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c753b143-8c94-4970-8f96-96048504c92b", + "id": "d4fa4bc6-dd59-4c53-9784-e9a7eaf84007", "name": "General Policy", "originalRequest": { "url": { @@ -251551,7 +251551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "952c630b-498b-47c8-aacf-8186ac1e83cf", + "id": "ff6b45a9-0cbe-4098-b01b-9dc31fc3bed0", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -251607,7 +251607,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95acb23e-ebe0-4208-9cab-c940cb72c6dd", + "id": "0584c8e7-f3b9-4140-bd59-75a1c562f775", "name": "General Policy", "originalRequest": { "url": { @@ -251663,7 +251663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d921008d-71e8-4577-bea7-cf64f9116e7b", + "id": "e2597f3b-213a-4962-a180-b402dfbc2e3d", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -251719,7 +251719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "004fbf0e-5f14-4f2d-b6a9-53b7e6c8ea33", + "id": "c07ccd32-0dbc-4316-82f9-68d37fbf1be4", "name": "General Policy", "originalRequest": { "url": { @@ -251775,7 +251775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b419679-7fce-4ef9-b3b0-9e3b60d65af5", + "id": "790415f3-b770-4129-a0a2-43b886d03c38", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -251831,7 +251831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e434503-7478-47b3-b824-1c3f48b84499", + "id": "e41223bb-7328-41c8-83e8-0ebb7d609542", "name": "General Policy", "originalRequest": { "url": { @@ -251893,7 +251893,7 @@ } }, { - "id": "664a623f-a642-4e56-84d1-554abf17801b", + "id": "1bffe153-ddc5-4ef5-a63e-f6bfd4d0826c", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -251968,7 +251968,7 @@ }, "response": [ { - "id": "ee8f699b-a486-4a17-acf0-c861b1d04c6c", + "id": "a2b1c7a0-e298-498d-9311-9c8d7d1fd538", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -252057,7 +252057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76285487-b5f9-4962-9b12-6d94d875f73e", + "id": "f6b5414b-f6a6-4440-9d92-e8d020d90a48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -252146,7 +252146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95445ea4-aeeb-484c-924b-d99a1c97f0ee", + "id": "eb0e8c34-f0f2-447d-96ba-f06f41c60524", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -252235,7 +252235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c87a13f5-1f45-4f24-8129-3be350d053ef", + "id": "a78aa9ce-bec6-4729-98a8-e00e657e43b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -252324,7 +252324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6929f30-206b-40ea-be7c-b032f27440f5", + "id": "cad3158c-8934-4329-8158-39e4f1aa53ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -252413,7 +252413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e7c776c-7eba-4d97-afc4-8734ea0846ee", + "id": "c2f8e653-e29a-4ec0-a356-f3b0173d4ac6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -252508,7 +252508,7 @@ } }, { - "id": "d757b6c9-cd2c-4de8-b5ab-d4aa45e6c0ec", + "id": "4ac1074d-4251-45c8-8bc7-81c640ceef15", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -252549,7 +252549,7 @@ }, "response": [ { - "id": "3a501e56-2963-41aa-9dcc-66681a72eef0", + "id": "c591af39-2c0b-4718-97a9-70a085f1a0c7", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -252593,7 +252593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daec242d-c2da-499b-bbc4-0861bf88f3da", + "id": "2f83c64a-5358-4176-97ff-6a00cce78a5b", "name": "General Policy", "originalRequest": { "url": { @@ -252637,7 +252637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c039dda2-540e-4032-9996-4d6426d4d64e", + "id": "532c09a4-6efa-48c8-81ad-87b40b69d7fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -252681,7 +252681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18386374-77e2-48e3-8292-a5cf0c328661", + "id": "256d1939-bea0-4306-bba2-fee7fcbb39ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -252725,7 +252725,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41069fc4-2413-448e-8fec-74b03ff3b8fd", + "id": "91892dd6-f0ae-4125-ab7a-1aa1ddf956a7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -252769,7 +252769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "954a36cf-2f2d-405b-8b16-328753e5fe6d", + "id": "eee31f20-c2d8-4d40-ae28-a3ff8f3c5d23", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -252813,7 +252813,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac295c3e-c2d2-47c4-b7b7-661094238e95", + "id": "cd932f30-12b2-4e43-b8de-b66e2d064940", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -252857,7 +252857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79316e2b-fcaa-49f3-85fe-2abf11b3c220", + "id": "e9398942-cdbf-48e2-9fc7-25dc71ef5fa7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -252907,7 +252907,7 @@ } }, { - "id": "957d2292-c28a-4225-a8ce-6bfd2fe30621", + "id": "7d4b1c81-df6a-4cb9-87f8-ddebb01c8ace", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -252961,7 +252961,7 @@ }, "response": [ { - "id": "b3bde008-4140-40f7-a4b2-642d236de208", + "id": "b1f5dc19-3fe9-4655-8a6f-521408c6422e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -253018,7 +253018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "734e0d17-89ff-41ab-b12a-146a3bb0ea48", + "id": "9618de07-3fd5-4cdb-9d34-1e380ac1ab21", "name": "General Policy", "originalRequest": { "url": { @@ -253075,7 +253075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fb7082f-a14d-40d5-825d-30e92b6cc725", + "id": "4a486bd4-037b-47aa-89ce-40ae22b0d93b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -253132,7 +253132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e18539-b97c-417a-91e4-a7aa7590ef3a", + "id": "4f355542-a70d-4281-8b9e-ed97f6f64856", "name": "General Policy", "originalRequest": { "url": { @@ -253189,7 +253189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27360480-9166-4474-bb55-be03f3e15d46", + "id": "09d05dce-6477-4056-9974-701447e015a4", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -253246,7 +253246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ab4d3f-c99b-4530-848b-3e907c4f97f0", + "id": "aedd3d92-7a60-4eb4-b69e-2fc3ba88eff6", "name": "General Policy", "originalRequest": { "url": { @@ -253303,7 +253303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f242a03-9911-41ea-a25a-d671bef28ef7", + "id": "753d57d3-1b6f-4a50-a985-7a68eae77061", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -253360,7 +253360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fadf9de-14d6-4441-9a5b-af1e3a3e0563", + "id": "02f14858-e128-4b45-9ee7-4d082c939c2c", "name": "General Policy", "originalRequest": { "url": { @@ -253417,7 +253417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "481dc85c-754f-41cd-8231-df44c67e1197", + "id": "87c06c71-81c1-4b33-b9ff-0bc69111acdd", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -253474,7 +253474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8003424b-65e6-4e9c-8712-370a71f65eb4", + "id": "f557181d-613c-4c85-81db-fba285296bfa", "name": "General Policy", "originalRequest": { "url": { @@ -253531,7 +253531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0a6f262-6779-4b9d-9a58-f916caf97f0a", + "id": "63b836a2-375e-48f0-a081-41f2969e9175", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -253588,7 +253588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9706aa2-6e2b-49b5-9051-5c5b768897f2", + "id": "1806bb70-ae35-47c7-9b38-2ee5e5da30a1", "name": "General Policy", "originalRequest": { "url": { @@ -253645,7 +253645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b330d9fa-1ddd-4a6a-848e-85789e5a0232", + "id": "76b4ee6e-ecb7-450e-942a-729b0d3eaa2a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -253702,7 +253702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac9a7ca-affe-4038-9eef-7629c5c3d7e2", + "id": "9f0fab18-11f2-47f9-babc-f403c5f0948a", "name": "General Policy", "originalRequest": { "url": { @@ -253765,7 +253765,7 @@ } }, { - "id": "c439f9f9-bd2d-4a8f-8e26-ba605beeff12", + "id": "fb25d132-5cca-43b6-93da-8941def9a1c6", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -253816,7 +253816,7 @@ }, "response": [ { - "id": "ac05f8fd-581d-4a4d-b26d-ac9a1e9ac128", + "id": "e0a5cf28-5c73-48fa-b2cf-54a02bd5dfb1", "name": "No content.", "originalRequest": { "url": { @@ -253860,7 +253860,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e6702238-d241-4f32-9d53-33b46eec0d57", + "id": "2333b630-63b7-4c1a-9fd4-0c44957287b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -253914,7 +253914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0d14027-73a6-4f0a-a633-b1878d2f4c97", + "id": "7cd43a84-b14e-479e-93bc-5e58a84618a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -253968,7 +253968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab82526f-c16f-4d09-ad4b-0ca6deb89952", + "id": "4e62a6f6-e43e-4881-a453-974629d04c34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -254022,7 +254022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4164e344-be71-48b0-973d-6f80ce1ae227", + "id": "66ac71f2-1eed-4478-8ef9-fe4fbddfd2ad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -254076,7 +254076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cff819e4-7ec6-46a7-a814-19109e333d67", + "id": "41829f0a-9f83-43f6-a301-8b9652181ea3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -254130,7 +254130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b5214be-9d85-44e4-bd73-1e252d061d14", + "id": "ffc06ef1-4691-45cd-8573-b36cb5dd4e00", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -254190,7 +254190,7 @@ } }, { - "id": "3bcf716d-7619-4941-9870-1e1eed9f862e", + "id": "fa3a6033-bf3b-44c2-950f-7e38ccb45637", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -254244,7 +254244,7 @@ }, "response": [ { - "id": "a4b660ac-2bdd-40e7-80f8-1173209b8ad7", + "id": "756fb171-4e9d-42a6-83f2-e4120a322d34", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -254301,7 +254301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f2a05ef-fca8-40e4-8778-7865853f62e8", + "id": "7be89caa-ff4f-4bfb-8ca6-4a7ba7e7284a", "name": "General Policy", "originalRequest": { "url": { @@ -254358,7 +254358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7a640b5-a54a-4c57-bc09-51828a40880e", + "id": "2b8517a1-a6e4-4039-bda1-f98359b2aaac", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -254415,7 +254415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92f7f756-e5d8-4f07-b235-a7cb00ffb15c", + "id": "d4460851-494e-42f7-bfa6-5240d4c767d0", "name": "General Policy", "originalRequest": { "url": { @@ -254472,7 +254472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb8ef81-2847-4208-a0db-20b6be14bd81", + "id": "6fe4a9b8-531b-4cca-981c-b653b9a7431a", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -254529,7 +254529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cdbb3cc-2e70-460c-9b97-2db7d15a2fbc", + "id": "48e21f1e-61d4-4cb6-ae58-63403f6b720e", "name": "General Policy", "originalRequest": { "url": { @@ -254586,7 +254586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b18b6d82-a6c2-46a1-9ab4-a45f617e4fc6", + "id": "d9c22dc5-2b87-4b29-8f86-fae5aff8fb78", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -254643,7 +254643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88ec8fa7-1ae5-4f0c-ac00-8774d0e72136", + "id": "c51ed555-49b6-479b-87a2-75838123bdc8", "name": "General Policy", "originalRequest": { "url": { @@ -254700,7 +254700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4effab6b-9bfd-464b-9df3-64b93429a698", + "id": "983619a7-f507-4e43-966f-3e2e04988ab9", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -254757,7 +254757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e330bfc-0d1b-4a70-8c6a-0b785624e0dd", + "id": "bdd0f981-d14a-43f3-8793-dcc92cd30c9d", "name": "General Policy", "originalRequest": { "url": { @@ -254814,7 +254814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a4bb9ed-7bd8-4e05-95cc-1ab6eb277d73", + "id": "a4d0f4af-b399-4e05-a3cc-d849a3b019ea", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -254871,7 +254871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acbcebb7-de72-4b0f-95d3-e06db3e3e2da", + "id": "8216f8f3-3b37-4a0f-bc56-3d19d14abef0", "name": "General Policy", "originalRequest": { "url": { @@ -254928,7 +254928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "649e970f-8851-4d7f-8151-bb40b9e7ec34", + "id": "87e9e11e-6340-4b98-bab5-4b37ebba8bdc", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -254985,7 +254985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f54dd9e6-6369-4253-baf7-a44ba0fe52c9", + "id": "049e5736-d8ed-4298-a6f8-d6b889e03567", "name": "General Policy", "originalRequest": { "url": { @@ -255048,7 +255048,7 @@ } }, { - "id": "6d186523-4ecd-4031-b6b9-f75a61810ff0", + "id": "9ff2cade-6983-427d-8188-f2c8ff5c6056", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -255090,7 +255090,7 @@ }, "response": [ { - "id": "e87ba3d2-6a2a-464a-a7d3-141a8d215b26", + "id": "27beb1c6-bf17-41df-a5e8-c38c81995534", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -255135,7 +255135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "964a87bc-6788-4611-8960-b97252da7661", + "id": "eabcdf1c-2834-4900-9c9d-b1075251b3c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -255180,7 +255180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b12cc178-f4fb-4154-b05e-2ca23f213575", + "id": "722ebb9f-3f14-459d-8ab9-979f0a0271b4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -255225,7 +255225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bde1d702-2ae1-4137-bed7-b4de1c979518", + "id": "bd82d65e-8113-458a-9d58-d17d0f9d95a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -255270,7 +255270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d564992c-0355-4989-9c90-2d8089f5b0c5", + "id": "4f37c0e9-2bc0-4c6e-993e-943d9e17485b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -255315,7 +255315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34c20794-22be-4654-b37e-f6d7a84a7bac", + "id": "78dc59d1-e66d-4426-82a8-586fe8ff4aff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -255366,7 +255366,7 @@ } }, { - "id": "b753fcb8-1511-413f-ba7b-bdb30cacbb23", + "id": "163b3b27-dca4-4f03-8666-62bbbe4be3f3", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -255408,7 +255408,7 @@ }, "response": [ { - "id": "76baa2f0-39e1-4ee8-9e8c-d9a8b4fee2da", + "id": "adec8323-bbbe-47b3-942a-402d3330ce5a", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -255453,7 +255453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf78ee63-02ef-4410-97c9-33e277b21550", + "id": "7e443432-e6ca-474a-8305-8139c5917aa9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -255498,7 +255498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c484a893-74dc-4463-b6ee-0b2eb0ab24aa", + "id": "51b4a68d-8ffd-4c64-9b0b-751c5ec45efa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -255543,7 +255543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d033c8dd-a616-4f07-bbb4-9370ddaa27e0", + "id": "97738930-7c5b-4478-8238-4660c029ea6f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -255588,7 +255588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81e31de0-ecd9-485e-86cf-14266d5d6d69", + "id": "be02f4f6-173a-4dca-88b8-5c2b5f1d7c71", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -255633,7 +255633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35b92de8-57a3-4101-8337-8307fc2f1951", + "id": "3dfcc969-b617-4d57-9087-a1df5dd6c6eb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -255684,7 +255684,7 @@ } }, { - "id": "6bc17db5-a799-4fc4-9e29-fd11bcafb8d5", + "id": "c375ca93-69ee-4bce-9222-fc996de37b58", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -255739,7 +255739,7 @@ }, "response": [ { - "id": "e7857e83-4094-4237-882f-e74d3a3a40f4", + "id": "7f4c42be-f069-4364-9c44-e6a74af24381", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -255797,7 +255797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a52e01eb-17ed-49ce-a3b7-fd2cfe5c5295", + "id": "88ccd4fc-4723-4872-92a6-479537497d05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -255855,7 +255855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcd5b7b8-9271-49f2-9fbf-6370975bc25a", + "id": "90322941-db1c-4616-bf32-959862065039", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -255913,7 +255913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efe432d6-2ec5-4895-a3fb-00a49db9c5bd", + "id": "fd072bd6-b4da-43d1-9b23-d4582a75e883", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -255971,7 +255971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7887e90e-2919-436b-b353-642bd495a3e6", + "id": "b2cfaef9-fac9-4b85-b691-36f4b8b95d54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -256029,7 +256029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6093b1aa-290e-4dc5-9e73-c2c14b42940f", + "id": "32b4576d-7041-475a-8cfd-99bb4dd6fafa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -256093,7 +256093,7 @@ } }, { - "id": "367c79b3-56f5-468c-83a0-bbe6ba88f31c", + "id": "14ba2961-5b13-4f09-8ab9-5e9ec5f54c07", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -256135,7 +256135,7 @@ }, "response": [ { - "id": "8141484a-45b6-4325-b11c-0a05c7d38219", + "id": "5ab96d40-3385-4719-bcad-202070bb49b7", "name": "No content response.", "originalRequest": { "url": { @@ -256170,7 +256170,7 @@ "_postman_previewlanguage": "text" }, { - "id": "f69fbfa5-8bbc-4ee8-a2fd-5676b1989e93", + "id": "067d24fe-c4ad-494e-8573-1321052b7cac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -256215,7 +256215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16273ae6-1453-4089-9b30-b8b7711d4f7f", + "id": "18cb8840-4a46-4781-a936-47699e1d0274", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -256260,7 +256260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0de4352-3ead-4a1b-95c9-aa8d8b33d285", + "id": "adb5330e-68d4-43d4-8231-d1773598535b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -256305,7 +256305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f27fdab-5d0f-4b05-b4ff-cf8056434063", + "id": "a830c348-0e70-4c09-aebb-7aff1ead3a81", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -256350,7 +256350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eccca8d1-f1ca-4bb0-8a28-e48588b045fd", + "id": "bd9ac75a-2dd8-4711-80c4-dc29d5ffae2e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -256395,7 +256395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16a9c904-aa93-44e7-8438-5e92019fef0f", + "id": "ff669e7a-3777-4242-b6bc-cffa3f91940c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -256446,7 +256446,7 @@ } }, { - "id": "ba367b13-3e46-4daf-a03d-e1a7d91e0d6d", + "id": "a450df67-7c5b-4e34-9f8d-35af8d91ba15", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -256489,7 +256489,7 @@ }, "response": [ { - "id": "140cd60c-1b16-4b2b-be2a-a91c4e78bc51", + "id": "cb972654-178b-425c-8ca2-847aabee1b29", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -256535,7 +256535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f021d26-e0a9-4cdb-a90e-6b0119b9c0e9", + "id": "cb45c3af-3f2c-4be1-be2d-13a50e7a36b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -256581,7 +256581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af653751-6e81-4746-9acc-d76cd01a0c1c", + "id": "27039426-b6f9-4a56-ac57-5499cd8a999e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -256627,7 +256627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8e0564f-5bf5-45b6-aa05-02474e669b00", + "id": "bb2164f0-1ac5-44a3-8c1b-88a03095085a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -256673,7 +256673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4ac1048-4704-4f0c-b54a-8d299727d7bd", + "id": "0d703e6a-0b98-4a50-a24f-4dead440b07b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -256719,7 +256719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d91f2142-e51b-40c1-8bd8-0a68eb3b6c5f", + "id": "510e1a78-0531-4d45-acd9-99cc7896f792", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -256765,7 +256765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "339ac547-5f96-4e90-a836-b059f8f155f0", + "id": "a6a99da9-b04c-4eef-beb1-02c4c7bb3502", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -256817,7 +256817,7 @@ } }, { - "id": "2afd61fb-087d-4867-bb7c-df599d46af12", + "id": "c79ad85e-a6eb-4d85-be8c-930b4d471f4e", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -256859,7 +256859,7 @@ }, "response": [ { - "id": "687c7a4d-5cad-4e04-bdf8-bebdd4923f4a", + "id": "14575c99-2304-40c4-9b5b-a967d9923ce3", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -256904,7 +256904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9795342-a9c0-41fb-ad07-03d80c60d0c1", + "id": "fe7df40d-593a-41dc-9a7e-e3f7a1d43b62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -256949,7 +256949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91a1d269-f854-4aee-b9c3-2c24f9c956d0", + "id": "aa0ceb33-d417-4de0-b362-6960612cd4d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -256994,7 +256994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "180f6d4c-0f69-4c7a-aa81-6775458c51fa", + "id": "098aacb2-ada8-4c7f-8446-2b7592955492", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -257039,7 +257039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60a2563c-456e-44cd-8833-02b078712c47", + "id": "d08db4d8-874f-4fd1-a0e1-b84c80c14205", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -257084,7 +257084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb3fa26-0253-4451-aa52-bcea02f3857c", + "id": "3eee7875-2f5f-455c-86c3-15c2cf6976c6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -257129,7 +257129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a18d172-0f64-4f6a-8091-51622f5bdb6e", + "id": "c0bc852d-46ef-40c1-bf0b-27281c74b2d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -257180,7 +257180,7 @@ } }, { - "id": "b8fea856-7499-4b18-a123-52cc95925001", + "id": "dafd5c26-dfcf-420a-b171-3ca270e8abdd", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -257222,7 +257222,7 @@ }, "response": [ { - "id": "d15936e6-ecd7-4142-a90d-95c9414255f9", + "id": "724111ae-2ce1-4097-bc18-088226f3203c", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -257267,7 +257267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c7690d-e249-4eaa-8b1e-e2e0cf413c19", + "id": "ea9d42b5-cac1-43b2-879e-f4150eb38bce", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -257312,7 +257312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29001fc2-1e7a-4342-9869-4bd776f72128", + "id": "636e9800-cbd0-4fac-8d92-0f8d25736f2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -257357,7 +257357,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc6c7e2-225c-403f-83cc-2455eb2ccedb", + "id": "80b202b4-9c10-4fe2-bcc1-0e26f2b0a14f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -257402,7 +257402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ab11a4-75f2-4fa8-9c6d-84c8e6f343fb", + "id": "4def0f9d-69b9-460f-891a-ee4809d44679", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -257447,7 +257447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c8989d5-29d0-459d-b303-9e9b3a85ba8a", + "id": "a7101205-5b83-453a-b2a8-1a70f1f00145", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -257492,7 +257492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ece6c0-a630-415f-9845-d80e60a9fd1c", + "id": "5fae2b81-8ac2-4d5c-a41a-7d42db92543b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -257543,7 +257543,7 @@ } }, { - "id": "d758c7b1-ee73-41b5-ba50-a4f16bc64ebb", + "id": "abeac412-dd2e-435d-9bbc-cdd3a7a39649", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -257586,7 +257586,7 @@ }, "response": [ { - "id": "db5369e4-3443-4abd-85f6-d678bb048690", + "id": "459d5f27-a286-44d7-840c-be39006132b5", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -257643,7 +257643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5124c395-055c-46b0-998a-1c1a51290a44", + "id": "0cbbb679-0589-462e-9a92-54465d0cb72b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -257700,7 +257700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "992d3cb5-0e81-4c8e-ba8b-24ac173c0fd6", + "id": "a2cf967f-c07f-4d15-8e77-6686675189f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -257757,7 +257757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b42be66-844c-48f1-988b-02d2aefea481", + "id": "d1ab27c8-558f-4f54-b39f-5eac5817905b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -257814,7 +257814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78f004d5-9dd3-4137-9423-1aa1a3607359", + "id": "81c6b2d6-1177-4441-936c-2a1f60f5921e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -257871,7 +257871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6b58f23-0f9a-46a5-89bc-1b569e8a7f3b", + "id": "3111458b-1cd0-41ae-9628-1bd40371647c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -257934,7 +257934,7 @@ } }, { - "id": "80c1ece2-e83e-487b-9842-6c0b80ffcb57", + "id": "0cc626e3-3cec-46f1-bb41-eb1382ffb192", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -257963,7 +257963,7 @@ }, "response": [ { - "id": "cc5683e6-4937-454e-ad20-b3720601b1b1", + "id": "d4a384c0-8254-4e63-8438-b9f4aa257bbf", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -258006,7 +258006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "645c5822-7f48-4927-9197-4c37149771df", + "id": "ccfcc471-0887-4bc5-8cad-a13cede7eb25", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -258049,7 +258049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aca30a5-0db4-4a2f-96de-07b2c9e783aa", + "id": "fbcbe0f8-dc15-438a-b752-7d772aa277e8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -258092,7 +258092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89b07544-be53-4b88-9b0a-0b716a0626f8", + "id": "120f102e-1251-487f-886c-2adc8d6b4f80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -258135,7 +258135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d8482c2-7e90-4c0d-a1ed-18c9a8da8f51", + "id": "870a3f75-78b6-4a58-af95-11c76b6356b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -258178,7 +258178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2fa1705-fdc3-4001-a2e9-ff15f643c8e4", + "id": "13640610-1d52-4cb0-a697-b25c1dd7997a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -258227,7 +258227,7 @@ } }, { - "id": "3615f4ce-fff3-4745-a1ff-7336017e4811", + "id": "027e28a2-cbff-4e49-a5a0-bc7a26ebca1c", "name": "Download violation report", "request": { "name": "Download violation report", @@ -258269,7 +258269,7 @@ }, "response": [ { - "id": "3a9b0a01-aa01-454b-8792-d960b36e93bb", + "id": "ff7f72e7-ca70-425e-aefa-490e15527e6f", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -258309,12 +258309,12 @@ "value": "application/zip" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "7b78cc1c-9978-456a-8332-5d17e111bac9", + "id": "a3102d9e-ef89-4b22-8b10-135d0506313b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -258359,7 +258359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcad05e6-caed-435b-8261-bab5b288edf6", + "id": "c89de006-d3e7-40f8-a6c9-ce2a2fde339b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -258404,7 +258404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a61ea680-3929-4a77-b80e-731589722b04", + "id": "135c72cf-1aec-4013-9704-2bdb93ca2e91", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -258449,7 +258449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "516b8243-c31f-496c-8019-7e8d591df970", + "id": "f1ea63a8-31a3-47d0-983f-ed8adc4ba6ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -258494,7 +258494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba2904d6-701f-4db2-ad61-27a8a266b21f", + "id": "f768c061-a0d8-468d-9235-e455b35bd7e0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -258539,7 +258539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17da681b-ee59-4f36-a848-33338949ae46", + "id": "0eda407a-507d-4084-9f5d-b6ebaab4012c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -258590,7 +258590,7 @@ } }, { - "id": "d6754559-6c3e-4fd7-9c64-08c54a92263b", + "id": "3979cf23-3a97-4f99-bc21-3369d0254eaa", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -258643,7 +258643,7 @@ }, "response": [ { - "id": "55438ff3-547c-407c-b1f0-35c19606ab25", + "id": "23de9e79-bbb3-490a-ba32-7565e6bfc49e", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -258684,12 +258684,12 @@ "value": "application/zip" } ], - "body": "veniam ex magn", + "body": "et dolore offici", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "19a4eb68-d701-4258-bf91-d8b8c0fbff3a", + "id": "c6024f0b-1ecd-4157-bae4-c7b8830def38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -258735,7 +258735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "419d57d3-f956-4eb3-8c6e-c92225cdcdcf", + "id": "6b18e058-5f06-46e7-814e-64f64a86be53", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -258781,7 +258781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3740ea6e-d94a-4d67-afda-73aa4d3833c6", + "id": "5b48db2a-7d73-43a2-82e8-04da336e7302", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -258827,7 +258827,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ac312f6-3821-49bc-b113-a9d71e42f9a1", + "id": "860be9a2-0474-4917-a8fa-df3c4ef7b795", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -258873,7 +258873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98a160bd-594a-4c35-9b5c-8841bcb15f3f", + "id": "e9546ab9-e0e0-4726-bf51-f1a166d226ce", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -258919,7 +258919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de6ec1a8-68f2-4219-b474-b74cda7e2416", + "id": "4d9c5ed9-655c-4672-8b52-e42ada01a90f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -258977,7 +258977,7 @@ "description": "Use this API to check for current \"separation of duties\" (SOD) policy violations as well as potential future SOD policy violations. \nWith SOD violation functionality in place, administrators can get information about current SOD policy violations and predict whether an access change will trigger new violations, which helps to prevent them from occurring at all. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nOnce a SOD policy is in place, if an identity has conflicting access items, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies.\n\nAdministrators can use the SOD violations APIs to check a set of identities for any current SOD violations, and they can use them to check whether adding an access item would potentially trigger a SOD violation. \nThis second option is a good way to prevent SOD violations from triggering at all. \n\nRefer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations. \n", "item": [ { - "id": "ea288886-bad8-4688-8ed0-f17f6fdb4c27", + "id": "8a52ee5d-df92-4e25-9000-df43db96378c", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -259020,7 +259020,7 @@ }, "response": [ { - "id": "820fc478-086f-4d1a-8f4f-1ad97b069793", + "id": "265b714e-1aef-4e83-9e41-8625a44637ec", "name": "Violation Contexts", "originalRequest": { "url": { @@ -259077,7 +259077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c6f96d9-9027-42c3-98f6-2fdfa8b02e9c", + "id": "a865e0c6-a89b-4601-826a-7721dc9a2c18", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -259134,7 +259134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca912d1a-2561-47b3-97f2-0719929b1662", + "id": "f93ff28d-2aba-497c-b282-7078c48c16c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -259191,7 +259191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "328d67e9-e409-4f79-9db4-b2f017c198d5", + "id": "038588fa-54e1-4e7f-ac1c-c11c7ac87c9e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -259248,7 +259248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0c1ef69-888e-4b1e-a7e8-1dc8a2919cac", + "id": "c3e83e5f-3535-4e84-8845-58ea321e8a6d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -259305,7 +259305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b21d8ea-6395-4084-8bc6-80c4373e884a", + "id": "6c2aa831-7416-4c70-bc89-13c3fd97f0a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -259362,7 +259362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b84bb551-1152-41d1-8d0f-8d9c6e4c5d57", + "id": "12d462ee-35cb-4b2e-b328-2678359cdaa5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -259425,7 +259425,7 @@ } }, { - "id": "e619b9d5-bf9f-4ae3-b1fc-9efe47ca5fbd", + "id": "d05eb19f-d0b0-4d68-bc7f-df48c82eff7d", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -259468,7 +259468,7 @@ }, "response": [ { - "id": "cb9895c9-ae7a-40fb-b619-530e39270683", + "id": "8bb50265-d87e-429f-bc46-877f9bc420c1", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -259525,7 +259525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0a16bb-1400-49d5-acf5-b52af5a68adb", + "id": "112c1832-24f9-4e53-beed-4a040567c5e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -259582,7 +259582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6a04fca-8b77-4cdc-a0e7-170db02d1903", + "id": "4e77c39a-8eb6-4c3b-8dd1-510982617c30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -259639,7 +259639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcddf17e-1d0d-4d16-8b97-d6dc030425bf", + "id": "db8abc5c-d004-4e1f-891b-7396b2d9d0ad", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -259696,7 +259696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "248066b7-8ea4-4a65-80c6-561b6fba9237", + "id": "0f160bec-0e24-407e-9790-556138c6fcbd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -259753,7 +259753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0aa508f-6f43-4460-9eb2-c0c6b1ed1530", + "id": "34e35f86-0724-4129-9130-155d8b3dcf41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -259810,7 +259810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "208e61cb-e7ae-4e88-932d-8413302f593b", + "id": "4b37be21-f904-472e-86ed-ebdd1a0ab002", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -259879,7 +259879,7 @@ "description": "Use this API to implement source usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.\nThis allows organizations to get the information they need to start optimizing and securing source usage.\n", "item": [ { - "id": "af12f6b7-7e00-4779-a9bd-f14fa0938955", + "id": "54983fe5-bc83-4463-acea-77c2c9a5024a", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -259921,7 +259921,7 @@ }, "response": [ { - "id": "e21436e5-f56c-468d-bc63-4236c0842c8a", + "id": "702bad9c-ff46-41d3-8601-130e783a3324", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -259966,7 +259966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa2136d-38f2-4fcd-9439-56d10a4a39bb", + "id": "2d8075f8-ab3a-4ada-b71b-3ca6a171bf37", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -260011,7 +260011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f7c9db1-ce77-4675-ab1f-7d6ad879792a", + "id": "c2b863a8-efd9-4756-85b4-78e6adcb51a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -260056,7 +260056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b2813b9-7ca8-4f7e-8c19-4e6b5ec02806", + "id": "087ebb22-2d50-4b51-9802-977ca6e2a9cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -260101,7 +260101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4972499d-8396-49f6-9bb2-e4ff568ce1b9", + "id": "ba4b5e9c-75f8-432f-842a-f09f538d3329", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -260146,7 +260146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "724f858e-67a8-4196-bc67-38395327da95", + "id": "57d9e0b5-e79d-4984-8d3f-d2436e6d15ea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -260197,7 +260197,7 @@ } }, { - "id": "796d26d8-eb48-483e-a098-e9c1be107f07", + "id": "ff42628a-1076-4c16-b06b-1fa16556f174", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -260276,7 +260276,7 @@ }, "response": [ { - "id": "6c600112-9b13-44e8-a957-2949d8c391fe", + "id": "6acc468a-386d-45f2-86a3-617f4979b9f2", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -260358,7 +260358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9ced1f4-cc88-485d-b79b-d11cd57f8cb8", + "id": "a0b9e761-92d8-4981-80ff-e1f6beef4519", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -260440,7 +260440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df7d7655-8933-46f6-8a8f-c96ae72ade7a", + "id": "366b8fe2-b54b-49fd-9f11-07f64ca0d722", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -260522,7 +260522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "021fe6ed-21c6-4ee0-a79f-ad9ae0f86520", + "id": "e5baade2-8991-4a2e-b44a-9ba84e47d262", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -260604,7 +260604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88a8cef1-e2de-41f6-9b7d-5c2049145bb8", + "id": "c0e9ab07-c026-4a89-af68-781fe8b9932b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -260686,7 +260686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49442245-35ba-49e0-9866-d42f2acc526e", + "id": "c7508057-eeff-4eb1-883a-a748354d650c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -260780,7 +260780,7 @@ "description": "Use this API to implement and customize source functionality. \nWith source functionality in place, organizations can use Identity Security Cloud to connect their various sources and user data sets and manage access across all those different sources in a secure, scalable way. \n\n[Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) refer to the Identity Security Cloud representations for external applications, databases, and directory management systems that maintain their own sets of users, like Dropbox, GitHub, and Workday, for example.\nOrganizations may use hundreds, if not thousands, of different source systems, and any one employee within an organization likely has a different user record on each source, often with different permissions on many of those records. \nConnecting these sources to Identity Security Cloud makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, Identity Security Cloud can grant the new hire access to all the sources they need.\nIf an employee moves to a new department and needs access to new sources but no longer needs access to others, Identity Security Cloud can grant the necessary access and revoke the unnecessary access for all the employee's various sources. \nIf an employee leaves the company, Identity Security Cloud can revoke access to all the employee's various source accounts immediately. \nThese are just a few examples of the many ways that source functionality makes identity governance easier, more efficient, and more secure. \n\nIn Identity Security Cloud, administrators can create configure, manage, and edit sources, and they can designate other users as source admins to be able to do so.\nThey can also designate users as source sub-admins, who can perform the same source actions but only on sources associated with their governance groups.\nAdmins go to Connections > Sources to see a list of the existing source representations in their organizations. \nThey can create new sources or select existing ones. \n\nTo create a new source, the following must be specified: Source Name, Description, Source Owner, and Connection Type.\nRefer to [Configuring a Source](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html#configuring-a-source) for more information about the source configuration process. \n\nIdentity Security Cloud connects with its sources either by a direct communication with the source server (connection information specific to the source must be provided) or a flat file feed, a CSV file containing all the relevant information about the accounts to be loaded in.\nDifferent sources use different connectors to share data with Identity Security Cloud, and each connector's setup process is specific to that connector. \nSailPoint has built a number of connectors to come out of the box and connect to the most common sources, and SailPoint actively maintains these connectors.\nRefer to [Identity Security Cloud Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about these SailPoint supported connectors. \nRefer to the following links for more information about two useful connectors: \n\n- [JDBC Connector](https://documentation.sailpoint.com/connectors/jdbc/help/integrating_jdbc/introduction.html): This customizable connector an directly connect to databases that support JDBC (Java Database Connectivity).\n\n- [Web Services Connector](https://documentation.sailpoint.com/connectors/webservices/help/integrating_webservices/introduction.html): This connector can directly connect to databases that support Web Services. \n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/docs/connectivity/saas-connectivity/) for more information about SailPoint's new connectivity framework that makes it easy to build and manage custom connectors to SaaS sources. \n\nWhen admins select existing sources, they can view the following information about the source:\n\n- Associated connections (any associated identity profiles, apps, or references to the source in a transform).\n\n- Associated user accounts. These accounts are linked to their identities - this provides a more complete picture of each user's access across sources.\n\n- Associated entitlements (sets of access rights on sources).\n\n- Associated access profiles (groupings of entitlements). \n\nThe user account data and the entitlements update with each data aggregation from the source. \nOrganizations generally run scheduled, automated data aggregations to ensure that their data is always in sync between their sources and their Identity Security Cloud tenants so an access change on a source is detected quickly in Identity Security Cloud.\nAdmins can view a history of these aggregations, and they can also run manual imports. \nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about manual and scheduled aggregations. \n\nAdmins can also make changes to determine which user account data Identity Security Cloud collects from the source and how it correlates that account data with identity data. \nTo define which account attributes the source shares with Identity Security Cloud, admins can edit the account schema on the source.\nRefer to [Managing Source Account Schemas](https://documentation.sailpoint.com/saas/help/accounts/schema.html) for more information about source account schemas and how to edit them. \nTo define the mapping between the source account attributes and their correlating identity attributes, admins can edit the correlation configuration on the source. \nRefer to [Assigning Source Accounts to Identities](https://documentation.sailpoint.com/saas/help/accounts/correlation.html) for more information about this correlation process between source accounts and identities.\n\nAdmins can also delete sources, but they must first ensure that the sources no longer have any active connections: the source must not be associated with any identity profile or any app, and it must not be referenced by any transform.\nRefer to [Deleting Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html#deleting-sources) for more information about deleting sources. \n\nWell organized, mapped out connections between sources and Identity Security Cloud are essential to achieving comprehensive identity access governance across all the source systems organizations need. \nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about all the different things admins can do with sources once they are connected.\n", "item": [ { - "id": "341fef89-a26f-40f0-9974-7bfec2ad6b85", + "id": "aec25ff4-3272-40e2-bed0-f18580aba86c", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -260873,7 +260873,7 @@ }, "response": [ { - "id": "759ff1eb-49e4-4a17-a9ac-c8bf01f596f6", + "id": "75887c4d-c27a-4549-acd7-db511f0b957f", "name": "List of Source objects", "originalRequest": { "url": { @@ -260980,7 +260980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f431cdab-cd66-478e-b60a-bd1acd23dc22", + "id": "f4be8e7c-ad7f-444f-8c7f-0db5dc2a1c52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -261087,7 +261087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c50d8bdc-5f21-40c1-81e9-6c437c359368", + "id": "25f1e60c-e274-4b8d-b2c7-1182db50f541", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -261194,7 +261194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60d46b40-b33c-418c-a74d-ba9b3fb04235", + "id": "4c1a54ca-4012-4ef7-8ad3-f246be47ee4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -261301,7 +261301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1eca966-e87b-4058-94fc-75eaf5972a97", + "id": "1698d50f-7c46-4796-a8b3-812c4c72b26d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -261408,7 +261408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4890232d-2add-4ffd-b5d5-9565dc9946e1", + "id": "0c0b3c41-1ffa-4092-82ed-1b1ab8a2ba60", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -261515,7 +261515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbce2122-2177-4a20-8bf9-eb8ee1f731b4", + "id": "0e3c9061-a53f-45df-910f-3c0ad4e19ac3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -261628,7 +261628,7 @@ } }, { - "id": "f6fd4c22-73ab-49b3-ba89-43b83000e631", + "id": "837d1606-442e-4c92-98b2-b7d7a14e8e12", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -261680,7 +261680,7 @@ }, "response": [ { - "id": "1b450cdb-2cf5-4be4-96ca-44c8b125ed83", + "id": "addf8cab-2b1b-4dd7-88f1-07e59fd66abc", "name": "Created Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -261746,7 +261746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23508657-24b4-42d3-ac8d-f35e506bdd0f", + "id": "d8fadc8d-f87d-47ac-8f3c-66c238512745", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -261812,7 +261812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11b616cd-deec-4451-add1-51f5e8211ffd", + "id": "b6d64be1-b6b9-406f-8066-4da35ab760df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -261878,7 +261878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6232732d-e45e-4e34-a8a5-c063d7c7b500", + "id": "f492dd63-3424-44fb-a1c1-82d687ecdf99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -261944,7 +261944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a019e8a7-0e0c-4701-8be2-501823e93b93", + "id": "df5f4d01-12b6-452a-b274-649f063f37ac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -262010,7 +262010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5c1b5ed-81b4-4e76-a838-a4d06ca3beb8", + "id": "d6e5e171-eb2f-4c92-aeef-92ba4681c411", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -262082,7 +262082,7 @@ } }, { - "id": "5b3a7040-a64c-4841-ab35-e67f8c0f210c", + "id": "2d119e89-85cf-418e-a36e-f8aee3773c76", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -262123,7 +262123,7 @@ }, "response": [ { - "id": "0e5cff23-4d17-43eb-ac14-3cf67a956f3e", + "id": "3c150cfe-46ff-45dc-98dd-f1db08853731", "name": "Source object.", "originalRequest": { "url": { @@ -262167,7 +262167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0c031c3-732e-47ad-b239-e070a0a65648", + "id": "16a4b019-7e4e-4109-9304-e24f2482c2b7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -262211,7 +262211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffae2284-2f25-4e59-afe5-60a297e8b88e", + "id": "b178d4de-6a9a-498d-acc7-dec22b4b9fe8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -262255,7 +262255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1d41131-4e01-4230-a569-ed191a449852", + "id": "41e2d5de-1814-4214-bfb2-c2722693abb2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -262299,7 +262299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74399c10-ec2d-4c03-909f-4930024b6181", + "id": "53218e55-07f4-4c85-baa0-0faabd5cc3e0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -262343,7 +262343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9529d89-2cf4-4cad-838e-049ac3c188e6", + "id": "b4494d09-b162-4bc7-b1df-0645ea9d98c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -262387,7 +262387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54c1026b-929d-4a30-b876-54e911165f74", + "id": "92ffb81a-8b55-4664-b727-7aa8134878e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -262437,7 +262437,7 @@ } }, { - "id": "9e1606cc-7ff2-49e1-bb55-8e1208f0be4f", + "id": "4a4f7fbf-8ad3-49dc-9282-47e81a72ce5e", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -262491,7 +262491,7 @@ }, "response": [ { - "id": "3ccadb68-297d-4e9c-983e-febdcddcc9e4", + "id": "dcb12b34-556e-47bd-88fa-c8b6ee045020", "name": "Updated Source object. Any passwords will only show the the encrypted cipher-text so that they aren't decryptable in Identity Security Cloud (ISC) cloud-based services, per ISC security design.", "originalRequest": { "url": { @@ -262548,7 +262548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cb64008-46fd-49d8-805d-e9c53b9dc7fb", + "id": "97b5d43c-6d75-4060-baa2-488d81e80356", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -262605,7 +262605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f3497bb-3196-4cfa-b8b6-68c5589ada71", + "id": "d941d077-2e74-42c4-bdfc-3fa7ff127258", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -262662,7 +262662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cebdb0b-b979-4c86-8ff4-54087537b4c7", + "id": "9692102f-91fc-4dc1-abc2-3b36c02a583d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -262719,7 +262719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16092011-ce1d-4baa-9aaf-de3d65bfe351", + "id": "7ca19960-74b9-4523-9d79-4d3dcd543e08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -262776,7 +262776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f03667c4-d9f7-4276-97c8-0a85ef421cc1", + "id": "ebbd9662-aa31-40bf-b1d7-4ba7ddd94f26", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -262833,7 +262833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "602189f1-fabc-44fd-b0ab-4643df34453e", + "id": "54cadc56-11f0-46bc-8288-5989a45f420b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -262896,7 +262896,7 @@ } }, { - "id": "b40769aa-2eda-404a-9580-003ae3f720f5", + "id": "556f3ea9-b04a-4b3e-80c7-3d6c345c097d", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -262950,7 +262950,7 @@ }, "response": [ { - "id": "fae17c17-207e-46a9-b2b9-81ebb7e7b56b", + "id": "55c768d9-6e80-4705-a5b4-f0580ebcd08c", "name": "Edit the source description", "originalRequest": { "url": { @@ -263007,7 +263007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9516c1e3-b417-419f-9292-cc9c6b71f5e3", + "id": "1b36f21e-0e43-4040-8ace-2621a8a23777", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -263064,7 +263064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1ee07f1-65e2-42f4-80e8-6a131f6d4098", + "id": "42e5fc4a-ad86-498a-a992-4b3f15999ff7", "name": "Edit source features", "originalRequest": { "url": { @@ -263121,7 +263121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19847ff8-5ec4-46d2-bcef-1aed37c24fa6", + "id": "db1cfd09-d271-4f43-b3c7-99ea2e2cc0c0", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -263178,7 +263178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3202fd2d-9528-40d0-ba87-0b9424a91d9b", + "id": "314af182-41c0-4e4b-ae8c-3a43cbbf24b9", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -263235,7 +263235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83a559e6-7364-4323-a7d9-6118c54f7c39", + "id": "718eaaf7-c306-4dca-b304-e3b285009585", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -263292,7 +263292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64b87bd5-3541-474f-9ef6-6c3c199e1773", + "id": "9505663c-8528-4485-8bbb-5640f20ecb47", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -263349,7 +263349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b211045-aaf9-430a-85d3-4f8ea3972554", + "id": "841173fb-c5a4-4b3d-911d-fba4e3ae299a", "name": "Edit the source description", "originalRequest": { "url": { @@ -263406,7 +263406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7c23840-63ab-4b91-8725-d0b97ba054ff", + "id": "00d7759a-a885-4146-bf6e-d24ec9e33ba7", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -263463,7 +263463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "808e105d-79b6-4b14-988a-bc26b95ad77e", + "id": "04167ad6-5a2e-4634-9d5e-a3b1b6b8abb8", "name": "Edit source features", "originalRequest": { "url": { @@ -263520,7 +263520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1a3b4ee-7b0b-4f70-a2c9-a5a2d1a7dca0", + "id": "7f129ca4-77f7-4af9-ac9a-1bd7d5d5c1b5", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -263577,7 +263577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db8f6148-1281-4f1b-bf35-ab48563dea67", + "id": "2f5a0e0b-2259-43fd-a1a7-f22ad01e379f", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -263634,7 +263634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48ad11f8-ef47-4bdf-8cf9-2c5c07de901b", + "id": "46c207a0-e022-4748-b720-d8535e2a141a", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -263691,7 +263691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5356f5a0-345b-4c87-9d09-ba508e95c01c", + "id": "b2ddf602-c984-490e-b240-951522f60708", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -263748,7 +263748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a73d0956-5f42-4880-8914-5edb233422e1", + "id": "bff3d186-f577-4658-a124-b58d689a91bc", "name": "Edit the source description", "originalRequest": { "url": { @@ -263805,7 +263805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "829f9f1c-24d9-4ccb-8a57-7a51adb85da8", + "id": "f3558820-839d-4f92-896b-acb9a5397bb0", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -263862,7 +263862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0af50c08-eec7-4223-a1ef-44e4885ceccf", + "id": "3d11e073-89fa-45f3-92fb-58679c06f159", "name": "Edit source features", "originalRequest": { "url": { @@ -263919,7 +263919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d7a5560-48b0-4baa-8157-4dec2d1dceb4", + "id": "39043b88-ecf3-4bf2-bef5-127403d9e0e7", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -263976,7 +263976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18c3afa4-a84f-427a-b35d-4a9a9f586ee7", + "id": "14d3ba55-4cb6-46b3-967d-1be4cb7c4acb", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -264033,7 +264033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "355f819f-e3e8-4b13-88d7-bb6f6e544275", + "id": "4300ed4b-d349-4eff-b8cf-ecd18d8cfb6c", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -264090,7 +264090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62ebc7e4-d422-4aaf-9e4d-025d7aa1e094", + "id": "6829c36c-fc71-4dcb-919e-19ab4216d5d9", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -264147,7 +264147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4482aaae-2bcf-4882-8368-52f64a264fe9", + "id": "c43690dc-7aef-431b-b4b9-7e3ac6320968", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -264204,7 +264204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "817e5c9b-8e81-4a93-8ca8-9dc11e153b23", + "id": "31b30516-638b-4995-9651-62d7889fb589", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -264261,7 +264261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fcb4fe1-8147-4f09-abb5-6f6c2bc06257", + "id": "2ac998ab-191f-48f6-8f13-5b9e8f5cd09e", "name": "Edit source features", "originalRequest": { "url": { @@ -264318,7 +264318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ace8545-18d9-4918-a46d-e17c3ed7cf4a", + "id": "f913e7dc-5cb0-4f2e-b472-d6cc43d841ff", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -264375,7 +264375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96731c0a-1ee8-454e-8f35-ba1842226c52", + "id": "a5b68cde-0be3-4673-868f-e67e3775521a", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -264432,7 +264432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3c95b47-8826-4c1f-93b6-4834cbe92f50", + "id": "af811a55-f9d8-4826-927d-742e65a7791f", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -264489,7 +264489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a27d53ae-9587-4149-9411-b12368b8a655", + "id": "bdcba1e5-4a62-42fc-9370-3cb1135f0213", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -264546,7 +264546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b13bc62c-cbd0-47e7-8b28-843e470f14e1", + "id": "064d621c-7d3f-445d-8ca7-c1f8c1f84812", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -264603,7 +264603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe74dde0-6315-4dd4-b9e5-fad002ec5b66", + "id": "c8579940-2f1a-412a-bc23-73e3ba866e7e", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -264660,7 +264660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35ee6b74-97b1-4f72-ab81-ca05b262264e", + "id": "07a63570-3fa8-4ffb-add0-09bbfb18451b", "name": "Edit source features", "originalRequest": { "url": { @@ -264717,7 +264717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b090ca41-63f0-4985-8f77-af75f67c8a9b", + "id": "345bc6c0-9386-4a11-8e12-499802bf5805", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -264774,7 +264774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0e4075a-57b9-4eb5-8298-7b387c6a526d", + "id": "a9b17aa6-522d-4ae5-bf59-05cb302fd20f", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -264831,7 +264831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ef0fb4-dc69-447e-b9d8-cd5f28e8ce0c", + "id": "2ade2776-f71d-4551-82d7-70945ea8c825", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -264888,7 +264888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e80d9540-426c-43cd-a593-a99beae31773", + "id": "5b3f99af-7a1e-4bd8-a409-126b07eb9d1a", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -264945,7 +264945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72edd748-5a14-41c7-83d8-943d8000e166", + "id": "466e5bf9-4867-4a69-9451-b01c9d7d8508", "name": "Edit the source description", "originalRequest": { "url": { @@ -265002,7 +265002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3499567-1d72-44d8-8901-adf53b6369c7", + "id": "7fa15d2b-9097-41e6-9414-39c0e17e8beb", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -265059,7 +265059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2364d2d5-199f-44ad-ae54-36a45824118e", + "id": "7959f8f2-d64d-42ac-ac82-40097a173364", "name": "Edit source features", "originalRequest": { "url": { @@ -265116,7 +265116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a265b87-9084-4496-afb7-0fe7a4bca1eb", + "id": "9872af45-5c9f-4db1-9019-08d2a0894b05", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -265173,7 +265173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ebfddfb-e38b-43b2-8da9-5acf168af966", + "id": "673d310b-2087-4088-a0c4-af76cafda240", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -265230,7 +265230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a72289d9-d3a9-4110-8a3e-94284ce25da2", + "id": "fb0cc11f-7051-4574-b654-d2c78c6d53ab", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -265287,7 +265287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8c9ba63-1181-44da-8fc1-7f7e9bd0ec87", + "id": "3320e3df-c337-4b2a-910b-413591a7a36a", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -265344,7 +265344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7272dea6-4961-4248-a525-0fdef8432370", + "id": "652cb216-0ee2-426e-89e2-a29cb7b3acb7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -265401,7 +265401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c36197a-bae0-41e0-a581-332af9b41b7b", + "id": "a250cf37-38ae-4fd6-b6e2-d984330241c6", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -265458,7 +265458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d20d33-a360-4917-8e07-7fc40395ce69", + "id": "4537ef66-b807-41a7-bea4-d1f061ab4029", "name": "Edit source features", "originalRequest": { "url": { @@ -265515,7 +265515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e596767-ae5b-4692-8bee-fd2f42b7b802", + "id": "006b2aaa-594f-46dc-adeb-af084c7f21d2", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -265572,7 +265572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9075f262-4ae9-46c4-9ace-86cd0bcf2432", + "id": "31440481-0803-44a6-8656-9aaad6d0a87e", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -265629,7 +265629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc799930-4950-409e-a98c-0a340a5c2840", + "id": "69cff86d-7dbc-4b97-ad7a-0c701f401e8a", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -265686,7 +265686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c532452d-32ad-471f-9509-6437f8a24877", + "id": "a1d0aff5-cd48-4732-9438-02808ab706ac", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -265749,7 +265749,7 @@ } }, { - "id": "4491257f-1d62-4a57-9bbb-dfc7eefe3380", + "id": "4f07aebb-3d92-4d2f-96f0-fbfe14ac17e2", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -265790,7 +265790,7 @@ }, "response": [ { - "id": "5194a596-8259-47b4-b6a9-21ec141a6b54", + "id": "d81eb004-7776-407e-bf91-0abc32ce36d2", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -265834,7 +265834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea7e21be-0f85-42e8-8c9f-e6d9213d5a56", + "id": "6eb6b8b0-17ac-4aad-8c8a-4c0e2b103a26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -265878,7 +265878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7919b34a-eb59-412c-9681-fb23bc80d59c", + "id": "894bb411-d255-49ad-a609-528135484aa2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -265922,7 +265922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ed85dde-b837-4f42-839e-d26147b1f214", + "id": "ec053706-6f5f-4c78-be71-84904739c53e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -265966,7 +265966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dc2e1d3-d686-455e-93a6-8d8737aede06", + "id": "7c366908-0370-4ce4-9ad6-e7925a067feb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -266010,7 +266010,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c444c6be-bec3-4206-bd29-0af30d3a77e7", + "id": "41e4fce7-83fb-4836-9d35-7de440ef685d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -266054,7 +266054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "412533d3-fe64-4c27-a5ff-c31e6c0b2602", + "id": "56960481-94da-4dd3-9010-5afa35026381", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -266104,7 +266104,7 @@ } }, { - "id": "6753d182-6989-46d8-9960-c8d1252da059", + "id": "b8e70a90-18ba-4565-a24e-24d33968be7c", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -266146,7 +266146,7 @@ }, "response": [ { - "id": "f9dae657-d236-439d-9eec-3ff33ca95884", + "id": "14ed4fc2-8794-4ed2-a7c7-70cec42c2179", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -266191,7 +266191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0aafd969-c08e-462e-9a45-8a50b876164e", + "id": "1920a347-cad5-4ab5-a51d-a740b5367be1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -266236,7 +266236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49d3f428-209d-47e8-8b4c-df7bbcaeb6cb", + "id": "6beb5bf3-bd91-4528-8800-6a28ca9fb520", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -266281,7 +266281,7 @@ "_postman_previewlanguage": "json" }, { - "id": "947a6c50-54fe-4860-b1ad-7290f979b17a", + "id": "d3db85b3-d845-410d-afb9-01c411f23542", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -266326,7 +266326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaa2b400-86dc-4554-aaa8-f2146f9b7f1c", + "id": "7c7df7b4-34f6-430a-a04b-a09f9fdeca88", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -266371,7 +266371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ead52aa2-81fc-4b9d-acb5-23f44155a54f", + "id": "a75f3622-d4b1-4e83-b3af-39c01f76242f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -266416,7 +266416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46f94554-17e9-4a9f-9794-5026956995b6", + "id": "c391bab2-3649-4e92-a864-a514e5193fa4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -266467,7 +266467,7 @@ } }, { - "id": "b2010742-bcbe-4752-8705-140fed0d6831", + "id": "0aadccdc-fe7b-478e-8e5c-343442b4f3ba", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -266522,7 +266522,7 @@ }, "response": [ { - "id": "6527591c-5599-41ae-aa33-4e9ab2a9559e", + "id": "6b58d380-95c8-4732-acc4-efb4f27ede9a", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -266580,7 +266580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81bc9561-b9f8-4eda-af2b-a87c5fb42906", + "id": "6bc524a3-71cf-4240-981e-ebbda1e20e50", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -266638,7 +266638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3925129-245c-4be5-bfca-a4d1619efc7d", + "id": "d171384a-fc11-4296-a55c-0a877cf84dab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -266696,7 +266696,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d403bf44-c104-4708-ae8b-69f26141f940", + "id": "718757d3-90ad-4a14-8ab6-9ebb705bf3d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -266754,7 +266754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5dcc7194-bdca-43d8-a716-020b22f99327", + "id": "9b0818af-6bd0-4f05-b4e1-333e27d7503f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -266812,7 +266812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5c1e472-11a6-442e-92d6-6501907a0c74", + "id": "a260fc77-529f-42ae-997e-46b7c824403a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -266870,7 +266870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f6a3fa0-45cd-40e8-b74f-39a33ae3d5ce", + "id": "7e9fa3d6-3a2d-4d1b-8dce-8273f507ab62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -266934,7 +266934,7 @@ } }, { - "id": "bd8651d5-e11a-4c3d-b5d4-ba0ba41e4451", + "id": "e5cf040d-68a1-452e-9468-2f3de045a9f3", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -266987,7 +266987,7 @@ }, "response": [ { - "id": "00724e64-1a6e-4788-92e0-5f53bf9b627c", + "id": "943afece-e8e3-467a-a601-b4dbedf101c5", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -267033,7 +267033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "362a1a7a-aa6f-449c-a456-f7c0ce0a0f57", + "id": "70e99cf1-86ea-4217-b066-50ce6787c792", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -267079,7 +267079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc1cc4e6-fe04-4f11-a438-26b64f1ecce1", + "id": "2f83584c-df6e-436a-8994-cde1865f24bd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -267125,7 +267125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2038c150-d403-4371-b974-7d6d271b6ba7", + "id": "fa9a4e40-1374-486a-abb3-5e4dc1e626cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -267171,7 +267171,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bb0a0a6-d08d-4f7a-9110-c551d1115249", + "id": "f352c9e2-ba2b-4063-bd7a-430f35815dcd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -267217,7 +267217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc5144a-232d-4659-86dd-e801b19d763f", + "id": "5da3a433-acf9-4dc3-930c-c19fe6205368", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -267263,7 +267263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "922f2888-0725-4d61-adc7-729a0af84195", + "id": "ce6aefce-a148-468b-b6e3-207501a88f34", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -267315,7 +267315,7 @@ } }, { - "id": "9ffb5215-2683-40fb-b391-da3c47d85559", + "id": "61563474-c7ad-41d1-9033-672236be1e6e", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -267381,7 +267381,7 @@ }, "response": [ { - "id": "793ffa97-4a48-48d6-b82b-2cccd7bb7159", + "id": "6c5f8b88-576d-42cc-87e3-061ddf667896", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -267440,7 +267440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ba9d88-9561-414f-87fd-22dbcf8a4be9", + "id": "b5c95aa4-0531-458f-b0ca-97f06afd808b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -267499,7 +267499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe0c5b9a-f763-4a19-bc8e-312afa0e9e31", + "id": "43059fe8-8ea9-4ec9-96d6-a4ff18c29c70", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -267558,7 +267558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d725382e-74f1-43b4-9e6a-dc38a432700d", + "id": "21a9f669-5cc0-41c8-9445-3a27b36bf6ee", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -267617,7 +267617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e028dd0-a4f7-43f3-8931-92fbd6303dc3", + "id": "87a5eac5-dcc9-4d29-9c58-f33c26570ca8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -267676,7 +267676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bc4b4b8-e26b-462b-bee7-f442164cadb1", + "id": "21c005b8-6e1e-4072-b2e2-513dab26954d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -267735,7 +267735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f56e21aa-8352-45ee-9037-aefde4d981b2", + "id": "eec9aa0a-55ba-4eaa-8743-2daa45e956a0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -267800,7 +267800,7 @@ } }, { - "id": "5b6079a7-b9b4-42b9-9b0b-fd75960d700a", + "id": "f99a7aa0-b802-4f7f-9569-58bf1ebb28b1", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -267866,7 +267866,7 @@ }, "response": [ { - "id": "aec4b046-aac9-4c64-a251-57d6c9db4208", + "id": "15951017-66cb-4013-8d48-c07af8b87777", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -267925,7 +267925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f187d6d-aa8f-4791-9f9c-feb4aa6a4c21", + "id": "b727049d-34e8-4b31-98f1-a2e6cb7cc6e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -267984,7 +267984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "935b58d5-d9cc-46a8-bfcf-18bd0872fff0", + "id": "116005fe-5ceb-45f4-9998-26c42b4ee643", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -268043,7 +268043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc1b201e-f381-4464-b8bc-5f119aee0cf8", + "id": "fc1ab4a6-7b47-4804-8ff7-cb881d8076b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -268102,7 +268102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a70f9dc-db94-4db8-b7b6-dda8926b5bf9", + "id": "d3a4a3d7-cbdf-4b20-90ef-4f48f2dc0a79", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -268161,7 +268161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39ae0a92-4670-4388-b393-33214ac400fe", + "id": "37ed8294-e320-4ed4-ad73-e9b3093a89e3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -268220,7 +268220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "725e4862-d5f3-4d82-804f-2910d47c5a2d", + "id": "dc24ec1f-99fd-4345-b595-49ed73b7550d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -268285,7 +268285,7 @@ } }, { - "id": "3776a4dc-a5c4-4735-8029-7116b3627b8a", + "id": "76e0dce2-5ab1-4e28-a0ce-690aa51ec091", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -268338,7 +268338,7 @@ }, "response": [ { - "id": "86a52ab0-07ea-4c98-b2ce-09fe1fddd882", + "id": "eea670c2-55b3-4986-b4dc-3b88b8eff981", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -268374,7 +268374,7 @@ "_postman_previewlanguage": "text" }, { - "id": "26909d61-e303-4567-806f-d6619b5f2873", + "id": "e88e939d-9492-4c65-aa7b-8d2dce77f086", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -268420,7 +268420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b78b2e8d-c66c-4fe8-aa71-4263530c4b53", + "id": "24c29433-f125-4bde-bad4-d1a2ada92847", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -268466,7 +268466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a6f052d4-98cb-47bd-843f-b92e99ad9616", + "id": "bd10e0a1-306e-4191-a4ca-0d5b1e83a6c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -268512,7 +268512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d1a004f-b006-4c4a-a4f1-ad91c40ba11e", + "id": "670ffc75-1301-478d-982c-8179f1f831bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -268558,7 +268558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dc2a175-e414-4fe6-a6ca-6ae7980066ef", + "id": "d56a976d-331d-4c55-b213-9bb5d71ca7cd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -268604,7 +268604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77ee801e-bdb2-4855-885b-0d7e9b597ba6", + "id": "4d80973a-bc02-4fd0-9c61-2e9b4d8df636", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -268656,7 +268656,7 @@ } }, { - "id": "8f51f6a9-8dc4-4825-b754-7d1414130413", + "id": "ff03fe50-f4d8-4df0-83ba-5d8b74a47c1a", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -268712,7 +268712,7 @@ }, "response": [ { - "id": "951b520b-f88c-43df-b4f9-d7858eb491db", + "id": "8313324e-4774-4585-a19e-a0ea8be07dd3", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -268771,7 +268771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "767a58e6-1072-4ec9-b30e-bb3074c6d17d", + "id": "ea39fca8-2cd5-496c-a23e-e23cdb153a70", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -268830,7 +268830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f3d1e5a-7bca-4543-a725-67ac327d3590", + "id": "e87b4681-d98e-4323-9f9a-84d130b2ca9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -268889,7 +268889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcad04e0-18f2-4a67-b2e1-2194ebf07323", + "id": "c5cc7da7-244f-46e5-8dea-82b6bc8a9fed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -268948,7 +268948,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6664c3c-b364-4697-8b23-d553b786281d", + "id": "5af67323-0e8c-426c-9880-5a7ddba41de1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -269007,7 +269007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4fca189-6eeb-4e9a-9dbc-aac96229410c", + "id": "ef0b5ba5-1bd7-46dd-b903-8cf2442afcad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -269066,7 +269066,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b7ea2a5-cd05-4b5f-a7e4-3a957ab098f8", + "id": "0c5a7ab3-387b-45b9-8f2f-ac2b75df38f5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -269131,7 +269131,7 @@ } }, { - "id": "0fb7e8fb-c8c3-4e45-9342-9cca7ec69320", + "id": "4f2359ad-4b40-4d9b-8bca-0744213f742b", "name": "List Schemas on Source", "request": { "name": "List Schemas on Source", @@ -269192,7 +269192,7 @@ }, "response": [ { - "id": "80615600-a226-401b-928a-1cd776145fd9", + "id": "6eed7157-6e04-41c8-b4d8-22f96d4c3a8b", "name": "The schemas were successfully retrieved.", "originalRequest": { "url": { @@ -269256,7 +269256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38880e1e-c96b-42a1-bcd0-0dbbcad6e9bc", + "id": "3e0177bc-69cd-4423-9287-818d809b4382", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -269320,7 +269320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d5ea1b-9325-43fd-bab4-3e87efdf1a16", + "id": "52c2a860-4e18-46e8-ad65-7db1a92b3c8b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -269384,7 +269384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05bc7ba4-2ba3-4962-96d6-a74c9a988276", + "id": "ce17c661-c47f-47ef-bbe3-2d520b59ac82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -269448,7 +269448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07ddeafd-ef48-4867-8427-41940e381663", + "id": "ed7526f5-d128-4572-be5a-72c5cb3f046b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -269512,7 +269512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d72a679b-2cd7-44b5-8ecb-546d92943a88", + "id": "6b339632-193d-4984-8c19-3bc7e4c4712d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -269576,7 +269576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dea33818-127c-4488-b16f-f07c12e8e70e", + "id": "2020b2bd-1e1c-4304-b2e9-8b73c7db8ec3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -269646,7 +269646,7 @@ } }, { - "id": "ef59c682-f306-4057-98cb-2bdedbc66347", + "id": "e4558e07-48d4-4179-8913-dda54ff77e83", "name": "Create Schema on Source", "request": { "name": "Create Schema on Source", @@ -269701,7 +269701,7 @@ }, "response": [ { - "id": "eb106c84-9cd7-4c7f-958d-0ee93db4be22", + "id": "7efc3fd8-c8dd-449b-846e-bfcd81496976", "name": "The schema was successfully created on the specified source.", "originalRequest": { "url": { @@ -269759,7 +269759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38551ea9-1ed2-4de5-a477-06ff05643a78", + "id": "72269261-901f-49e1-869b-357d02381f8d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -269817,7 +269817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57e98619-5f23-4658-8b59-d98b0757492f", + "id": "b65e3ea8-827e-4d9f-adde-dacad9807a66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -269875,7 +269875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "224a4238-6c5f-4f28-ad06-bdf9d82d3376", + "id": "83db3351-6cae-4523-8c13-cbbc36744f3d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -269933,7 +269933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1c4c6e7-a94e-488d-b715-fa409bd227ff", + "id": "95f33166-771d-409e-9c65-0f5932dc0b8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -269991,7 +269991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b48b7c8b-1e5d-402c-9369-fac7c5b8692b", + "id": "72d1295f-3d6e-49c6-b269-a0d8952effe5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -270055,7 +270055,7 @@ } }, { - "id": "17291a9c-241a-4614-ba03-26eff9599f8b", + "id": "767bb8ec-2662-4707-9522-570f248f7305", "name": "List Schedules on Source", "request": { "name": "List Schedules on Source", @@ -270097,7 +270097,7 @@ }, "response": [ { - "id": "fb9994e2-654d-4dd2-af63-09d1162fc7b9", + "id": "dd48d411-ceef-4826-b08a-af848ba31d8a", "name": "The schedules were successfully retrieved.", "originalRequest": { "url": { @@ -270142,7 +270142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b55fcff-0f10-4f3a-8704-d029f0216888", + "id": "2d3396b5-0fb7-4849-9db3-287db1a62470", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -270187,7 +270187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ce73aec-edcf-4aeb-9240-49da8dfa3625", + "id": "cdd50294-46b3-4e95-9e49-743507cad3d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -270232,7 +270232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e57ef693-a5d8-439a-9043-6c0bcf46100a", + "id": "e33017ce-f002-48d8-bb11-639836650ecb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -270277,7 +270277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46b75fe8-be9e-42a7-8064-3d8e9202ee4d", + "id": "76de25d0-abe7-4da8-b308-3e39a7355891", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -270322,7 +270322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60cc6e4d-e7ba-4e25-8c4c-dd1e095e1646", + "id": "dbbccb22-85ce-4481-bd15-a34f28bbc19a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -270367,7 +270367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "396ecdd9-68ab-4097-957c-6a84b9613fe6", + "id": "41fc06c6-652d-4d45-98fb-f06a8af43a60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -270418,7 +270418,7 @@ } }, { - "id": "bee12642-39d9-4c8b-a1fc-ab41d50bd78d", + "id": "1115c71c-69f0-4dcc-9913-87d99321e0f4", "name": "Create Schedule on Source", "request": { "name": "Create Schedule on Source", @@ -270473,7 +270473,7 @@ }, "response": [ { - "id": "38dcb8a9-a3fb-485d-b6ae-dba455915218", + "id": "16400326-f54f-4555-ac3d-c3cc0749382e", "name": "The schedule was successfully created on the specified source.", "originalRequest": { "url": { @@ -270531,7 +270531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0c936c3-d5b2-4d30-9c02-907063a8d19b", + "id": "b8b25574-ca7d-4a66-ba0a-86cb889397e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -270589,7 +270589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa26bff5-696e-4faa-bcee-7324f502da8b", + "id": "23a948c4-3cd5-49e8-8611-e83277d994f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -270647,7 +270647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea0387db-9dbd-4479-9d1b-272d2adbd672", + "id": "e3c1004b-c47c-4cbf-a6c6-e43f054f0778", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -270705,7 +270705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ccdbc1f-4f92-4d20-86d5-3c9da4c551b3", + "id": "c19f18de-bb76-4c5d-a9b7-83d0a1a51d4c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -270763,7 +270763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceee4389-e85c-47f7-b9f7-86f98c13cc20", + "id": "9d504ca0-04b4-4e68-b6bf-21a6096968ba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -270827,7 +270827,7 @@ } }, { - "id": "5ff72ca0-7376-4f70-b84a-a28ee7582d22", + "id": "84d96587-f401-4577-a51a-5a7acf3e137b", "name": "Get Source Schedule by Type", "request": { "name": "Get Source Schedule by Type", @@ -270880,7 +270880,7 @@ }, "response": [ { - "id": "40537602-4354-4615-9ce4-89edd4ea6d95", + "id": "d8128b64-49e3-4a7b-8e8d-4b2b13dfe7c7", "name": "The requested Schedule was successfully retrieved.", "originalRequest": { "url": { @@ -270926,7 +270926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4aa1c796-5751-4056-8bcb-e7df1949f5d0", + "id": "a5bc2a4b-447d-4063-babc-4e72bc251a58", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -270972,7 +270972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34d13ec8-4ecc-4125-bf97-fdd902db8ea8", + "id": "4f13fe90-06b3-4643-8626-680152debd95", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -271018,7 +271018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "856b655a-5846-4bc7-bb1f-1db77ffeb08d", + "id": "78b28d90-ac70-46e7-949e-703bc99eaea5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -271064,7 +271064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74eaa506-2121-4914-81a1-fa99f8513941", + "id": "2c75f1f9-cde3-4dff-8ea3-db902457196d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -271110,7 +271110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef971633-af17-4206-bf0b-543654e00564", + "id": "fe2cbb02-e1d0-400c-8431-45e5bf62c950", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -271156,7 +271156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf140bdf-0d59-481c-8f6b-dca3f4a8494a", + "id": "164c2def-bcb7-4f5d-afff-aa056bb543f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -271208,7 +271208,7 @@ } }, { - "id": "086dde37-c866-4869-a207-7fba38c19454", + "id": "99090c37-3269-4fcd-8f1a-fe3b174f9fca", "name": "Update Source Schedule (Partial)", "request": { "name": "Update Source Schedule (Partial)", @@ -271274,7 +271274,7 @@ }, "response": [ { - "id": "d2bab098-d0ba-45c7-8c8b-47db4b7fe45d", + "id": "bbe34d63-f0a3-411c-9c51-5d00241adc41", "name": "The Schedule was successfully updated.", "originalRequest": { "url": { @@ -271333,7 +271333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ce7153-bb5d-4182-a9cf-1e0b6bb28afb", + "id": "32d94946-8169-4bd1-a9d9-6b7a39fe67da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -271392,7 +271392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71f690cb-7a1e-4632-ab13-58e69c6a5ade", + "id": "e3540457-c1af-4d94-86fb-d79493738757", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -271451,7 +271451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b50a4cba-7d33-4a2a-8c5c-d3eb59178155", + "id": "b0bf3aee-67e4-4b1c-9df0-014374c8edbd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -271510,7 +271510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e12c93-e895-4dba-92e4-1ff7bc0c9992", + "id": "0d628c8f-19d9-48b7-a418-735073f9d811", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -271569,7 +271569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77f35769-7d7d-4e9f-83b5-7b2fdfd1985b", + "id": "ec6dd621-fe99-44f2-9c65-723caf692f88", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -271628,7 +271628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d81e62ee-b5db-4057-b865-277370993a59", + "id": "9b20b151-9253-417d-9964-5d8b7c8efafa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -271693,7 +271693,7 @@ } }, { - "id": "09c8e5b1-bca6-4ae8-95d2-768f1cf4a4f9", + "id": "a96bb516-b4e4-4249-b167-c46d389918ef", "name": "Delete Source Schedule by type.", "request": { "name": "Delete Source Schedule by type.", @@ -271743,7 +271743,7 @@ }, "response": [ { - "id": "b916c5a5-6d0f-4e9d-8c05-33564f960006", + "id": "c5c5db5b-08fd-40b8-b310-85429865750e", "name": "The Schedule was successfully deleted.", "originalRequest": { "url": { @@ -271779,7 +271779,7 @@ "_postman_previewlanguage": "text" }, { - "id": "42b08514-fe9e-446e-be75-86add575c150", + "id": "793848e7-09a1-44e7-aef8-ea2653540946", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -271825,7 +271825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1bd367e-194e-44c6-ab56-8b15975bce77", + "id": "fd111d72-b8e3-4556-958c-8a7ef4b50a03", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -271871,7 +271871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee48a78e-3336-4ec5-b854-2a288b73289d", + "id": "56fa4cf7-7d03-4959-8d6f-bb83054ec11e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -271917,7 +271917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f404ac3-2044-4233-b100-4c3b41bd9716", + "id": "48546d35-12fe-43d4-96a8-fe8b190ca358", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -271963,7 +271963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3129cb13-e7c1-4b2f-bbab-3144ee81636f", + "id": "1b754c37-0755-49d5-ba53-35d2ee11418b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -272009,7 +272009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811a7720-1ec2-4e2a-9e35-5862b90d05f0", + "id": "48a923a5-a4ac-4b7b-b0e7-a2aa809f907c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -272061,7 +272061,7 @@ } }, { - "id": "ee769cad-46f2-406d-bc29-bb8f1f7af463", + "id": "fd86fa33-a400-4872-8d52-778572bcdb4a", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -272114,7 +272114,7 @@ }, "response": [ { - "id": "5b45f08f-d598-43de-8f37-fbf95807c498", + "id": "8b4f8a75-78b3-4913-a2cd-aa1904acd59b", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -272160,7 +272160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "baf1c0d2-6b68-4d82-8edd-617024be8c4a", + "id": "66d136d2-4ee5-4063-b6a6-156e45b685d0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -272206,7 +272206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb7f4dec-02b2-490c-a851-1d2deea2173c", + "id": "d88e599c-024f-45e4-a65e-26e2e5d13be8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -272252,7 +272252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30769a72-9cc3-4a64-8beb-f29746f53087", + "id": "ecef5ad3-abe5-4113-b303-5ad15bcc6526", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -272298,7 +272298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd5d6c87-1974-442d-8b4a-f6cf24d2d1b0", + "id": "31ec4dc3-e40f-40ff-8437-b13e6d1ee0d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -272344,7 +272344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "edde33c3-b13e-4117-9ebc-1fc82afe1a9e", + "id": "61385660-1de9-41a1-9c7f-83d669a0fced", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -272390,7 +272390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69765938-f0c4-4a89-847a-ae32cfece13d", + "id": "28e6f1f2-5e8b-48c7-b0f1-836d22d49edb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -272442,7 +272442,7 @@ } }, { - "id": "985e971a-51c7-4e6b-b12e-bc522dcf2a6e", + "id": "8703add9-d6cb-4c23-84d9-cef3b370a6b1", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -272508,7 +272508,7 @@ }, "response": [ { - "id": "724e26d7-7bff-49ed-9ddf-313e6c829013", + "id": "e57dd119-2e54-44b1-8034-a85b547b7526", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -272567,7 +272567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a59373e8-95f2-4d2f-95e8-acd261b07555", + "id": "74ff51ba-f8dd-4c4d-b6af-02854ba1389e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -272626,7 +272626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db4c71da-8962-484d-9424-815f5d95206e", + "id": "1601250c-60f3-4c13-b6d1-e194661ed05e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -272685,7 +272685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4e7bacc-473c-43eb-9406-3e227f78cdf2", + "id": "d5364eab-9075-4a5d-aaee-380aafebed37", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -272744,7 +272744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c036e499-f7b4-4ef8-a8c3-19e649d8a6e7", + "id": "635ed59c-e0e1-4e1f-83c1-dad683b12baa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -272803,7 +272803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80df9712-b336-47b3-8d17-a494689f69b1", + "id": "98ce61d0-2229-4496-8dea-d2540893ec92", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -272862,7 +272862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acc8f061-37ab-47f2-b132-bc74898f22b9", + "id": "fa3bac67-12c3-491d-a534-a34cc4773d0a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -272927,7 +272927,7 @@ } }, { - "id": "324a3808-e1b5-4efa-b27d-ae20d2857030", + "id": "56382643-d9ab-4e27-8160-25407a75b2b6", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -272993,7 +272993,7 @@ }, "response": [ { - "id": "c3c6b6b6-0810-47cc-8016-ffeabb33c6fb", + "id": "15949ff6-c05e-49a9-97ef-fcb20ed57371", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -273052,7 +273052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa3c72ea-fa5e-4ef0-83ae-a4d5324e6486", + "id": "59c62843-621d-4dd7-ac75-f90840def628", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -273111,7 +273111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52359a01-b21b-40b6-b412-cc931ec655cc", + "id": "b44aedcf-b4d0-4dbf-bfa2-1bd538b1768f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -273170,7 +273170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ce4c1ce-8292-4124-b0e4-4315b15b45e0", + "id": "698047fd-cc90-4403-be72-c06537403a35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -273229,7 +273229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a3b7a64-1b6d-4926-ace6-81c668a77d57", + "id": "4d0e56dc-91f5-4244-b5d1-410416c3ce1a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -273288,7 +273288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d221620-1f0e-4cf6-8e5a-c8ff9fe4fb1c", + "id": "1478d61e-4b7b-484c-ab2a-e1141db86ed1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -273347,7 +273347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfc9677a-9a9b-4ccc-bcc3-c433eb32605a", + "id": "0824bd4b-791a-4a48-904d-6bbc2a7d6353", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -273412,7 +273412,7 @@ } }, { - "id": "94064c9e-a1a8-41f2-b69a-1bba116c3147", + "id": "9a8d11a8-6f2d-40d4-90b6-d85b65c7bead", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -273462,7 +273462,7 @@ }, "response": [ { - "id": "38cad06a-a0f7-4994-87e8-fa18c30f11b8", + "id": "1dfd70d2-4c1f-4ab2-99b0-67f4e819b1b8", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -273498,7 +273498,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2fbc0da4-e6fc-4f7f-92bd-9b867f6909aa", + "id": "18b46898-7085-4874-93d7-c9d6a3a9a710", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -273544,7 +273544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04a35eed-48ac-4c7f-9e78-3c3bbe7e464b", + "id": "54257749-b1a9-4f69-9633-ee8f81420e80", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -273590,7 +273590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f95a854b-4594-48e3-90f3-93f5cf13e80c", + "id": "a8d517d1-9545-4090-9802-644e5f914a4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -273636,7 +273636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f47079ae-fb08-4e96-80ac-d3b26fb22927", + "id": "86c9a1cc-83d6-4af3-b586-1d81b8788458", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -273682,7 +273682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "737e0162-173f-4d91-9c36-dd02641d75b7", + "id": "b74cd53b-844c-4a8f-ad6c-0db9ea3da625", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -273728,7 +273728,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35e1c811-4c73-4197-bd3d-4ef288aa5850", + "id": "02999bc4-6264-47fd-8200-edc9ecd94ce3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -273780,7 +273780,7 @@ } }, { - "id": "c91a10e1-f54f-49f5-87a4-069f6da81258", + "id": "138e9f17-2a0f-4845-b936-066100cb9f20", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -273822,7 +273822,7 @@ }, "response": [ { - "id": "5f1b8bb7-dc1d-4568-b5b7-12b92ded7c6d", + "id": "ea48cc15-9a42-4805-9775-0fce2c26f7a2", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -273867,7 +273867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c417814-82ac-4b2b-9a2e-caff1efa7969", + "id": "d7c3edd7-79c5-42a5-9c06-8faf45762988", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -273912,7 +273912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29bb69a9-fcf2-4121-8ec2-26540f7caa00", + "id": "ad4220ba-fcff-4df3-8f12-1ecfedd85fb1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -273957,7 +273957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f20538fa-27d8-4a95-a455-1528266a211e", + "id": "e7a1d0a8-abf0-49fa-a1bc-e6f28586897f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -274002,7 +274002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64e212bd-258e-4c88-b98c-cd22b42ab3cc", + "id": "551d25d1-9d77-4ec8-b8fe-cd29ab219835", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -274047,7 +274047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ab9a6df-a7b5-4d4e-9ecb-c2a8f9fae4b1", + "id": "d3f5df4a-1bcb-4638-b448-51b1c7a6e432", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -274092,7 +274092,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43d4d4ee-8c09-4d77-bf56-3272b72e9427", + "id": "8e00fc01-7131-4c30-aa9f-f806093ffac6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -274143,7 +274143,7 @@ } }, { - "id": "3833a4f1-8c90-4a87-81e2-752706e60017", + "id": "395a4313-4dde-4400-aacb-f57c0e8b0673", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -274186,7 +274186,7 @@ }, "response": [ { - "id": "1f975f7a-127d-4652-93e6-6fc52666ae69", + "id": "90a8ac1f-4ef3-4354-8d3c-068c306c904c", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -274232,7 +274232,7 @@ "_postman_previewlanguage": "text" }, { - "id": "633c2773-5007-456a-8593-da4d2c4fdefa", + "id": "4c6759df-1ca5-47ad-88b9-f22b419680cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -274278,7 +274278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22a9fd93-16fb-4bfe-ada0-121d52f1c6ec", + "id": "1098d02b-674f-4d9f-9bed-ea52d2e775d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -274324,7 +274324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a264998-8436-4fda-99f4-1545e9c4a3d4", + "id": "5283adef-f805-4b42-b703-86321d54b3b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -274370,7 +274370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1b79a6a-4a20-41ff-bb03-70bd6e74a0b5", + "id": "13e25d7e-7a43-4dee-8331-342f662b1248", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -274416,7 +274416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7abad2c2-acf8-49c8-85cb-1fc0f216308d", + "id": "2d1a5bed-ce08-429c-a814-a41c1148a07e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -274462,7 +274462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80826274-fb1f-4286-89a8-7c5db460ab27", + "id": "ef1288b2-61c0-4663-8a04-193f0ed5370f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -274514,7 +274514,7 @@ } }, { - "id": "5ab03536-da8c-458f-ad0c-178771fd5475", + "id": "b1e1f261-f98d-4e98-9f03-36cf0b8dde9e", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -274573,7 +274573,7 @@ }, "response": [ { - "id": "e8d15e44-8930-4f15-aaac-4448e735c7fa", + "id": "7c922ea6-cee8-4f1d-a39a-521ef836677c", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -274635,7 +274635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b37e2ac-1336-4709-bc21-6162ac565dfb", + "id": "eba69412-c57e-43bd-bc3e-bb244f58b1fc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -274697,7 +274697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0360e020-d2c3-4c65-b051-25b09a47c4be", + "id": "150ba615-6209-477e-a7f3-58edf5da6377", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -274759,7 +274759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee93f58d-5275-40f3-9afa-5238991dcc11", + "id": "e6ae9350-338c-4341-9c6a-d6b4f38fe058", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -274821,7 +274821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a47e8aa-837c-4cc1-b8eb-c80fe3f1d909", + "id": "dc47c487-b5bc-4bb6-a7ab-6388d9933288", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -274883,7 +274883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f9eb8c1-a12a-44c9-af3d-14c2a45f8435", + "id": "5f2eeaf4-4a9a-4ea5-93c9-95bad2717e93", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -274951,7 +274951,7 @@ } }, { - "id": "730629b9-e8c8-43db-bef8-895b498ccca3", + "id": "d8c17fe4-9346-44fa-b38c-351b10403a47", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -275004,7 +275004,7 @@ }, "response": [ { - "id": "4a24d1f5-881c-46df-9687-80e84d088a46", + "id": "75c7bcde-8aec-49d6-ac81-7b87380352b1", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -275060,7 +275060,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6060dabc-9786-4c04-b7ff-899219f6b2ba", + "id": "8db4558f-55a4-4c72-905b-24122d3f2c20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -275116,7 +275116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a93037-b01d-4c52-8868-ab981e91d0c0", + "id": "6cda61d0-08b0-4067-8014-fe45c4c62e0e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -275172,7 +275172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "324dfff6-1d23-4ba4-8048-728dc15af794", + "id": "365ac4a8-2d8d-4a15-bb4d-f43582d43cd2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -275228,7 +275228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36299916-dd75-460e-8701-907dd6278141", + "id": "331d4775-7d2a-4075-b1ad-9950b3f0236c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -275284,7 +275284,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82876b6b-b319-4173-989f-008aea6366ad", + "id": "713b9202-2208-46dc-968e-b4249c77c3a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -275340,7 +275340,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b087bf9-513d-44f8-9a01-fb33ab63fbe1", + "id": "4165db76-8451-4b3f-940d-4d5332c32149", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -275402,7 +275402,7 @@ } }, { - "id": "853e6c88-466a-464a-94c8-aec88b4386ed", + "id": "b02d0151-0152-4d7a-8c13-1b718d7e9db2", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -275471,7 +275471,7 @@ }, "response": [ { - "id": "a42201ac-9287-4f16-ad5f-82ee4a86c51a", + "id": "83e9e3dd-71fc-4a79-952d-b157e5550c0f", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -275543,7 +275543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9e922b1-aa11-4781-ad8a-9f2212423a63", + "id": "5130c66b-890e-49ec-a4c4-7a3b9d7314cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -275615,7 +275615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c67d047a-ec3a-4b32-b5d1-5e62a3d56ec8", + "id": "9c31ec5a-fa2c-450f-b9c9-bd964fca9624", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -275687,7 +275687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f4e7ba8-51ef-47a5-803e-b8b25a65dff0", + "id": "da998d16-b7de-4669-86b2-2acebfea2421", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -275759,7 +275759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf55f9ad-4d05-461d-a384-f7a5ff2acde2", + "id": "d7c64e15-8769-43eb-acb6-56b78d0958d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -275831,7 +275831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f741811-20bd-4eb3-912e-ab285b4a3c4b", + "id": "2fb79b78-8eb5-4244-bb23-9c9a265babcc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -275909,7 +275909,7 @@ } }, { - "id": "618f5e0e-232f-4396-b080-3a7c67c42815", + "id": "b6564f37-fb4b-420b-b5a6-8e96dba848d9", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -275967,7 +275967,7 @@ }, "response": [ { - "id": "204f7ef8-4d17-4e9c-9154-7192d5528cbd", + "id": "c9631dd3-b14c-4e0f-b4ef-183324f4d0af", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -276028,7 +276028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fbc8898-c24b-4556-9de6-b20de8c0910b", + "id": "b2260c25-16c3-49bd-a181-a0104e93519f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -276089,7 +276089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf0a7e9a-308c-40a2-9074-04b223e70b61", + "id": "e0bba86f-c636-4a2a-b9eb-3cb824d18b5b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -276150,7 +276150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7163ab61-90e9-42c1-ae3a-17ef048ac330", + "id": "e7f37aee-e156-4d8b-a9b3-025934fe65d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -276211,7 +276211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24dc86c8-4e12-4fe1-8321-d9684a1224ef", + "id": "9c5b1acb-4116-4845-bc79-82a75cf28401", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -276272,7 +276272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59d87792-b66b-46c3-93e4-d8e8bf429a6b", + "id": "532e8e31-e09c-40ec-9c7c-1439b8100ea3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -276339,7 +276339,7 @@ } }, { - "id": "7325e572-8b87-4544-a140-eb311b46ddc9", + "id": "ea86d4ef-add4-4113-9955-04970ebd2a79", "name": "Attribute Sync Config", "request": { "name": "Attribute Sync Config", @@ -276390,7 +276390,7 @@ }, "response": [ { - "id": "bae03802-84e7-48b0-a637-2cfa891271d8", + "id": "d63a51a1-6738-458a-b825-6a124d11b5e2", "name": "Attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -276444,7 +276444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11e0c999-d9c7-43a9-acb2-0b49334d31be", + "id": "eaf79ed5-9cb5-44ae-a6b0-a5bf660c7aaf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -276498,7 +276498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe8d6c9f-c913-4d55-8a1b-61bc0cf555da", + "id": "ffd785b1-5e4a-4563-8474-d8e58b19e906", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -276552,7 +276552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d7290d-8e87-4a33-9751-feb5e316894d", + "id": "da345c69-a68b-4e05-8a88-88c7e1614ad9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -276606,7 +276606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8701074e-88fb-4471-bfd9-7b63553ec152", + "id": "0df7ed8b-b7a1-4efd-a539-e2306dc4e9ac", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -276660,7 +276660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91fe1d35-be7d-46ab-b82b-fcf2d16b69d2", + "id": "0578e272-1884-4fe8-8894-6429152c05c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -276714,7 +276714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8842e783-38a1-4708-ba9c-64caa4a6ee04", + "id": "e13b33f3-ccd9-4344-8408-5a06109cb934", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -276774,7 +276774,7 @@ } }, { - "id": "a2324ac8-74fb-4dd2-b10b-ff034cfdbb7e", + "id": "5d178a02-209a-48c7-a6b2-77ffeaa8a6da", "name": "Update Attribute Sync Config", "request": { "name": "Update Attribute Sync Config", @@ -276838,7 +276838,7 @@ }, "response": [ { - "id": "3f66dae4-38c3-4112-9c5e-02ed691143fb", + "id": "fb950be8-50e7-4d81-88fd-ea4e2f64a1b2", "name": "Updated attribute synchronization configuration for a source", "originalRequest": { "url": { @@ -276905,7 +276905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58668a19-d850-4fd0-8353-c0c0a7fff1e8", + "id": "48398f50-efc1-4c17-8c4b-f621c19d3602", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -276972,7 +276972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc2e8aab-ea98-4f55-b7b6-a6d169894d3d", + "id": "3895a8cf-20f2-45b4-a55d-c3173843f522", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -277039,7 +277039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4b0ce01-2594-410f-a1d6-3d6933ebae79", + "id": "f26a5009-05eb-450e-a2a9-32f5a23abdc6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -277106,7 +277106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18809e14-01a1-4d59-a315-a057ad35e3b2", + "id": "613c7fb6-e369-4ccb-b3f9-c746fea45377", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -277173,7 +277173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eefcc50a-329d-4765-8752-3eec742d5301", + "id": "9a34600e-d14e-4cbe-97cb-d7712cbdb389", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -277240,7 +277240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6d5392-08c6-4d12-bae5-f2751319083b", + "id": "16b4b383-0409-4863-a3e3-15b131f6a797", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -277313,7 +277313,7 @@ } }, { - "id": "57a846cc-9d1c-42dd-b9d0-db0a1d3a0c30", + "id": "e16425f2-60bd-4f23-8f9b-4fd08fb9ea01", "name": "Check connection for source connector.", "request": { "name": "Check connection for source connector.", @@ -277365,7 +277365,7 @@ }, "response": [ { - "id": "bbd0baee-ba0f-4c27-aefe-50775cde96a5", + "id": "e15c178e-c657-44a3-bbe3-787ca1636ecc", "name": "The result of checking connection to the source connector with response from it.", "originalRequest": { "url": { @@ -277420,7 +277420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1489e4a1-b609-4c8c-b364-644bc450e8ad", + "id": "eef72573-00c8-4daa-beac-a646b20f901a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -277475,7 +277475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4663eb23-7632-43de-84c6-96f4fecc2922", + "id": "7cfb8a57-39cd-4b67-bd61-0d7c866becf5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -277530,7 +277530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f06d3c24-9d18-4f75-9045-127e37d18431", + "id": "d9be4232-0801-41b1-8aa0-945e95d62b48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -277585,7 +277585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64645756-a472-4580-a6a2-12421abdad9a", + "id": "211e7142-bb93-453e-8a20-5a85ffe064fb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -277640,7 +277640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7ec6017-0ab9-42d8-a5ca-16d0b9176d4c", + "id": "d996f105-e0e2-469e-8e0e-d7b874f1db5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -277695,7 +277695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97f11052-ffb1-4f19-9c46-d9235c1e75b2", + "id": "8509cd61-f711-4b83-b61e-3baf0ed9d850", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -277756,7 +277756,7 @@ } }, { - "id": "86ce187f-7744-437c-ac6f-086f319e5179", + "id": "dcf34102-d30d-46e5-88b9-bdcb37857ac0", "name": "Peek source connector's resource objects", "request": { "name": "Peek source connector's resource objects", @@ -277821,7 +277821,7 @@ }, "response": [ { - "id": "27c17b0c-48a9-4a71-b68e-5c109749ad1f", + "id": "551fd92c-f6ed-4f4b-a27e-ef24491d3748", "name": "List of resource objects that was fetched from the source connector.", "originalRequest": { "url": { @@ -277884,12 +277884,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"consectetur ipsum \",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"aliquip occaecat do\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n },\n {\n \"instance\": \"magna anim\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"reprehenderit incididunt \",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n }\n ]\n}", + "body": "{\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"ODS-AD-Test [source-999999]\",\n \"objectCount\": 25,\n \"elapsedMillis\": 1055,\n \"resourceObjects\": [\n {\n \"instance\": \"ullamco ad laborum cupidatat\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"non enim\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n },\n {\n \"instance\": \"ad Excepteur Duis sint\",\n \"identity\": \"CN=Aaron Carr,OU=test1,DC=test2,DC=test\",\n \"uuid\": \"{abf7bd9b-68b4-4d21-9b70-870c58ebf844}\",\n \"previousIdentity\": \"officia ipsum reprehenderit\",\n \"name\": \"Aaron Carr\",\n \"objectType\": \"account\",\n \"incomplete\": false,\n \"incremental\": false,\n \"delete\": false,\n \"remove\": false,\n \"missing\": [\n \"missFieldOne\",\n \"missFieldTwo\"\n ],\n \"attributes\": {\n \"telephoneNumber\": \"12-(345)678-9012\",\n \"mail\": \"example@test.com\",\n \"displayName\": \"Aaron Carr\"\n },\n \"finalUpdate\": false\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "98629762-34ba-4551-99ba-42fc556cd966", + "id": "ab668216-a41b-48d0-9c89-d24199cf9270", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -277957,7 +277957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "306ecb0b-04aa-4114-81b0-133ec2f58ad2", + "id": "8d2f062f-1e6c-479a-8c42-6f2c15cc7c99", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -278025,7 +278025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9d3307c-2730-46c1-8067-604618444057", + "id": "6c46e28e-e94b-4c44-80bd-eca019ca2169", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -278093,7 +278093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cd93d80-0c0c-40e9-ae35-9484b2829b7f", + "id": "18326aac-cf03-4af1-9e39-42bce6f694a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -278161,7 +278161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a4ba71-4084-4cfc-b652-41e9ba461d33", + "id": "a3b1ce31-a48a-4bfd-971e-76c924a6827c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -278229,7 +278229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd3dbd49-967e-4ff5-a91f-4a4bfa2a7eb6", + "id": "c6fde27b-3632-46d0-b39c-333a15610e16", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -278303,7 +278303,7 @@ } }, { - "id": "cb6fd9f1-83c7-4ce5-a521-a09626aa6033", + "id": "1fa06865-1378-4e5a-87f4-f77fb748e741", "name": "Ping cluster for source connector", "request": { "name": "Ping cluster for source connector", @@ -278355,7 +278355,7 @@ }, "response": [ { - "id": "f7b9af0f-600e-4959-9860-8c5664f143e5", + "id": "fe631db6-53d1-40ae-a0a1-3c9a63feb8ad", "name": "The result of pinging connection with the source connector.", "originalRequest": { "url": { @@ -278410,7 +278410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eedd8ded-1d0c-4fc2-820f-0c5fbf9c0d5a", + "id": "1f14ecf2-1eff-4676-8784-a1d594e4892c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -278465,7 +278465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca442630-54e1-46ee-8bd7-412d87a47397", + "id": "7a1173c8-fe99-4f37-a64d-3c38896a324a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -278520,7 +278520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13092b9e-6089-423c-b644-5c44543d2028", + "id": "18a01cd1-716e-42d2-bd4c-e3dcc75f7e1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -278575,7 +278575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f0df63f-4ada-477a-86a2-88dc56276438", + "id": "c8dcac3e-75b8-4f62-acf9-95dcf724aad9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -278630,7 +278630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2090d5c5-b185-47df-bf95-fb4500f61027", + "id": "ffb222a3-2796-4348-a307-f961ad8c9ff1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -278685,7 +278685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9716c656-6fff-4e2d-a4d3-93bd1f049a7f", + "id": "43d847e7-3e21-4f57-81a6-e73d8b3aecba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -278746,7 +278746,7 @@ } }, { - "id": "d65f4e0e-b18b-41fb-ac2a-31b17ca579c9", + "id": "3bac3d19-7d72-40b9-87de-ea760a157e4e", "name": "Test configuration for source connector", "request": { "name": "Test configuration for source connector", @@ -278798,7 +278798,7 @@ }, "response": [ { - "id": "c594ec20-83bd-493a-a190-91ff7bc55495", + "id": "d2e2484f-f8de-49c8-81d0-b22e012b0450", "name": "The result of testing source connector configuration with response from it.", "originalRequest": { "url": { @@ -278853,7 +278853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f1f9863-ef9c-4540-9ad2-e12bb7685282", + "id": "d94b48cd-b9cd-4132-b494-a0de2036529d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -278908,7 +278908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff185d67-1bb9-4828-896a-db499fe29806", + "id": "6479d930-2ba7-4040-a469-92edf1a1f1be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -278963,7 +278963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b84d9270-7c7b-4794-8716-ea1ecd4f68ab", + "id": "cea58f9a-dd1a-4163-aa53-dca58b2363fe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -279018,7 +279018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec1701f4-8e74-4f8c-891b-676712d32872", + "id": "549b52db-0b4f-4cae-9fb8-0fd55aea5cc7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -279073,7 +279073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb2d8646-17c9-4684-b6a6-992f2bb028c6", + "id": "9e6fe052-d94c-4587-ad43-5a454ca622a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -279128,7 +279128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8060956f-3e62-47fb-ac3f-d4c783bfdd71", + "id": "4a49f4e8-63ed-422e-9fc8-e29ad7772a9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -279189,7 +279189,7 @@ } }, { - "id": "99b181b4-de1b-4038-88bb-7103b1221c01", + "id": "f68b5389-54b0-4fb1-bed6-b5f486236f43", "name": "Gets source config with language translations", "request": { "name": "Gets source config with language translations", @@ -279215,13 +279215,13 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [ { "type": "any", - "value": "sint amet", + "value": "dolore ut labore dolore", "key": "id", "disabled": true, "description": { @@ -279251,7 +279251,7 @@ }, "response": [ { - "id": "f3b6f1ca-d50a-400f-a408-cc52e2ee9fb6", + "id": "d72881e3-4e31-4199-b5f0-4f6f486f384b", "name": "A Connector Detail object", "originalRequest": { "url": { @@ -279272,7 +279272,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [] @@ -279311,12 +279311,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"labore voluptate\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"occaecat dolor pariatur nulla\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", + "body": "{\n \"name\": \"JDBC\",\n \"sourceConfigXml\": \"
\\n\\t
\",\n \"sourceConfig\": \"do anim ullamco\",\n \"directConnect\": true,\n \"fileUpload\": false,\n \"uploadedFiles\": \"cillum dolore nostrud\",\n \"connectorMetadata\": {\n \"supportedUI\": \"EXTJS\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7182991e-5add-4355-85c8-2ea4f62872bc", + "id": "cca5d037-cb90-40d1-8782-b84cdcba8b4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -279337,7 +279337,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [] @@ -279381,7 +279381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ff94596-c4f1-4947-b59d-7a22e5d44c0f", + "id": "07454e82-c9bf-4402-8d6c-572cc687fb5f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -279402,7 +279402,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [] @@ -279446,7 +279446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b2a179-c86c-4430-b0b7-1163f5d01314", + "id": "c0a8a6e5-c466-4b5d-98d9-e2ab0602ec66", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -279467,7 +279467,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [] @@ -279511,7 +279511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7443f5c-7a49-4708-8029-aac0791e54ff", + "id": "417a26cd-e826-4ea9-b099-3ffaa0f4cf9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -279532,7 +279532,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [] @@ -279576,7 +279576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "608d0c69-58d2-4786-9bca-4e87b27aa292", + "id": "39975bec-8a5e-4a45-8241-d426bbbea5b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -279597,7 +279597,7 @@ "type": "text/plain" }, "key": "locale", - "value": "ko" + "value": "fr" } ], "variable": [] @@ -279647,7 +279647,7 @@ } }, { - "id": "f14401cb-a146-4909-a4e6-ca63a7eda606", + "id": "f607727c-73ec-42ec-a0fb-5807dc772516", "name": "Native Change Detection Configuration", "request": { "name": "Native Change Detection Configuration", @@ -279702,7 +279702,7 @@ }, "response": [ { - "id": "c4e308c9-f556-4ef4-a157-ae2edd3f163d", + "id": "5b537d7e-53bf-4489-a6f7-7e55135b46ab", "name": "Native change detection configuration for a source", "originalRequest": { "url": { @@ -279756,7 +279756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1c4c82-2bf7-4e0f-85a2-8f02aa36e991", + "id": "c5aecbe3-ca74-41d6-b0eb-b54e2b915121", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -279810,7 +279810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85294c49-173b-4624-9818-7ee1a5cdcec6", + "id": "9cd2efed-9a5f-494a-86c0-175e45358a7a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -279864,7 +279864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97f8510d-c1b5-4116-9fdf-6425cbbb62f2", + "id": "6578e4f2-9ccc-40ab-8199-ccc423b44119", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -279918,7 +279918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fe6a66a-a7a4-4566-b2b3-a114e0c15797", + "id": "f6ee3c10-d4d6-426c-bd02-a3792bef50d2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -279972,7 +279972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e6b48d-3548-4367-b7ce-c7e091226a61", + "id": "f4f45137-0e3e-4d59-96cf-94b2e8f528d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -280026,7 +280026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a70b48c-db0c-4b2a-87ea-d2e2dbb26b26", + "id": "47d9c356-5ee4-451c-b099-5969f8cbed07", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -280086,7 +280086,7 @@ } }, { - "id": "b9480da2-9e1f-434f-8215-be3bb404648e", + "id": "8ec3d36e-209c-48b4-aab4-885215e808fb", "name": "Update Native Change Detection Configuration", "request": { "name": "Update Native Change Detection Configuration", @@ -280154,7 +280154,7 @@ }, "response": [ { - "id": "4a3aaae0-791d-4ffd-b3b8-2b28789f9b25", + "id": "f61d3ad6-615f-4243-8bc8-31f6250e87f0", "name": "Updated native change detection configuration for a source", "originalRequest": { "url": { @@ -280221,7 +280221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4095225e-df32-421d-b200-39fc2181efb9", + "id": "7598f2bc-0c5a-42dc-8994-5b2c254fa330", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -280288,7 +280288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db2cf3d2-ef00-4118-9a3e-4fb1f4bd4801", + "id": "6c218cd3-8594-404d-9de6-9faebcabd494", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -280355,7 +280355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93e2bfa2-f8eb-45b6-bf4e-2e5807da9aa9", + "id": "80bd9ffc-106f-45a3-accb-1a0b61be130a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -280422,7 +280422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a737ab5-dfe8-4b4d-bf16-5ab2ac3c7d38", + "id": "d44e1e26-81ff-446f-849a-028cab1f5705", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -280489,7 +280489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1dcce7d-0efa-490b-b81e-f83c3c32f53b", + "id": "a638310b-5a7a-4da2-86a0-941fb13ab3a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -280556,7 +280556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "458f8df5-3f76-4ffb-abac-6033dd8457b0", + "id": "7d75bc14-0393-4d5a-a383-77937fb9d052", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -280629,7 +280629,7 @@ } }, { - "id": "8816f5a2-d0ee-438a-8655-2ad50321b0ea", + "id": "96fe7715-80a7-44f9-8bbf-46e7500c24ce", "name": "Delete Native Change Detection Configuration", "request": { "name": "Delete Native Change Detection Configuration", @@ -280684,7 +280684,7 @@ }, "response": [ { - "id": "41d4280d-187d-4527-94e7-3cea11c58957", + "id": "ec14eb15-7e99-45cc-96ef-51ca8610a729", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -280728,7 +280728,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1ca4f522-89db-4038-8346-65b02cbfaec8", + "id": "1617886a-877d-4053-9d5f-8ec4e5e4ad94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -280782,7 +280782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41a275c9-6831-4a8f-b075-25d257bc3255", + "id": "9563b256-7ea8-4218-8374-f85165d64587", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -280836,7 +280836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68845368-d23a-4f73-a410-a6fad2c0b1c6", + "id": "72e03aa5-5c87-4b42-b31b-db83192162bc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -280890,7 +280890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11d59625-f3b3-462b-909f-c1b0ba8e77c9", + "id": "8a50b136-0b6a-402b-a266-ff5823f6e699", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -280944,7 +280944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f59aed4-b6bd-4cdf-b91b-a70dde5085e9", + "id": "fe2348a8-15fa-4ac9-a531-fd28100cc7bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -280998,7 +280998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20830d1d-b10b-44f2-8960-1ffdf98a0df2", + "id": "a243c663-a0fa-44df-942a-aa8f014a3dd2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -281058,7 +281058,7 @@ } }, { - "id": "37dfca71-2838-449a-a189-a691eb0a0b73", + "id": "b6a24abd-6333-479e-ba8c-613cbe1285a4", "name": "Remove All Accounts in a Source", "request": { "name": "Remove All Accounts in a Source", @@ -281109,7 +281109,7 @@ }, "response": [ { - "id": "bdac7243-747b-445f-81b1-e9c5b97bbe20", + "id": "f4fe18af-860c-4c17-ba56-a51c3b198ea1", "name": "Accepted. Returns task result details of removal request.", "originalRequest": { "url": { @@ -281163,7 +281163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2a12d2e-a24f-4d3a-8c36-115653b14c9a", + "id": "b84a55b5-e494-4de9-bb32-9d89ea66e2bb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -281217,7 +281217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "123a8cf6-e5bf-4038-a5d5-95de7795cb6c", + "id": "4caa0da7-5707-4f6e-b2f8-e25159410da2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -281271,7 +281271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "455f1cde-a18d-4610-8a60-cca094abab30", + "id": "2fa9eb40-51fd-4619-a923-1e27014e33db", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -281325,7 +281325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a4c82a6-6170-4b64-8fed-012ab8bdea8e", + "id": "432f37b7-1318-49a8-8c9f-a37c4374ddcb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -281379,7 +281379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3356ef4-73b3-40da-a247-db6dc36306d5", + "id": "4abdfc9a-683a-4ce3-bacf-365fbfe8e347", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -281439,7 +281439,7 @@ } }, { - "id": "48c65667-67ee-4a76-8954-fd5bcb5e01a2", + "id": "9bfb60dc-6f12-447d-a9d9-d5388faf4647", "name": "Synchronize single source attributes.", "request": { "name": "Synchronize single source attributes.", @@ -281460,7 +281460,7 @@ "variable": [ { "type": "any", - "value": "sint amet", + "value": "dolore ut labore dolore", "key": "id", "disabled": true, "description": { @@ -281490,7 +281490,7 @@ }, "response": [ { - "id": "ab641bee-473e-4bbc-892c-992f9cf05e38", + "id": "8a2819af-c9ee-41d8-8ab6-7ec739ea8677", "name": "A Source Sync job", "originalRequest": { "url": { @@ -281544,7 +281544,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13a97cba-8080-402f-b203-5ee65b7652ed", + "id": "2cdd0938-12ee-4013-9f35-b218a18dd456", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -281598,7 +281598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4d9ef15-d420-433e-94ad-35141d8c473b", + "id": "1e42803a-f02a-4d0b-baf8-11e363bbe5fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -281652,7 +281652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c2f2291-f956-484e-9760-d0d9cd48fca1", + "id": "9f1cd114-baa3-4e6d-af92-a405dfcf9c1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -281706,7 +281706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb94e58a-c985-44d8-80af-92502d8bc14e", + "id": "1906d245-ff8e-4d7e-a800-1ecd0af39fce", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -281760,7 +281760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d34c69e9-1849-4673-a9a2-d133a0dc1c15", + "id": "3a5a20c6-7691-48ce-9dd5-e555aa5580cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -281814,7 +281814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7fbe4d-ecab-4380-ad20-5afb950dbac8", + "id": "42d55c8b-7ec7-4f7e-a7d1-0a604ade90be", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -281874,7 +281874,7 @@ } }, { - "id": "d1dcd694-05e0-4197-a30e-b1b4c079616e", + "id": "9d0e1cc1-07c2-40e0-9fec-0be9e3808b72", "name": "Get Source Entitlement Request Configuration", "request": { "name": "Get Source Entitlement Request Configuration", @@ -281919,7 +281919,7 @@ }, "response": [ { - "id": "f6019c9c-6caf-48dc-b3d0-773493450d75", + "id": "d477a63d-5479-4bdb-b1a2-28419cb98616", "name": "Get default config", "originalRequest": { "url": { @@ -281973,7 +281973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3661e31e-d0dc-4cde-a7aa-1b2fcf82ddcb", + "id": "71a27718-742f-4d09-a7b3-bb7a706fe05c", "name": "Get config with one approval", "originalRequest": { "url": { @@ -282027,7 +282027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7ae03bb-88df-4d81-b5ac-0136ee37d5c9", + "id": "bb91930d-3d60-4a86-a086-cce1be76c3ca", "name": "Get config with multiple approvals", "originalRequest": { "url": { @@ -282081,7 +282081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d307ceaa-2f5a-4777-becb-387906dcbd21", + "id": "98d56e52-179e-48be-a370-e2619aaeee1a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -282135,7 +282135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fad67897-9c24-496d-83cb-8ddd7400bdec", + "id": "f2585657-6ef2-4d91-947b-722cfede8fc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -282189,7 +282189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "525355c1-0196-4546-99f4-bca5b1c2035e", + "id": "81a478a5-c76d-4c9b-8a26-1e789a6f2604", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -282243,7 +282243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a1cdb78-762b-438c-9014-dc873a0754af", + "id": "c86c39e3-3964-4c47-939b-75786756ab49", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -282297,7 +282297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abdaa6a4-8ebf-4bb8-9ed9-c940fca9e098", + "id": "9c990505-d24a-443c-906a-9049cc9154ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -282357,7 +282357,7 @@ } }, { - "id": "4b5fecc5-1288-4c48-9cfb-e4087b8825f6", + "id": "3c3ddc16-1b47-4005-a6a0-c81d740cfcfc", "name": "Update Source Entitlement Request Configuration", "request": { "name": "Update Source Entitlement Request Configuration", @@ -282415,7 +282415,7 @@ }, "response": [ { - "id": "63f1b0f3-34f0-4be1-a553-20e2ba0b3e7b", + "id": "f6d34298-9710-467b-bb23-bf0f611bc048", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -282482,7 +282482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae767192-774d-4a58-92ea-0ef270a79fe2", + "id": "361fc963-e4ed-48a2-9084-12cf2d73f336", "name": "Set config with one approval", "originalRequest": { "url": { @@ -282549,7 +282549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09ef0d23-6fe1-4214-874a-10fd93a90514", + "id": "b554d2d9-99f4-4aed-a34f-7d23d6e914fd", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -282616,7 +282616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46efe7e7-c32a-4f5f-8159-59a3af6594a1", + "id": "19c298b6-bc8f-4900-b271-ff5659f01b62", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -282683,7 +282683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21c8d634-a54e-4a8b-8184-71b1ba6aa545", + "id": "2d0007b1-6445-45f7-9743-b4c80b5c8aca", "name": "Set config with one approval", "originalRequest": { "url": { @@ -282750,7 +282750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "534e09bb-98de-4193-a953-31a0668f77fe", + "id": "27177128-c1fa-455d-8557-8211a2d64ceb", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -282817,7 +282817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cae4567c-e838-45ed-88a6-34a0a25da6e2", + "id": "17b1ce80-2aa5-4724-88c0-30f35d9f5796", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -282884,7 +282884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53acdb57-a93b-4c70-8645-1b50fba751c1", + "id": "1000bbd3-277d-4b9e-adf7-ee45f5a4bac4", "name": "Set config with one approval", "originalRequest": { "url": { @@ -282951,7 +282951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "208771b9-7b74-45e2-8797-2df490008f62", + "id": "250dace8-3ab0-4d82-9c18-91bdcd8bc076", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -283018,7 +283018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3f65f28-c2d6-427b-a995-0cb40e341bec", + "id": "50e77f3b-36ac-47a2-a20b-8f3dcd8761fb", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -283085,7 +283085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1081c8eb-55ee-4e53-9068-990f60411d47", + "id": "29783ff6-146a-49ad-a3a8-a5759a4c0670", "name": "Set config with one approval", "originalRequest": { "url": { @@ -283152,7 +283152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d07db289-bfb4-4eb7-91ac-f65fe914f183", + "id": "c01585d8-c0cd-4510-9ab6-d9d5671535d7", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -283219,7 +283219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c9aa48b-f4ea-404f-a1a9-724084558847", + "id": "29841f36-cda0-457d-a9b1-22a83ffc5feb", "name": "Set config with no approvals", "originalRequest": { "url": { @@ -283286,7 +283286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be88940b-ea1b-40dd-9d04-d5dafc8d572f", + "id": "f91e95b3-e244-4aa7-8730-ea2ca7ddb754", "name": "Set config with one approval", "originalRequest": { "url": { @@ -283353,7 +283353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27355c32-32bd-4918-983d-c1eda8eb6db6", + "id": "4df98f6b-f50d-435a-8446-9dfc3177e151", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -283420,7 +283420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "753268b3-3f6d-4baf-bdab-f4f14193dc4c", + "id": "403db2d3-60d6-4054-b93b-a7377e9fc805", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -283487,7 +283487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6455e9bd-0e39-4b72-bf1d-4fd1f8d82155", + "id": "3563a758-7c7f-493a-aed1-ce2d026ec1fa", "name": "Set config with one approval", "originalRequest": { "url": { @@ -283554,7 +283554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9aa2fcd5-7236-49d0-a298-c6e284c50910", + "id": "fe2f7672-bb34-4408-9e93-435c6762dd43", "name": "Set config with multiple approvals", "originalRequest": { "url": { @@ -283627,7 +283627,7 @@ } }, { - "id": "7a3c5825-ac33-4fbd-b737-9441ac18b559", + "id": "2646a007-1e56-4dd2-8e41-68e49355107d", "name": "Account Aggregation", "request": { "name": "Account Aggregation", @@ -283703,7 +283703,7 @@ }, "response": [ { - "id": "91066cea-e15b-4a80-aad7-81fc51e3a960", + "id": "e83c5921-c3a9-4221-b36a-d9c9dd01352e", "name": "Aggregate Accounts Task", "originalRequest": { "url": { @@ -283777,12 +283777,12 @@ "value": "application/json" } ], - "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Account Aggregation\",\n \"description\": \"Aggregate from the specified application\",\n \"launcher\": \"John Doe\",\n \"created\": \"1957-02-21T04:56:09.691Z\",\n \"launched\": \"2022-10-10T11:15:27.027Z\",\n \"completed\": \"1962-02-26T12:26:47.148Z\",\n \"completionStatus\": \"TERMINATED\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"appId\": \"c31386cb18bb403cbb6df4c86294ff82\",\n \"optimizedAggregation\": \"enabled\",\n \"dolored4\": {},\n \"magna3c8\": {},\n \"velit_d\": {},\n \"cillum2\": {}\n },\n \"returns\": [\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n },\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n }\n ]\n }\n}", + "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"ef38f94347e94562b5bb8424a56397d8\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Account Aggregation\",\n \"description\": \"Aggregate from the specified application\",\n \"launcher\": \"John Doe\",\n \"created\": \"2018-07-25T11:41:09.825Z\",\n \"launched\": \"1948-11-02T12:28:54.930Z\",\n \"completed\": \"1964-08-27T05:16:21.064Z\",\n \"completionStatus\": \"SUCCESS\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"appId\": \"c31386cb18bb403cbb6df4c86294ff82\",\n \"optimizedAggregation\": \"enabled\"\n },\n \"returns\": [\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n },\n {\n \"displayLabel\": \"TASK_OUT_ACCOUNT_AGGREGATION_APPLICATIONS\",\n \"attributeName\": \"applications\"\n }\n ]\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65fd2f4b-adc3-4241-9056-e62bbecae830", + "id": "4bc48790-e63b-4217-b12e-a28605376f80", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -283861,7 +283861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d1fed2a-12b9-43ac-a635-678b57b05a84", + "id": "15d5bafb-ef65-4bad-a5c0-6f32408d8666", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -283940,7 +283940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5f3f3e1-9227-4326-92d8-3afa698e7104", + "id": "46462482-3973-4c02-9e05-59188233075b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -284019,7 +284019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f7afe29-8fcc-4e50-80a8-ca1909cac8f1", + "id": "8b5a13ce-20a8-41a4-b977-a3b5cbd9fbe4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -284098,7 +284098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0a761c1-e6c9-4759-894d-4809e96327fb", + "id": "00c24a7a-ef22-40de-83c7-98976c4e534c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -284183,7 +284183,7 @@ } }, { - "id": "775119ea-9fc2-417a-a473-9da3bc2d559a", + "id": "021f708e-d900-4ea1-9cf7-cffd69e191cb", "name": "Process Uncorrelated Accounts", "request": { "name": "Process Uncorrelated Accounts", @@ -284250,7 +284250,7 @@ }, "response": [ { - "id": "70c53b40-2781-44a6-9e40-f344da06b09e", + "id": "c982e49b-4107-4438-9a35-e6cc011a459e", "name": "Uncorrelated Accounts Task", "originalRequest": { "url": { @@ -284315,12 +284315,12 @@ "value": "application/json" } ], - "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"90b83a6bb737489494794f84cd3a51e6\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Process Uncorrelated Accounts\",\n \"description\": \"Processes uncorrelated accounts for the specified application.\",\n \"launcher\": \"John Doe\",\n \"created\": \"2009-01-20T17:22:10.479Z\",\n \"launched\": \"2019-12-26T05:24:18.500Z\",\n \"completed\": \"1978-11-03T05:05:12.425Z\",\n \"completionStatus\": \"TERMINATED\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"qpocJobId\": \"5d303d46-fc51-48cd-9c6d-4e211e3ab63c\",\n \"taskStartDelay\": \"\"\n },\n \"returns\": {}\n }\n}", + "body": "{\n \"success\": \"true\",\n \"task\": {\n \"id\": \"90b83a6bb737489494794f84cd3a51e6\",\n \"type\": \"QUARTZ\",\n \"name\": \"Cloud Process Uncorrelated Accounts\",\n \"description\": \"Processes uncorrelated accounts for the specified application.\",\n \"launcher\": \"John Doe\",\n \"created\": \"2001-06-04T13:17:24.455Z\",\n \"launched\": \"1995-04-24T16:46:18.728Z\",\n \"completed\": \"1999-06-30T17:20:43.436Z\",\n \"completionStatus\": \"ERROR\",\n \"parentName\": \"Audit Report\",\n \"progress\": \"Initializing...\",\n \"attributes\": {\n \"qpocJobId\": \"5d303d46-fc51-48cd-9c6d-4e211e3ab63c\",\n \"taskStartDelay\": \"\"\n },\n \"returns\": {}\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a2cc40bc-445f-4044-890b-ea62333105c6", + "id": "580d0bae-51d7-4ae8-9501-2cc4895c4166", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -284390,7 +284390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7722d4c4-8486-4227-b64c-a0cc366c08be", + "id": "8d5e6d7e-1e80-4e53-a310-a9a86a64e726", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -284460,7 +284460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd74de26-03f9-4294-b589-a30574d09000", + "id": "8bca2410-3aa0-43dd-92ed-b2902d9329e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -284530,7 +284530,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec312510-aa51-4571-a3f3-d4999d190685", + "id": "5764fee8-ef2c-47c4-ac63-0623d0914eac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -284600,7 +284600,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba0858e5-3738-4147-8a1d-986904b0da42", + "id": "e758fe09-d7b4-475b-add6-fb5708e748f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -284682,7 +284682,7 @@ "description": "Import and export configuration for some objects between tenants.", "item": [ { - "id": "50e36883-4083-4545-b922-0826feea77c8", + "id": "362a3953-ea34-4daf-8b54-1c6e2a47277e", "name": "Initiates configuration objects export job", "request": { "name": "Initiates configuration objects export job", @@ -284734,7 +284734,7 @@ }, "response": [ { - "id": "b343bcbf-cee8-4247-b6f3-0698e3b67e75", + "id": "9c8be5fd-e924-481c-a1e0-80204d6e3e7c", "name": "Export all objects available", "originalRequest": { "url": { @@ -284800,7 +284800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "940ef011-b775-4c09-a1ed-0782d2a3834c", + "id": "9d085a0a-546f-4108-86a4-d1e798e181b7", "name": "Export sources by ID", "originalRequest": { "url": { @@ -284866,7 +284866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c5f597b-b71b-4b7f-bb78-50faa0a44acf", + "id": "4379a735-e4bc-4ff4-acbd-5302646a93e9", "name": "Export transforms by name", "originalRequest": { "url": { @@ -284932,7 +284932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02684108-6c9c-45d1-b05c-90a89364c5c5", + "id": "b1cfb6f9-466f-425d-88f4-f20779f3428e", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -284998,7 +284998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "017a9dee-3793-4ff5-8521-675e61703fb3", + "id": "70f57875-5ad9-4763-9c7a-58b58ab5d820", "name": "Export all objects available", "originalRequest": { "url": { @@ -285064,7 +285064,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f62f6b8d-41f9-4e3b-b729-74279107257b", + "id": "b3229cde-c947-41ad-a55c-5eb6f8e91916", "name": "Export sources by ID", "originalRequest": { "url": { @@ -285130,7 +285130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b115b5be-a41d-4e05-b9c6-fb53dc36e453", + "id": "b09aed2e-4522-435c-9cdf-85f303ea8b85", "name": "Export transforms by name", "originalRequest": { "url": { @@ -285196,7 +285196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e657b0-9f4e-4592-9ad2-731178baaae4", + "id": "a9936007-5ed3-4b6d-bc6c-08c7d01f467e", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -285262,7 +285262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a45fb9ac-8e78-4ee2-9485-ce1ec738f4a3", + "id": "954254cf-88fe-4b0c-86e1-3dc116fa0c2c", "name": "Export all objects available", "originalRequest": { "url": { @@ -285328,7 +285328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9e069d1-ef52-4bb4-bd1d-7ffa04b3e374", + "id": "c57e5188-0b23-4873-8ba6-f5baf7c703da", "name": "Export sources by ID", "originalRequest": { "url": { @@ -285394,7 +285394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc19eac1-cbaf-498f-894c-6ea4ba12eed1", + "id": "bfe57fed-cc39-4425-a9ee-111532df32a0", "name": "Export transforms by name", "originalRequest": { "url": { @@ -285460,7 +285460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c745040c-2dae-4acb-a808-eca17c40a9a3", + "id": "da37ce81-72f6-4763-8da7-b4c86628957e", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -285526,7 +285526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41d72abc-5687-4e35-94bb-ce524875290a", + "id": "f32bdc61-1954-4dca-9da8-7a9b9bbad8d7", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -285592,7 +285592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8146e87-8ae1-4ae7-8960-3ee76f0b937b", + "id": "0407f3bc-d0f8-43f8-807d-a4a3297f0d13", "name": "Export sources by ID", "originalRequest": { "url": { @@ -285658,7 +285658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea0f0303-369d-4a32-9e59-a192e93203d2", + "id": "46340d8d-9014-48b2-9288-3fa49ca2649e", "name": "Export transforms by name", "originalRequest": { "url": { @@ -285724,7 +285724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "410c66e7-476c-42da-8519-7d31053bb1de", + "id": "ba1b8046-6c1b-4fa7-a3c4-17a7d481ea1d", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -285790,7 +285790,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81588d23-f84b-4973-8898-3c5adb92e036", + "id": "a1873ad3-cc5b-4a87-bda6-07da6aa13649", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -285856,7 +285856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfdd0316-a4f7-454b-9000-94ae70798a05", + "id": "ae71b53d-8fd2-46b4-8a30-8734bd74f45d", "name": "Export sources by ID", "originalRequest": { "url": { @@ -285922,7 +285922,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58ff1725-71ad-4147-923e-7e346089e5ae", + "id": "95248765-1598-4dd9-8d00-6106eefef039", "name": "Export transforms by name", "originalRequest": { "url": { @@ -285988,7 +285988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8eecfa01-6399-4dc4-90e5-f183339be82f", + "id": "24cccaf5-3c56-43ad-bea2-2905152a8114", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -286054,7 +286054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3428b5dd-0343-4457-9bad-7ca4bb69bd16", + "id": "d95e5f50-b9d1-41df-9212-fb821232ac95", "name": "Export all objects available", "originalRequest": { "url": { @@ -286120,7 +286120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f23bc5af-0803-4657-9124-079b030a9b32", + "id": "e9ca264f-ac45-41e1-80db-6d7262124f41", "name": "Export sources by ID", "originalRequest": { "url": { @@ -286186,7 +286186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed40d0c9-c863-4ef7-90b9-ad2ac7425816", + "id": "6addb20c-1904-40b6-b939-8da33ba1ed8d", "name": "Export transforms by name", "originalRequest": { "url": { @@ -286252,7 +286252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b5dfff1-51b5-4f4b-bab3-f7c12a092f20", + "id": "4d3b0792-e4eb-4092-a988-44a02b844bb1", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -286318,7 +286318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9be1a90b-41d9-4e32-9187-31b4c73ec5d1", + "id": "88c1d8ab-cea9-485f-a261-0a5a9518f9d3", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -286384,7 +286384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9500445-5c1f-46e3-8163-6869244e3395", + "id": "82b549a7-58b9-4aea-b72f-4c3b50cbd590", "name": "Export sources by ID", "originalRequest": { "url": { @@ -286450,7 +286450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d42711e-7ae1-4ff2-9606-ebad82fe8e13", + "id": "1e72511a-243a-47d1-82f3-7cb12a561b04", "name": "Export transforms by name", "originalRequest": { "url": { @@ -286516,7 +286516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8be5b079-8529-4858-9cf5-09828d9fe3a9", + "id": "cbcb429c-fda1-4431-a2fb-cbe29fe1f1a8", "name": "Export trigger subscriptions triggers and transforms with custom options", "originalRequest": { "url": { @@ -286588,7 +286588,7 @@ } }, { - "id": "11f5bcf5-f178-4b77-9820-85948ca0fd3a", + "id": "9e530817-7d9f-4edc-a906-d4f28e608760", "name": "Get export job status", "request": { "name": "Get export job status", @@ -286639,7 +286639,7 @@ }, "response": [ { - "id": "94842ed8-d9e3-44e6-8f06-49c70957d946", + "id": "29e8a8aa-4a46-4a5a-88c0-c690367155ed", "name": "Export job status successfully returned.", "originalRequest": { "url": { @@ -286693,7 +286693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7391ba24-e0d3-47f9-b755-cfc1acaae418", + "id": "ca3ab4c1-0e37-406b-9947-a3072cf8f364", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -286747,7 +286747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f013f7a0-5c83-4080-9e1a-758c105c790c", + "id": "f7c64c15-d9ba-4761-9697-a6e7a383a1a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -286801,7 +286801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b58a8335-bd79-4a97-a14d-dd2448ea529c", + "id": "54f2f5af-ac8e-45e0-bf12-bbd7dcde4c3e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -286855,7 +286855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "120b87d7-c7da-451f-bdd5-98211e831449", + "id": "16e34a78-266a-4b3b-90ea-f82bd285bf50", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -286909,7 +286909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdb4dd83-662e-4da2-97b6-441741b4ae23", + "id": "2c14e150-4a00-4e0d-9cd4-7b5b59e4615d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -286963,7 +286963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5b13db3-2c26-4ede-af73-8b4c2691b9e3", + "id": "461d8b2e-4ea9-4800-ab74-78fdb52dd846", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -287023,7 +287023,7 @@ } }, { - "id": "e5bf43f6-6741-4565-bfd2-e240b8569cea", + "id": "037e8bb1-52da-4b3d-8c07-eeeb228c8148", "name": "Download export job result.", "request": { "name": "Download export job result.", @@ -287075,7 +287075,7 @@ }, "response": [ { - "id": "12d6ff7d-27c5-4c20-8e7c-999d6bd907d8", + "id": "424e7e9d-75e2-4b15-82e8-9d154bfe7525", "name": "Exported JSON objects.", "originalRequest": { "url": { @@ -287125,12 +287125,12 @@ "value": "application/json" } ], - "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"ex_1\": \"Excepteur sed adipisicing\"\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"id_1d\": 55464399.58478907\n }\n }\n ]\n}", + "body": "{\n \"version\": 1,\n \"timestamp\": \"2021-05-11T22:23:16Z\",\n \"tenant\": \"sample-tenant\",\n \"description\": \"Export Job 1 Test\",\n \"options\": {\n \"excludeTypes\": [\n \"SOURCE\",\n \"SOURCE\"\n ],\n \"includeTypes\": [\n \"TRIGGER_SUBSCRIPTION\",\n \"TRIGGER_SUBSCRIPTION\"\n ],\n \"objectOptions\": {\n \"TRIGGER_SUBSCRIPTION\": {\n \"includedIds\": [\n \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n ],\n \"includedNames\": [\n \"Test 2\"\n ]\n }\n }\n },\n \"objects\": [\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"nisi_a3\": false,\n \"ex_3_\": true\n }\n },\n {\n \"version\": 1,\n \"self\": {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n \"object\": {\n \"irure_0a_\": 65164495\n }\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0e9c7b71-ba4a-4399-90fc-727950782c08", + "id": "4d5507b1-a9d6-459e-8658-6ca005c51183", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -287185,7 +287185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e4c82ef-e8af-4c32-bcdb-b39f43d95ceb", + "id": "9ff4f746-996a-4e5f-934c-2c1e7b8e1a5c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -287240,7 +287240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c831f6d4-d51d-4584-afb3-068177adbfdb", + "id": "2d1cd346-3d84-43c2-b08c-62a1b5f032fc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -287295,7 +287295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93d5acb3-3622-4960-a50a-b5c1676a9783", + "id": "0b1621ab-de30-449f-84bc-6c3c36e19dc3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -287350,7 +287350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60ff4b76-48d0-43ac-bb52-2707e50f202c", + "id": "db8875e7-a431-4173-8b99-87f4adbd9e4a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -287405,7 +287405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "576740b2-fa74-48ff-a17d-1791e8052a66", + "id": "85cda176-6c9c-4dc5-bb47-7d842da6d1b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -287466,7 +287466,7 @@ } }, { - "id": "4a32a651-0060-4796-a117-1de9a0406416", + "id": "825eddce-9078-42e8-ad4f-4096db4ca3b1", "name": "Initiates configuration objects import job", "request": { "name": "Initiates configuration objects import job", @@ -287540,7 +287540,7 @@ }, "response": [ { - "id": "858b31f8-8cc2-4160-9beb-0ac9a3a1c77e", + "id": "30ec7027-d528-4f82-b311-5d5c34871422", "name": "Import job accepted and queued for processing.", "originalRequest": { "url": { @@ -287628,7 +287628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93602ea5-34d6-4dde-8637-2434f96f3ffb", + "id": "1092c3fa-9729-4805-850a-5ca7fd133331", "name": "Client Error - Returned if the request body is invalid.\n", "originalRequest": { "url": { @@ -287716,7 +287716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "825f9715-d224-4a64-b639-dc8dd0cf05b4", + "id": "53055c3b-fba7-448d-b15b-f917306c59d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -287804,7 +287804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb00fe2-58ec-4a19-a7b5-87fce8de55b6", + "id": "75916934-7868-4257-9d0d-423790d8436c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -287892,7 +287892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34a67b01-5808-4911-8dfc-0bba8fea2ad9", + "id": "042c5948-c007-42dc-a266-bee592c83a2f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -287980,7 +287980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0f18f98-286d-435d-b1e1-3268f766a608", + "id": "c92e702e-2a07-486d-8c38-3d4065df06d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -288068,7 +288068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69e2b664-026d-47c3-acba-9af9d629c080", + "id": "e51d0247-b835-483b-8f23-75f38ec81266", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -288162,7 +288162,7 @@ } }, { - "id": "b47e88ee-6207-4150-bee4-f0e5d8ffc192", + "id": "9c10c78c-c498-40cc-8968-40af8ca61141", "name": "Get import job status", "request": { "name": "Get import job status", @@ -288213,7 +288213,7 @@ }, "response": [ { - "id": "08cce34a-dc98-49c1-9702-19eb675c99a2", + "id": "d2930944-beb8-4d08-909e-f1d9fc91b490", "name": "Import job status successfully returned.", "originalRequest": { "url": { @@ -288267,7 +288267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f680520-36bb-4033-b488-ffa4ff8c36ea", + "id": "e7c62571-20eb-45c5-9f8f-a5927e90cbdc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -288321,7 +288321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e345b1d-abff-4f09-9bad-48ef1271f936", + "id": "92cbfa44-3f7d-4812-965f-ee1444c9ab6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -288375,7 +288375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ee875b2-2c7a-48c5-9a7c-b88465567087", + "id": "c0663f47-d15c-448c-92d4-f5ef12c4e4cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -288429,7 +288429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73e8cb11-1723-4aa2-8b4c-55297834334c", + "id": "ca54a06b-b6ec-4200-9e8b-6e14b7bcbb72", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -288483,7 +288483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9531fff-77d8-4943-a5e0-5c02c44e826b", + "id": "ea696771-93d5-44a4-b18f-b3f8d2e78742", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -288537,7 +288537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6439235e-8474-4aaf-b6ff-07bf36dcade3", + "id": "baceaae6-5169-488a-91ad-4fa19edc4b52", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -288597,7 +288597,7 @@ } }, { - "id": "b68bebae-8623-4cdc-9e26-ca4ec9657c84", + "id": "031afc89-ba04-420c-8044-3c93df3ed51a", "name": "Download import job result", "request": { "name": "Download import job result", @@ -288649,7 +288649,7 @@ }, "response": [ { - "id": "56098238-cc3b-4180-89c0-f9263e9d38ef", + "id": "01334b2e-0bc6-42c7-a629-ea30bcc631a5", "name": "Import results JSON object, containing detailed results of the import operation.", "originalRequest": { "url": { @@ -288699,12 +288699,12 @@ "value": "application/json" } ], - "body": "{\n \"results\": {\n \"velitd47\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"dolore_b\": {},\n \"amet_a7\": {},\n \"enim_ce\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"sint_6\": {},\n \"amet256\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"eua\": {},\n \"in_4dc\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"cupidatatc1\": {},\n \"cillum_3_\": {},\n \"proident_598\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"fugiat_52f\": {},\n \"esse_af\": {},\n \"Excepteur60d\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"aute_42a\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n },\n \"aliqua24\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"minim9c\": {},\n \"sunt_8\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"dolore_8d\": {},\n \"laboreae\": {},\n \"id_9c\": {},\n \"incd9\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"aliquipc\": {},\n \"labore1\": {},\n \"occaecat_d\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Loremc7\": {},\n \"incididunt_08\": {},\n \"Excepteurf\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"velita6f\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"nostrud_fef\": {},\n \"ut_e_6\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n }\n },\n \"exportJobId\": \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n}", + "body": "{\n \"results\": {\n \"in0\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"reprehenderit_1f\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Excepteur_5\": {},\n \"animf\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ut_50\": {},\n \"consequate\": {},\n \"cillum_1be\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ex_993\": {},\n \"sunt8c0\": {},\n \"laborum_f01\": {},\n \"culpa_e0\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Excepteur_7\": {},\n \"non_b\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"ea_b33\": {},\n \"enim_5a\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n },\n \"laborume\": {\n \"infos\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Ut_a\": {},\n \"sint041\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"in_5\": {},\n \"Lorem8b\": {}\n }\n }\n ],\n \"warnings\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"Ut_191\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"laboris6\": {}\n }\n }\n ],\n \"errors\": [\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"voluptatee\": {}\n }\n },\n {\n \"key\": \"UNKNOWN_REFERENCE_RESOLVER\",\n \"text\": \"Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]\",\n \"details\": {\n \"commodo_04_\": {}\n }\n }\n ],\n \"importedObjects\": [\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n },\n {\n \"type\": \"SOURCE\",\n \"id\": \"2c9180835d191a86015d28455b4b232a\",\n \"name\": \"HR Active Directory\"\n }\n ]\n }\n },\n \"exportJobId\": \"be9e116d-08e1-49fc-ab7f-fa585e96c9e4\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7e99fe75-5fd8-449d-99e0-139914941669", + "id": "e75729b5-8294-41a8-9891-5c537db23e67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -288759,7 +288759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc9f6992-275f-4ed9-b777-04e5928f4117", + "id": "28de10a0-71ac-410a-8d0f-8a590afe27d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -288814,7 +288814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e993e0a-49c2-4ab7-9096-dd1ffb6946dd", + "id": "016eaaac-047d-4995-b4c5-d778fa8177a8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -288869,7 +288869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cdf89bf-903e-47b7-b45b-dac4031f8a79", + "id": "d0f12df8-ee68-4785-b7e9-f9054b328175", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -288924,7 +288924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09bd79c5-cff8-4586-9f35-99f55de0b9d0", + "id": "4af71fdb-46ec-4036-9d47-9622e80daa78", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -288979,7 +288979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38041e30-9b7f-4a41-8708-d6f0f8f779a7", + "id": "7fedec32-4610-4186-ac20-255a6907cde5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -289040,7 +289040,7 @@ } }, { - "id": "80c15ef3-a63e-425b-8a89-8d979053e26d", + "id": "a48549e5-5e2d-4542-9b9c-096610ea74f8", "name": "Get config object details", "request": { "name": "Get config object details", @@ -289079,7 +289079,7 @@ }, "response": [ { - "id": "e21eed6e-65a4-41cb-8cee-63fb55b2b788", + "id": "18c7ce2f-a6cd-4f87-b3e4-bd12c78e60fa", "name": "Object configurations returned successfully.", "originalRequest": { "url": { @@ -289132,7 +289132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f64bfd17-d1b0-4dc5-b28f-6df04c77ddc3", + "id": "78421eea-29a5-478b-8ba4-26b692032040", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -289185,7 +289185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc97cb7-4cfc-46d3-9409-42ec13c07ddb", + "id": "8c663202-bd86-4028-8394-2f7e2cb1ae0c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -289238,7 +289238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98c6a8f6-68d9-4b00-97df-b859800a4521", + "id": "9b59bdb9-7e08-4830-b837-06956d8d91b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -289291,7 +289291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41163501-f0a2-44ed-9b5e-3f116328fec7", + "id": "a526805f-0e24-4e69-9135-e616c52fff13", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -289344,7 +289344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e532b3-997d-477b-8174-b890b815ff8f", + "id": "f91d48b7-5237-4d57-a124-b73a832ba728", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -289397,7 +289397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6cca508-af2a-461e-91ec-93165cd42333", + "id": "34cac9f8-a78c-4517-92bf-f6b0d94f9f2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -289462,7 +289462,7 @@ "description": "Use this API to leverage power of LLM to generate suggested entitlement description.\n", "item": [ { - "id": "17e37358-3e3b-4916-926c-2766d2bec71c", + "id": "38e48f64-19d9-4a04-8174-77416890d5f3", "name": "Submit Sed Batch Stats Request", "request": { "name": "Submit Sed Batch Stats Request", @@ -289513,7 +289513,7 @@ }, "response": [ { - "id": "27e58fae-8873-4bca-abd3-2832089a01cf", + "id": "79005c5c-f39f-4661-9dd3-ee56c19f4d69", "name": "Stats of Sed batch.", "originalRequest": { "url": { @@ -289562,12 +289562,12 @@ "value": "application/json" } ], - "body": "{\n \"batchComplete\": true,\n \"batchId\": \"urn:uuid:ac8628a3-9ce6-2142-ab17-3de7c9afe1dd\",\n \"discoveredCount\": 100,\n \"discoveryComplete\": true,\n \"processedCount\": 100\n}", + "body": "{\n \"batchComplete\": true,\n \"batchId\": \"urn:uuid:2ebe42f7-57e6-c5ac-0ace-8401645c5035\",\n \"discoveredCount\": 100,\n \"discoveryComplete\": true,\n \"processedCount\": 100\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "41468320-ee06-4ad0-886a-d281a7be51ea", + "id": "78ccbe35-f6bf-4a12-b5e2-c46cd9af5981", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -289621,7 +289621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d797d07-fd42-4c19-acfd-723514c7990f", + "id": "e4c6da07-09fa-4087-830e-f9997599104e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -289675,7 +289675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c87a8c72-6724-427f-b06d-9ca4fae095b9", + "id": "dc01c54a-f190-4c4e-b66f-c98ba9c9039c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -289729,7 +289729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf606a86-a52f-4723-bd29-07e9864f106a", + "id": "44cd460e-1289-4b26-9f2a-e4c9d66faed7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -289783,7 +289783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb3a7797-e73a-47fc-a302-99d60c7b20e3", + "id": "d3e64b14-fa6f-4d5f-b4b7-afe01c42bc43", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -289837,7 +289837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0125d3d-fbc3-43d8-9462-6cd18c4eb4f0", + "id": "0a716c13-ebc5-461c-82b0-e764957bb717", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -289897,7 +289897,7 @@ } }, { - "id": "717d5508-0dc3-4eea-94a7-76a0fd438b15", + "id": "5da1909f-4452-40b5-924e-0af266d8fff2", "name": "List Sed Batch Request", "request": { "name": "List Sed Batch Request", @@ -289935,7 +289935,7 @@ }, "response": [ { - "id": "689773fb-0041-4be3-a830-9cff37d6d109", + "id": "2c7c4900-ea72-40a1-8802-499016e988ba", "name": "Status of batch", "originalRequest": { "url": { @@ -289987,7 +289987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e9e84c4-ef3c-4cc8-bcbe-bd8b98729b0b", + "id": "0fb0e805-0528-42a2-87be-ca03e6353e41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -290039,7 +290039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73623989-84eb-42d8-8f87-72bb94ad62f9", + "id": "2abc0daa-87d0-4871-978a-b7ad0d5a3276", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -290091,7 +290091,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60ccaf74-1d59-427c-aa94-0a406ee8085c", + "id": "6ec7c19c-9f55-4e9d-a197-ad289709c59c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -290143,7 +290143,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b85ae9c-968b-4caa-8b82-0004d3928bb3", + "id": "129b31c1-bb96-420a-a589-c96eccba7f20", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -290195,7 +290195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4e2b3d7-36a0-4d5c-8bcf-10efaa3fd4e6", + "id": "44f10fbf-fbff-4c53-82c9-12599fcecd3e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -290247,7 +290247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "621072bc-d146-4b40-abca-98912f46a43d", + "id": "0b1de1f6-bf2f-4727-a223-91c558b253ae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -290305,7 +290305,7 @@ } }, { - "id": "5ccc26f8-67c5-4cb1-9b5d-8ef48a71a1ec", + "id": "737356c3-6ff0-4f28-bb25-4fc2305c2f0d", "name": "Submit Sed Batch Request", "request": { "name": "Submit Sed Batch Request", @@ -290356,7 +290356,7 @@ }, "response": [ { - "id": "d588a92c-b85c-4bac-ad81-d0758d4b9522", + "id": "35601621-3a24-4b3d-a113-9b0d688e739a", "name": "Sed Batch Response", "originalRequest": { "url": { @@ -290416,12 +290416,12 @@ "value": "application/json" } ], - "body": "{\n \"batchId\": \"e3f77a8e-bdea-dd68-5477-a2edf12184c6\"\n}", + "body": "{\n \"batchId\": \"3d98ad27-d6fd-1d2b-e310-af07a3f3a141\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7ae7758b-d844-463e-8a7a-e60b093a6649", + "id": "f8c50689-fb7a-47f9-9571-bebbd0bc9358", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -290486,7 +290486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2b36d54-b675-4d46-956c-417ec44647bc", + "id": "d70abfa0-6650-43ac-84d4-e21392cc45f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -290551,7 +290551,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bbb5699-ca2b-4b81-82c9-ca6214631139", + "id": "37f354a9-0cc9-473f-918c-68653e9feefe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -290616,7 +290616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba89c3ec-e033-4545-ba65-0c12dd8440a1", + "id": "a7098efa-d174-4318-8a0c-20617bfa442b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -290681,7 +290681,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95222d15-1fa8-4cb7-a623-073e6156563c", + "id": "f8fbd62f-20e6-4340-9503-a194254030aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -290746,7 +290746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "095104c9-3e9b-446c-80b9-f429d815b86a", + "id": "ec21caea-dd7e-4e9e-832f-313443d021cc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -290817,7 +290817,7 @@ } }, { - "id": "c467228f-9f0c-40a3-8b09-7a9d89ecf28d", + "id": "80e751a3-def8-4f25-af35-634f09ae3923", "name": "Submit Bulk Approval Request", "request": { "name": "Submit Bulk Approval Request", @@ -290857,7 +290857,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -290868,7 +290868,7 @@ }, "response": [ { - "id": "1d383e30-4f63-42fa-a061-6b14dced5656", + "id": "614d13c7-eba0-4af2-aa92-c0f298bf0d43", "name": "List of SED Approval Status", "originalRequest": { "url": { @@ -290911,7 +290911,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -290928,12 +290928,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"de0a89ad-f854-5f4b-e186-4899c613811f\",\n \"status\": \"SUCCESS\"\n },\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"6f247a03-9a0d-9a44-8335-9c1e43e93f59\",\n \"status\": \"SUCCESS\"\n }\n]", + "body": "[\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"urn:uuid:c25fe2aa-387b-b96b-00a0-0f0418601b30\",\n \"status\": \"SUCCESS\"\n },\n {\n \"failedReason\": \"invalid status\",\n \"id\": \"13dd2e2c-b6f8-e53f-f553-b5f6a15de26d\",\n \"status\": \"SUCCESS\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1db17cd9-6c0d-42f7-b671-c81d72e7f70c", + "id": "37f4669a-3c58-4215-9371-43d1eb5997fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -290976,7 +290976,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -290998,7 +290998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fda1d57-32ab-40dd-a5e6-a543a6dbbb40", + "id": "88749ec5-81c7-430f-999a-4212ea126cfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -291041,7 +291041,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -291063,7 +291063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f8fa529-5faa-4e90-a247-2e3067ccf38d", + "id": "fe3e352f-89e3-4725-a371-3cfb05f21266", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -291106,7 +291106,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -291128,7 +291128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a596f6a3-5de6-44b1-b424-e448fb25cc5e", + "id": "4d3d0f76-0d37-436e-a9a8-6832f8b14158", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -291171,7 +291171,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -291193,7 +291193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53a296f7-8699-4177-b348-31c9f6b1d787", + "id": "5917b9c3-c04d-4289-9a2a-42514c9ad490", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -291236,7 +291236,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -291258,7 +291258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4840f164-9b6b-44b0-8a89-51e8a6303456", + "id": "cb6c4778-f7b4-451a-aaf0-155d6d93dfad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -291301,7 +291301,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "[\n {\n \"items\": [\n \"76ffae51-e349-f618-c53b-ae02153451d5\",\n \"urn:uuid:61eb3775-5ab7-d07a-0f76-a07f507abc85\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:68973962-136e-b7c3-8dd7-00e95b9041cb\",\n \"e05e68cf-fdc7-2efb-9698-14bfb0b92488\"\n ]\n }\n]", + "raw": "[\n {\n \"items\": [\n \"588f3f31-5299-9038-aa51-6df94605ea23\",\n \"6ec6cf27-eb60-84f7-0260-af62e31e93ec\"\n ]\n },\n {\n \"items\": [\n \"urn:uuid:c04bec90-e65e-958d-5fa4-e86d67a5445a\",\n \"urn:uuid:c51e22c8-1229-c4ee-887f-1993c5987c6a\"\n ]\n }\n]", "options": { "raw": { "headerFamily": "json", @@ -291329,7 +291329,7 @@ } }, { - "id": "2723c545-d273-4860-957d-566aa31f7d4f", + "id": "19908cab-21db-421c-a1b3-622fa62746f9", "name": "Submit Sed Assignment Request", "request": { "name": "Submit Sed Assignment Request", @@ -291369,7 +291369,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291380,7 +291380,7 @@ }, "response": [ { - "id": "a3473f18-2338-4df6-9422-1d960e42397c", + "id": "bf31fa69-adac-437d-9d89-3198adf797d6", "name": "Sed Assignment Response", "originalRequest": { "url": { @@ -291423,7 +291423,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291440,12 +291440,12 @@ "value": "application/json" } ], - "body": "{\n \"batchId\": \"urn:uuid:cc9a13ce-7e62-da34-5608-97beae3a5b93\"\n}", + "body": "{\n \"batchId\": \"d440d21a-b111-63ce-3f23-283087736d84\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "92713bfe-dd1f-403c-9528-144ae2615ebf", + "id": "8dcc3925-1b44-4e61-87d6-0150e2c32036", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -291488,7 +291488,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291510,7 +291510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59c815b7-992c-47f0-a1d2-cfcb69db383e", + "id": "a85391ea-fa3a-45d5-ae8a-112f98bea453", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -291553,7 +291553,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291575,7 +291575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f178ee23-99fd-4203-8c1d-33d45299e933", + "id": "c0055d79-4268-48ec-8bc2-37b1a6a47033", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -291618,7 +291618,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291640,7 +291640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41b5c68d-a289-4918-892a-da04a0391715", + "id": "33460fba-55fe-4659-9728-215978547dcf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -291683,7 +291683,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291705,7 +291705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af47073a-bbec-4bef-bbe3-fa9976ebcb82", + "id": "752d43c0-52d5-49a0-9e07-a58b5f5730a3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -291748,7 +291748,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291770,7 +291770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35832983-f58a-456a-8ceb-e604018b2800", + "id": "bbe8eead-069b-48b4-bbe2-9a90b3d42b55", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -291813,7 +291813,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"39d7cd8e-a174-ba6f-fd12-23d0bc7d417c\",\n \"d9e00716-019b-c530-9ce2-80c7dd851f39\"\n ]\n}", + "raw": "{\n \"assignee\": {\n \"type\": \"SOURCE_OWNER\",\n \"value\": \"016629d1-1d25-463f-97f3-c6686846650\"\n },\n \"items\": [\n \"urn:uuid:26862a52-fadd-2de6-1291-5c3271c5d3bb\",\n \"629869cb-e1a8-ff7c-c19a-969bf16fb46a\"\n ]\n}", "options": { "raw": { "headerFamily": "json", @@ -291841,7 +291841,7 @@ } }, { - "id": "53296320-00fb-4cf8-b785-21ebbdcf9eed", + "id": "65a2a68d-543e-44c6-a554-a16a026855dd", "name": "List Suggested Entitlement Descriptions", "request": { "name": "List Suggested Entitlement Descriptions", @@ -291943,7 +291943,7 @@ }, "response": [ { - "id": "60f6d8bc-c2da-4e64-a823-cdc72fb69945", + "id": "18921f9f-092f-4078-9150-67a189b9dd4d", "name": "List of Suggested Entitlement Details", "originalRequest": { "url": { @@ -292059,7 +292059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "618d4e9f-2ca9-4ba8-9246-90fde5285cad", + "id": "183d16eb-d5fb-4068-83ec-74d079545d6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -292175,7 +292175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e57e2b-c99b-46bd-97b8-3d558122a1fb", + "id": "f092c712-82b7-4f45-b9b8-602ba04e0c01", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -292291,7 +292291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaa1ca8d-1c5b-4bd4-aa94-2170bce7a570", + "id": "40a1d673-bbb7-4530-be60-e8cc5e029076", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -292407,7 +292407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb900afa-9385-4571-80ae-5eb98b5948ac", + "id": "52c7dd29-e37a-455c-a5b9-df31a64fb85f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -292523,7 +292523,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66bce9e0-f25c-4e11-a13c-7c8c21a0baf9", + "id": "a3260ad2-ef7d-4958-8ffe-b4dff0c3f763", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -292639,7 +292639,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a039b7a-5633-4517-ad2b-f0ba95bfa07d", + "id": "9192a56a-6056-432d-b89f-bb8942f296d2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -292761,7 +292761,7 @@ } }, { - "id": "2c6fe8ce-c8d2-4bd8-bc4e-635e5da48529", + "id": "240b9d1a-bfc9-4d39-9302-0f539eb8bba5", "name": "Patch Suggested Entitlement Description", "request": { "name": "Patch Suggested Entitlement Description", @@ -292823,7 +292823,7 @@ }, "response": [ { - "id": "afe32eeb-8a22-410c-922f-a73f194325ef", + "id": "06c4c178-bcd5-4e83-859a-4abaf601f3fb", "name": "detail of patched sed", "originalRequest": { "url": { @@ -292888,7 +292888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8bdd641-fdfc-4e37-8d72-93e7756936ee", + "id": "5fde5705-6759-4e05-99ff-bb8548158095", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -292953,7 +292953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ab7e183-dd0e-4286-98fb-913924b401c0", + "id": "fed6feb5-fdf3-4252-86f0-2ac537ecec74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -293018,7 +293018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "604fb072-9653-425b-a9e6-bddb2f68b089", + "id": "2866312c-601b-4178-955d-fe6f3fd8b2fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -293083,7 +293083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40686afb-bc13-4fe6-adaa-6260086d8d08", + "id": "ec81226d-55c0-4efb-833e-84836a7e69b9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -293148,7 +293148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a75a10c-05dd-4e9b-a12a-01a6b0cc02b8", + "id": "8b862e0a-68e8-480d-968e-1a7c12eb0936", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -293213,7 +293213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7d276bf-9f1a-4a66-833d-6824348fb440", + "id": "a3808b20-91c9-4c2f-bf7e-da3421797af5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -293290,7 +293290,7 @@ "description": "Use this API to implement object tagging functionality. \nWith object tagging functionality in place, any user in an organization can use tags as a way to group objects together and find them more quickly when the user searches Identity Security Cloud. \n\nIn Identity Security Cloud, users can search their tenants for information and add tags objects they find.\nTagging an object provides users with a way of grouping objects together and makes it easier to find these objects in the future. \n\nFor example, if a user is searching for an entitlement that grants a risky level of access to Active Directory, it's possible that the user may have to search through hundreds of entitlements to find the correct one. \nOnce the user finds that entitlement, the user can add a tag to the entitlement, \"AD_RISKY\" to make it easier to find the entitlement again.\nThe user can add the same tag to multiple objects the user wants to group together for an easy future search, and the user can also do so in bulk.\nWhen the user wants to find that tagged entitlement again, the user can search for \"tags:AD_RISKY\" to find all objects with that tag. \n\nWith the API, you can tag even more different object types than you can in Identity Security Cloud (access profiles, entitlements, identities, and roles). \nYou can use the API to tag all these objects:\n\n- Access profiles \n\n- Applications \n\n- Certification campaigns\n\n- Entitlements\n\n- Identities \n\n- Roles \n\n- SOD (separation of duties) policies\n\n- Sources \n\nYou can also use the API to directly find, create, and manage tagged objects without using search queries. \n\nThere are limits to tags: \n\n- You can have up to 500 different tags in your tenant.\n\n- You can apply up to 30 tags to one object. \n\n- You can have up to 10,000 tag associations, pairings of 1 tag to 1 object, in your tenant. \n\nBecause of these limits, it is recommended that you work with your governance experts and security teams to establish a list of tags that are most expressive of governance objects and access managed by Identity Security Cloud. \n\nThese are the types of information often expressed in tags: \n\n- Affected departments\n\n- Compliance and regulatory categories \n\n- Remediation urgency levels \n\n- Risk levels \n\nRefer to [Tagging Items in Search](https://documentation.sailpoint.com/saas/help/search/index.html?h=tags#tagging-items-in-search) for more information about tagging objects in Identity Security Cloud. \n", "item": [ { - "id": "0834ae93-b359-4964-ab74-41252d9721c4", + "id": "81e24eb1-24cf-4b2a-803b-be88a51cff4a", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -293356,7 +293356,7 @@ }, "response": [ { - "id": "33043be9-e9ee-47e4-bf50-aca840104082", + "id": "e70b516f-8c47-4bcf-ac15-315b2c4f00dc", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -293436,7 +293436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adec1b41-b0c5-4e18-99ce-2d2e00837c81", + "id": "230e9add-ed4b-48ba-9852-498b8c9764bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -293516,7 +293516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab295036-b8a0-4fa3-9405-82bc3de15eb2", + "id": "82cd7ac1-55f2-41e7-982a-952f1cbc2fdb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -293596,7 +293596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3b6deda-780c-42aa-933c-c2dd017c9a0f", + "id": "98156e32-954f-464b-b307-39d4ebfa3238", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -293676,7 +293676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e6e4f42-df97-480c-8f24-e182c2e76b60", + "id": "ffa7a873-fc7a-411a-b1b4-beee47364399", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -293756,7 +293756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec3544fe-5657-45e2-bf97-18a0ea7a4643", + "id": "701e7d81-2afa-4f4c-9974-2d996662b442", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -293842,7 +293842,7 @@ } }, { - "id": "350e8e3c-7c40-450e-84c7-fa1322579de5", + "id": "3ec416d4-4f72-4150-8ced-4e57cb9024d7", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -293884,7 +293884,7 @@ }, "response": [ { - "id": "37b99435-a267-407d-9815-24c0afe07556", + "id": "09070634-f371-4737-a2c3-2b6424bb0522", "name": "Created.", "originalRequest": { "url": { @@ -293930,7 +293930,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9d771a84-ae53-40e9-81ce-03348b627fa7", + "id": "82d6b668-1bb1-460c-a1fa-bad36f1eb048", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -293986,7 +293986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0a8e1e4-610d-4407-9c68-96e1e83daad6", + "id": "9aa8c506-2c92-4aea-9394-aa9e4e98d5ea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -294042,7 +294042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "907db568-3008-436d-a2bb-b8aa2e68156a", + "id": "957d2c62-be33-4e19-8ac0-0f023017a4e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -294098,7 +294098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85402bd4-beee-4fac-ba6b-69dc532e3e5d", + "id": "bbf2f2e7-baf8-4610-a886-79b8c76a8d7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -294154,7 +294154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "231491c0-d15d-45a9-a806-1414acc413d1", + "id": "d9a7b522-da2b-4e4e-b4b0-0df7f7f69353", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -294216,7 +294216,7 @@ } }, { - "id": "dda2af66-312e-4dc2-b3b4-a242148ab86f", + "id": "426065ef-b911-45af-a285-e60d7fa6f141", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -294294,7 +294294,7 @@ }, "response": [ { - "id": "19864119-6a85-4da3-b57e-4feac788cd72", + "id": "8b92df5a-30b4-40bf-a1d1-337198f03807", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -294375,7 +294375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "413e0882-c331-402d-8293-ccff446709bb", + "id": "187235e1-8d50-4198-88db-1437535f1992", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -294456,7 +294456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adef54f4-1ea2-452f-be4e-816c79617856", + "id": "4b59f29c-c1e4-495d-8652-7efdec4df747", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -294537,7 +294537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcb5880b-7d49-48ce-8bad-c6d0b1d83c22", + "id": "494dc3bd-3b48-45be-a55c-6b4b6b353cdf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -294618,7 +294618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15fa83f0-9b7e-46b0-8ede-8b21d0367036", + "id": "2dc5cf46-89b4-48a5-b578-b1f974e0af8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -294699,7 +294699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96a05f33-404a-4e1f-92cc-2668f6cfb8d9", + "id": "8cc88cb1-0832-4e09-9466-7b6ef0f5a64a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -294786,7 +294786,7 @@ } }, { - "id": "2f8128d3-3910-4d2a-9fa2-f35dcc2d4e79", + "id": "cf611610-1424-434e-8ad3-c6aad8f17275", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -294838,7 +294838,7 @@ }, "response": [ { - "id": "ca4f2408-d2c3-416b-ba81-a4fd338a35d3", + "id": "86d616ae-90b8-4c0c-88ac-76e2ac07ed91", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -294883,7 +294883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aca688ef-c8ba-4187-b991-c98ebbdc35e6", + "id": "e866f624-b739-4c23-96e5-5b166e27f094", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -294928,7 +294928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b65acb5-eaee-4d09-9f4a-8d41d141c6bd", + "id": "aeea86a9-26dc-407d-91bf-5a4cf8518bd2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -294973,7 +294973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11001a9b-ebba-427d-a6a1-638364cf3061", + "id": "95aaafa5-6fb3-46df-9a62-b5f070c2578a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -295018,7 +295018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c21589d-8eb0-462e-964e-b01bbb226eee", + "id": "1178856d-d903-467f-9d43-1a5729b08225", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -295063,7 +295063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "febaa9e4-23ee-490c-9cbe-3f1b6fd34a84", + "id": "f6bf805b-a5dd-4b82-b076-c5ee5ec51806", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -295114,7 +295114,7 @@ } }, { - "id": "78d2b4ef-9dc7-430e-b2f0-590b234a5dfb", + "id": "66e7700b-535f-4bc2-a7fb-57bec0db9508", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -295179,7 +295179,7 @@ }, "response": [ { - "id": "aa41b2cf-af28-4016-995b-30b35f549f5e", + "id": "24f7ed9f-20ba-45b2-8c24-90d34875cf5b", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -295237,7 +295237,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8a004f3-3484-4ae8-b731-911d1388fce3", + "id": "65e1f9b5-68db-4fb9-80d2-1212ec783808", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -295295,7 +295295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca1ae14a-9cb5-4511-9fe3-c5b7dcf227de", + "id": "107f2af8-b0e5-432e-8c2e-2b6e355ac328", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -295353,7 +295353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f9cbd28-d7bf-4ecf-8ae2-039233acbe7f", + "id": "7bb91786-83df-4114-8c37-e1be1aed8eb4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -295411,7 +295411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd4186d9-69e6-43fd-9aab-58f4f28ce9d7", + "id": "f9363957-3f87-4593-869d-4405bb06ae6b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -295469,7 +295469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3589e819-8206-4721-94f0-5613739dbfc7", + "id": "7efcc7e0-cdb1-455a-8aaa-40ed148d5f7a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -295533,7 +295533,7 @@ } }, { - "id": "5fb1c2f9-b8ce-4fab-a06a-61385215de2d", + "id": "60fceac0-7bac-4d1d-99c6-b52adc6109a3", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -295585,7 +295585,7 @@ }, "response": [ { - "id": "69411f8b-f1f3-476e-a921-9eb0cbbbe6f5", + "id": "24678711-3c0a-417a-89a7-4e187971933f", "name": "No content.", "originalRequest": { "url": { @@ -295620,7 +295620,7 @@ "_postman_previewlanguage": "text" }, { - "id": "616d9650-2ac7-4106-93a5-39e7dd9b97c4", + "id": "02604682-b261-4849-99d1-466162b741a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -295665,7 +295665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36268dcc-91b6-433c-bd6f-dc909695e9ad", + "id": "1841be45-f5cb-47a9-b957-88833413c2aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -295710,7 +295710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b998914a-7224-4c8a-ad53-d18ce68180df", + "id": "a6b8b68d-da38-4d8c-9c0f-dbc8f43632b0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -295755,7 +295755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "649fda75-291f-4bce-bfc1-45aa077ba557", + "id": "2d9bf058-457b-4bb0-9b29-f7b217ca5948", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -295800,7 +295800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60d9e45b-73d3-4b52-8494-21f3c3e7eb84", + "id": "7dae6ba5-953d-46ba-925e-1baf67f7c887", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -295851,7 +295851,7 @@ } }, { - "id": "11c02217-4f8c-4179-a72e-56bf96860a40", + "id": "f69ac902-e11c-4897-813b-8f48fbd63010", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -295894,7 +295894,7 @@ }, "response": [ { - "id": "3394f29b-b113-4361-975f-cc64b1e6deef", + "id": "4e3d938c-a234-470a-8ab7-915f5a0b049f", "name": "Request succeeded.", "originalRequest": { "url": { @@ -295951,7 +295951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754ea6bc-0835-40f3-9e93-cdbaca5840e4", + "id": "c87272e4-17a7-405b-9521-f81bc92227e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -296008,7 +296008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62577816-e980-41b9-a8ba-32492b52d7b2", + "id": "6ba0ef51-af6f-4454-9829-113edb13a96f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -296065,7 +296065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6ccab54-d654-449d-9145-f83b8e2afc57", + "id": "b55e5826-2b82-4d73-b792-138627c6d9b6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -296122,7 +296122,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2f90105-3b84-4bd2-b9ff-c49163a05305", + "id": "cfe3f4b4-d515-469b-9bcc-41dc31a2497b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -296179,7 +296179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc7d1082-a01b-484f-950a-5cb7a61236aa", + "id": "4058fab6-5d7b-4ffc-9698-19d7fd0b8b80", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -296242,7 +296242,7 @@ } }, { - "id": "1da2f161-6fdb-4df5-84d1-885d7ed0ffb0", + "id": "054e2043-f323-42cc-8bdf-8d1c25123535", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -296285,7 +296285,7 @@ }, "response": [ { - "id": "5ce0929f-ec62-4d9d-bad2-233540c48d96", + "id": "ac59c941-bce9-499c-92de-2e1d44559ff3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -296332,7 +296332,7 @@ "_postman_previewlanguage": "text" }, { - "id": "55b87e9c-71e2-469e-bed6-b785882dabf4", + "id": "a7611184-cbb0-4f61-8bca-072ac839acc2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -296389,7 +296389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d631cced-4d38-4843-af2a-2c8cc6b48c33", + "id": "1a7482ed-1390-4c32-8514-498f18718917", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -296446,7 +296446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b521cedf-8e61-457d-8e98-f2975bc90a6b", + "id": "7004a4e8-3ad3-4484-8ade-9ab81562eefb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -296503,7 +296503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36221115-efab-41bf-9547-e559367b8993", + "id": "16bce543-59a1-40ca-ad4f-66303809777f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -296560,7 +296560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "797e20c0-4aff-47b7-bf36-2aa34dccc180", + "id": "c6ffbcfe-39ac-4439-be79-e4566ef59914", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -296629,7 +296629,7 @@ "description": "", "item": [ { - "id": "48364d58-bfc3-45af-9d4b-ca2ebade6291", + "id": "77c730ff-a257-4b8b-87ed-1aa82f2b0983", "name": "Get task status by ID.", "request": { "name": "Get task status by ID.", @@ -296679,7 +296679,7 @@ }, "response": [ { - "id": "77b0c74e-f30f-4867-9c8a-1377e02aa9f6", + "id": "7bd1c063-ad8d-4b11-8ad7-52bf760f12d5", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -296727,12 +296727,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"sint72\": true,\n \"veniam__\": -58509054.828046866\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"ad_2\": false,\n \"dolore_c1a\": 90428406.83208343,\n \"ut_98\": \"ad dolore\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "7fb8d77c-c43e-4d3f-b13f-4dd40f254a44", + "id": "f4a8d1ed-8a35-4937-b1e4-53a9d3433f27", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -296785,7 +296785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9b6b50f-2643-42da-b9c5-66ab2e3a31b7", + "id": "674d2c1f-c83b-48ef-82f1-00648ec5e00b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -296838,7 +296838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11a4919c-e6f7-4f72-915d-939d87c997f5", + "id": "7e5b6370-06c3-4ee1-91d6-53d40c8b26af", "name": "Forbidden, generally due to a lack of security rights", "originalRequest": { "url": { @@ -296881,7 +296881,7 @@ "_postman_previewlanguage": "text" }, { - "id": "22de84dc-d34c-4819-a1fb-e9506ef30b1a", + "id": "b10b1b69-06d2-4859-83eb-39fdc31e8499", "name": "TaskStatus with the given id was not found.", "originalRequest": { "url": { @@ -296924,7 +296924,7 @@ "_postman_previewlanguage": "text" }, { - "id": "326adea8-038a-4891-9c70-43b140426ab5", + "id": "9cbe64aa-d86d-4dd5-8722-e0c8e28a06a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -296977,7 +296977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a697db08-fbdd-4ce2-9e45-f7f5477c8281", + "id": "20929d65-859c-4f40-9b3c-62e2995eb462", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -297036,7 +297036,7 @@ } }, { - "id": "e778a1b7-430f-4229-a254-504388dfce23", + "id": "efee5510-b8ee-4a03-93f1-97611e1c9382", "name": "Update task status by ID", "request": { "name": "Update task status by ID", @@ -297099,7 +297099,7 @@ }, "response": [ { - "id": "0384c2bd-c12b-45cd-aef1-19bfdcfb3477", + "id": "db12b9d8-fbaf-46ab-920e-a7722808ae13", "name": "This response indicates the PATCH operation succeeded, and the API returns the updated task object.", "originalRequest": { "url": { @@ -297160,12 +297160,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"sint72\": true,\n \"veniam__\": -58509054.828046866\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", + "body": "{\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"ad_2\": false,\n \"dolore_c1a\": 90428406.83208343,\n \"ut_98\": \"ad dolore\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "0b3754f4-3efe-4528-bf70-5f04690861b2", + "id": "347ed9f4-8658-40e0-9486-39fe44291f6d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -297231,7 +297231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9d35aac-ec23-4f00-ae0f-6f62062f8145", + "id": "1972175b-cad9-4c1a-974f-38d635a51723", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -297297,7 +297297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e54872c-3d96-4016-8780-75c3454f0b13", + "id": "80cacd1b-461d-414d-b0ed-edfcdee9a25b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -297363,7 +297363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dad5bda9-4a60-4ed3-858c-dc30eab988d1", + "id": "1d761c2a-255b-4671-b877-225d147aac41", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -297429,7 +297429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f763889-3d0e-4f1f-8916-556fabcb1552", + "id": "b73d258a-40fb-4eda-a134-7081a6765b59", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -297495,7 +297495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b89a4760-468b-4121-ad97-c65787cdd34d", + "id": "fc237ddd-08ee-4516-b241-122ecd6866b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -297567,7 +297567,7 @@ } }, { - "id": "00a96010-411c-49b4-8e53-5c7b1aef63bf", + "id": "a3f14fd8-e36c-4c34-bced-c7f15ffb59bf", "name": "Retrieve a task status list.", "request": { "name": "Retrieve a task status list.", @@ -297651,7 +297651,7 @@ }, "response": [ { - "id": "29f34449-be31-46c5-8670-a447db8d278e", + "id": "add780f2-daca-4572-a6a8-f9014c020988", "name": "Responds with a TaskStatus for the task with the given task ID.", "originalRequest": { "url": { @@ -297744,12 +297744,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"amet_1c5\": 19177561,\n \"dolorec\": false\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"aliqua_c7c\": -47236102,\n \"ad_e\": \"ipsum consequat eiusm\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"mollit_a82\": -81146130.92908183\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"utb\": 29301574.994655117,\n \"occaecata5\": \"nulla\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "128f786f-a065-4819-b99d-aa0669030e95", + "id": "65a56e13-72bb-414e-873c-17fb6cdcb6f4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -297847,7 +297847,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67d68fbc-876e-4cf9-a528-66d3e022d4b1", + "id": "da30d9cc-e087-4973-9511-caa25bd9c547", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -297945,7 +297945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63eadab0-6795-4d96-a597-cc13343a4eb8", + "id": "b45c284d-3a91-4563-929e-3ba88fbd1d34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -298043,7 +298043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2aebebdd-9a1e-475c-bc22-63f5a4b3a943", + "id": "659c8a44-088a-4b65-b890-e44bf23cf4cc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -298141,7 +298141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a7c58c1-1aa5-4e19-bb28-796d134a0b82", + "id": "3c9dbf5f-98d5-4f26-9ffe-159a11d36022", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -298239,7 +298239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0db46d99-cbb8-4cfc-a395-75db0ad1def1", + "id": "90ce80c1-d91b-402d-ae9c-12ef241d7ecc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -298343,7 +298343,7 @@ } }, { - "id": "ce907657-66ed-4770-bb08-17ac7852bcec", + "id": "68892016-546c-41a0-b94d-ebd5f3b9f31f", "name": "Retrieve a pending task list.", "request": { "name": "Retrieve a pending task list.", @@ -298410,7 +298410,7 @@ }, "response": [ { - "id": "fc614fb0-a297-4065-81d7-e97a3da5ccb1", + "id": "a1a21369-8786-4dbb-9f33-ba52ace42d79", "name": "Responds with a list of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -298486,12 +298486,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"amet_1c5\": 19177561,\n \"dolorec\": false\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"aliqua_c7c\": -47236102,\n \"ad_e\": \"ipsum consequat eiusm\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"mollit_a82\": -81146130.92908183\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n },\n {\n \"id\": \"id12345\",\n \"type\": \"QUARTZ\",\n \"uniqueName\": \"Big Task\",\n \"description\": \"A Really Big Task\",\n \"parentName\": \"Parent Task\",\n \"attributes\": {\n \"identityCount\": 0\n },\n \"created\": \"2020-07-11T21:23:15.000Z\",\n \"modified\": \"2020-07-11T21:23:15.000Z\",\n \"launched\": \"2020-07-11T21:23:15.000Z\",\n \"launcher\": \"sweep\",\n \"completed\": \"2020-07-11T21:23:15.000Z\",\n \"completionStatus\": \"SUCCESS\",\n \"messages\": [\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n },\n {\n \"key\": \"akey\",\n \"localizedText\": {\n \"locale\": \"An error has occurred!\",\n \"message\": \"Error has occurred!\"\n },\n \"type\": \"INFO\",\n \"parameters\": [\n {\n \"name\": \"value\"\n }\n ]\n }\n ],\n \"progress\": \"Started\",\n \"percentComplete\": 100,\n \"returns\": [\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n },\n {\n \"name\": \"label\",\n \"attributeName\": \"identityCount\"\n }\n ],\n \"target\": {\n \"id\": \"c6dc37bf508149b28ce5b7d90ca4bbf9\",\n \"type\": \"APPLICATION\",\n \"name\": \"Active Directory [source]\"\n },\n \"taskDefinitionSummary\": {\n \"arguments\": {\n \"utb\": 29301574.994655117,\n \"occaecata5\": \"nulla\"\n },\n \"description\": \"Aggregates from the specified application.\",\n \"executor\": \"sailpoint.task.ServiceTaskExecutor\",\n \"id\": \"2c91808475b4334b0175e1dff64b63c5\",\n \"uniqueName\": \"Cloud Account Aggregation\",\n \"parentName\": \"Cloud Account Aggregation\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "af876ae2-735c-4f4e-bfde-f8ad56815298", + "id": "9c643822-fb5d-42b5-ba80-580702907f30", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -298562,7 +298562,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e947ef64-fb68-492a-be2f-626af4283106", + "id": "2f42917e-eb50-4459-b9b2-6ff20aa8a1f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -298643,7 +298643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74fe8978-dd2c-4fb2-9254-3da4c0c351d8", + "id": "2bbf492a-ca1a-4d2a-9d03-a767b7665cbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -298730,7 +298730,7 @@ } }, { - "id": "8c4f05ea-bbc2-4d36-a4be-5406f559a52e", + "id": "10502eb0-f5ee-436c-8ff0-bf1a60cfe0fc", "name": "Retrieve headers only for pending task list.", "request": { "name": "Retrieve headers only for pending task list.", @@ -298797,7 +298797,7 @@ }, "response": [ { - "id": "b58c1562-e219-497b-b455-260325107981", + "id": "9bf7ef80-4cb5-429d-89bc-2a1946448d5c", "name": "Responds with headers for List of TaskStatus for pending tasks.", "originalRequest": { "url": { @@ -298868,7 +298868,7 @@ "_postman_previewlanguage": "text" }, { - "id": "32052745-a103-4da5-a20b-372306d8c0ce", + "id": "8469302e-9f30-4853-a06b-cf1ca6d699c3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -298939,7 +298939,7 @@ "_postman_previewlanguage": "text" }, { - "id": "89111bfb-67b0-46d6-85a9-187dfc752be6", + "id": "d961c297-c866-45c2-8619-be2b2749901a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -299020,7 +299020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "74ec266f-e90f-4935-ae85-4b9d29f90e4c", + "id": "a48b0866-d30e-46b9-b52e-27a8a380b05b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -299113,7 +299113,7 @@ "description": "API for reading tenant details.", "item": [ { - "id": "1a18e4b3-6273-45b6-86dc-51bca6805e89", + "id": "f455b65b-547b-4dc2-9296-936355f6ea61", "name": "Get Tenant Information.", "request": { "name": "Get Tenant Information.", @@ -299151,7 +299151,7 @@ }, "response": [ { - "id": "4cc3b1db-bc43-4e46-8327-b4c62eb622fa", + "id": "faa6e183-69ed-4f8d-9c5f-b7263f0545eb", "name": "Tenant Info", "originalRequest": { "url": { @@ -299203,7 +299203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "192a6fa1-af31-4c4e-8f21-4d4458bfb858", + "id": "98fb9463-a7cc-4b93-864c-60fbcf9a165b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -299255,7 +299255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5b77943-00d3-46df-810f-22c98f720e14", + "id": "d42cee42-52a1-4219-a5f5-a3cd2e06693c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -299307,7 +299307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1af99333-0f89-451c-90d4-9d5f2571abc0", + "id": "c567e1b0-5b52-4efc-92b6-257686dcb7cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -299359,7 +299359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10bd4dc2-4f55-41cf-b6f0-264d3e5adb66", + "id": "c2160a0b-0ac3-4d6e-ac2e-f0ecbf4f38bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -299411,7 +299411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a31f357-ff20-4d66-86c8-299f0cdba124", + "id": "76c7010d-d4d5-4dc5-8dd3-e6a009c2abf6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -299463,7 +299463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fab7ad2-ca52-4c57-9a87-14ee62df42a9", + "id": "f15c30d2-9549-4ef1-bcf3-465fa5448a4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -299527,7 +299527,7 @@ "description": "The purpose of this API is to expose functionality for the manipulation of Transform objects.\nTransforms are a form of configurable objects which define an easy way to manipulate attribute data without having\nto write code. These endpoints don't require API calls to other resources, audit service is used for keeping track\nof which users have made changes to the Transforms.\n\nRefer to [Transforms](https://developer.sailpoint.com/docs/extensibility/transforms/) for more information about transforms.\n", "item": [ { - "id": "5bebda00-80a0-4a4d-b688-1350694e4bcb", + "id": "e7105910-bc27-42bb-8b10-da5d09dc2ff3", "name": "List transforms", "request": { "name": "List transforms", @@ -299602,7 +299602,7 @@ }, "response": [ { - "id": "cfdd175a-03c4-4bab-84de-4d0c89553fd7", + "id": "de830b5a-1827-451e-b16f-d9d193293542", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -299691,7 +299691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7d6efd9-3587-415a-a224-f3896016585c", + "id": "9428c3f2-9532-4c3f-9d61-3b538107f2b4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -299780,7 +299780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9b1cedb-6e7e-4136-a9f9-d2d400f675fa", + "id": "e3a4f958-297f-4b0e-829c-4061fecec7e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -299869,7 +299869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "556906bd-ca4b-472c-b9fe-c2e0b3ecef0f", + "id": "805bd0f3-cf04-46b4-91d8-18c52e28818f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -299958,7 +299958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b3a39ef-705e-40af-87f9-13e4b598d731", + "id": "d290cfe5-4b82-451b-a72c-7d9f608c6adf", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -300047,7 +300047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a15b6420-3f45-4f06-bc47-d5f5eeefda7d", + "id": "2128fc24-e2a5-4348-af88-9cd6bf9ebcea", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -300136,7 +300136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51b0603d-092d-4f74-9efa-e2ff5717b044", + "id": "8a53fc5c-8ea3-44fc-aef6-2eda6428b269", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -300231,7 +300231,7 @@ } }, { - "id": "71c55eca-bdb1-4aaa-add5-5d9ac706ef75", + "id": "29bf9ac8-2865-40bc-9263-df61d4aa8f6a", "name": "Create transform", "request": { "name": "Create transform", @@ -300273,7 +300273,7 @@ }, "response": [ { - "id": "114c7dba-f544-4e7e-92b9-b647212541a5", + "id": "1b3d1fbf-65ac-4d66-b97a-52c7f15084a9", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -300329,7 +300329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24408e59-68c3-4444-95fc-96743c9de39a", + "id": "224ed3ba-0e25-45a1-a192-c0e09c4b5a5e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -300385,7 +300385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a35aad-5c53-4a95-b3ab-a3a3c880a25f", + "id": "ab31b4d6-d4fa-411b-9456-c007564d6eed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -300441,7 +300441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cca94dc1-3775-428c-a5a2-f2ec23d43084", + "id": "643e16eb-0259-46a0-95a1-fd813894396c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -300497,7 +300497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87ec9c76-b231-4e22-b6cd-4fbb4532e688", + "id": "dacc166e-ce3d-4b5e-b185-49bc54702f47", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -300553,7 +300553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e02cf54-4e2a-4d1b-9cd8-e57d253dc1ba", + "id": "06cda571-5274-4681-9a24-7495c038a0d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -300609,7 +300609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f94545-cbf6-4921-a20f-53c52aeb313b", + "id": "98e9d59b-4545-4a7f-aaa0-a0ae91e2b349", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -300671,7 +300671,7 @@ } }, { - "id": "d6b871ed-aef6-462a-bf3e-07b535abcbf2", + "id": "6b411ebf-0533-40b8-bda3-3299fc8d4792", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -300712,7 +300712,7 @@ }, "response": [ { - "id": "15505f5c-e510-4a10-a40b-f658012f2768", + "id": "a616f874-5ebd-42a5-8e31-b33762420d09", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -300756,7 +300756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff84d202-fbd6-4fd2-bb4d-38d31afa656f", + "id": "11b3548d-4345-4308-bd8d-318dbe290ce1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -300800,7 +300800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a4a34d5-510f-4f53-bced-6d7febc5e67f", + "id": "042d823d-b1dd-43b4-80e6-842b5314f48f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -300844,7 +300844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1994ac81-b79d-4ceb-9d72-b9eef1669abe", + "id": "a2f5806d-e492-4280-add2-5b0180f42953", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -300888,7 +300888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41f530a3-267a-4a4a-a6e0-5fd25c26059d", + "id": "2646cfb9-1732-4ab4-a2da-1cae704f3759", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -300932,7 +300932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04582063-513a-49c1-8a1d-793b7a282369", + "id": "11aa79ef-99d5-4e9e-bf1a-fa41160ea600", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -300976,7 +300976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18e42866-5bda-430b-b661-19113d807cea", + "id": "9c5b466b-424d-479a-a57e-fb1b258d5753", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -301026,7 +301026,7 @@ } }, { - "id": "324ec1e1-de26-4110-82d0-bead053e9409", + "id": "249c929c-63e4-49fb-8cd9-d732465adb16", "name": "Update a transform", "request": { "name": "Update a transform", @@ -301080,7 +301080,7 @@ }, "response": [ { - "id": "0265c91e-ad1d-4b48-b323-cf2945152674", + "id": "1beb5070-83e1-4d4d-8029-1a56bd651c02", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -301137,7 +301137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cfe1214-3839-4390-b069-8603d344f9ce", + "id": "c74b0159-b197-45d3-a514-c4100463326f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -301194,7 +301194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21e6824f-c019-4427-a56e-18f220bce09f", + "id": "fc288aa2-21f0-4b4f-b1a3-63c97eba626c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -301251,7 +301251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95847bf3-4dcb-41cb-a9dd-4822701a2294", + "id": "ee45a19a-97d4-4750-9444-27e3a4065c34", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -301308,7 +301308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d931558-3099-44d5-9500-3ee2ab8f0628", + "id": "f204c3a9-5bc1-4f97-80c4-5d7e8fd3ad08", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -301365,7 +301365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2172697d-c5ad-4836-a251-48a98323d295", + "id": "2da214ac-6be9-4804-a15e-f23ab5bd1197", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -301422,7 +301422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7fccd8f-6d39-4f1d-82b8-529625522a2c", + "id": "724e5e6e-d6b6-4ecf-a53b-82c94e0f3d20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -301485,7 +301485,7 @@ } }, { - "id": "86e24fa6-de82-4581-92a2-4b9304d7a37f", + "id": "aa954d6c-0fd5-4072-bef0-b1e8950e371e", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -301526,7 +301526,7 @@ }, "response": [ { - "id": "36b23324-8976-4ff5-94b4-bdcfdfa54fff", + "id": "bf1d911f-16a3-412c-b7f2-83b2f7bc0143", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -301560,7 +301560,7 @@ "_postman_previewlanguage": "text" }, { - "id": "394ac342-279f-4d6a-bac6-ffbf41bd3cc9", + "id": "d693b82a-5157-4981-b2c8-2f7c1776144a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -301604,7 +301604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32d0ad8c-1d1f-4670-9e17-25e74a41014c", + "id": "ec53132b-c79e-4496-9cfb-7a68d517b413", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -301648,7 +301648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e993fa88-8f32-47a3-b6f2-d1f2724c9ad8", + "id": "84d6c577-612f-4db8-a4e2-de51b6a376b4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -301692,7 +301692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "303458d9-3fca-4759-aa81-07d7421128df", + "id": "7663617e-37d4-46b1-9367-810709004d25", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -301736,7 +301736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bc05e02-5435-45e8-b705-52b2e13995ef", + "id": "f87d62aa-b422-4b37-8246-eba554e5778f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -301780,7 +301780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cf2b494-922c-46e3-90b0-8c9ab2f5d7e7", + "id": "033da8bd-17e8-4854-a064-47317e8bf3e3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -301836,7 +301836,7 @@ "description": "Event Triggers provide real-time updates to changes in Identity Security Cloud so you can take action as soon as an event occurs, rather than poll an API endpoint for updates. Identity Security Cloud provides a user interface within the admin console to create and manage trigger subscriptions. These endpoints allow for programatically creating and managing trigger subscriptions.\n\nThere are two types of event triggers:\n * `FIRE_AND_FORGET`: This trigger type will send a payload to each subscriber without needing a response. Each trigger of this type has a limit of **50 subscriptions**.\n * `REQUEST_RESPONSE`: This trigger type will send a payload to a subscriber and expect a response back. Each trigger of this type may only have **one subscription**.\n\n## Available Event Triggers\nProduction ready event triggers that are available in all tenants.\n\n| Name | ID | Type | Trigger condition |\n|-|-|-|-|\n| [Access Request Dynamic Approval](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-dynamic-approval/) | idn:access-request-dynamic-approver | REQUEST_RESPONSE |After an access request is submitted. Expects the subscriber to respond with the ID of an identity or workgroup to add to the approval workflow. |\n| [Access Request Decision](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-decision/) | idn:access-request-post-approval | FIRE_AND_FORGET | After an access request is approved. |\n| [Access Request Submitted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/access-request-submitted/) | idn:access-request-pre-approval | REQUEST_RESPONSE | After an access request is submitted. Expects the subscriber to respond with an approval decision. |\n| [Account Aggregation Completed](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/account-aggregation-completed/) | idn:account-aggregation-completed | FIRE_AND_FORGET | After an account aggregation completed, terminated, failed. |\n| Account Attributes Changed | idn:account-attributes-changed | FIRE_AND_FORGET | After an account aggregation, and one or more account attributes have changed. |\n| Account Correlated | idn:account-correlated | FIRE_AND_FORGET | After an account is added to an identity. |\n| Accounts Collected for Aggregation | idn:aggregation-accounts-collected | FIRE_AND_FORGET | New, changed, and deleted accounts have been gathered during an aggregation and are being processed. |\n| Account Uncorrelated | idn:account-uncorrelated | FIRE_AND_FORGET | After an account is removed from an identity. |\n| Campaign Activated | idn:campaign-activated | FIRE_AND_FORGET | After a campaign is activated. |\n| Campaign Ended | idn:campaign-ended | FIRE_AND_FORGET | After a campaign ends. |\n| Campaign Generated | idn:campaign-generated | FIRE_AND_FORGET | After a campaign finishes generating. |\n| Certification Signed Off | idn:certification-signed-off | FIRE_AND_FORGET | After a certification is signed off by its reviewer. |\n| [Identity Attributes Changed](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/account-aggregation-completed/) | idn:identity-attributes-changed | FIRE_AND_FORGET | After One or more identity attributes changed. |\n| [Identity Created](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/identity-created/) | idn:identity-created | FIRE_AND_FORGET | After an identity is created. |\n| [Provisioning Action Completed](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) | idn:post-provisioning | FIRE_AND_FORGET | After a provisioning action completed on a source. |\n| [Scheduled Search](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/scheduled-search/) | idn:saved-search-complete | FIRE_AND_FORGET | After a scheduled search completed. |\n| [Source Created](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-created/) | idn:source-created | FIRE_AND_FORGET | After a source is created. |\n| [Source Deleted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-deleted/) | idn:source-deleted | FIRE_AND_FORGET | After a source is deleted. |\n| [Source Updated](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-updated/) | idn:source-updated | FIRE_AND_FORGET | After configuration changes have been made to a source. |\n| [VA Cluster Status Change](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/va-cluster-status-change/) | idn:va-cluster-status-change | FIRE_AND_FORGET | After the status of a VA cluster has changed. |\n\n## Early Access Event Triggers\nTriggers that are in-development and not ready for production use. Please contact support to enable these triggers in your tenant.\n\n| Name | ID | Type | Trigger condition |\n|-|-|-|-|\n| [Identity Deleted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/identity-deleted/) | idn:identity-deleted | FIRE_AND_FORGET | After an identity is deleted. |\n| [Source Account Created](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-account-created/) | idn:source-account-created | FIRE_AND_FORGET | After a source account is created. |\n| [Source Account Deleted](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-account-deleted/) | idn:source-account-deleted | FIRE_AND_FORGET | After a source account is deleted. |\n| [Source Account Updated](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/source-account-updated/) | idn:source-account-updated | FIRE_AND_FORGET | After a source account is changed. |\n", "item": [ { - "id": "0fe1e249-dfc2-4749-952d-54c77af0d5c2", + "id": "4c5ca392-c6c7-4b68-8e28-d57055006718", "name": "List Triggers", "request": { "name": "List Triggers", @@ -301920,7 +301920,7 @@ }, "response": [ { - "id": "f0d46e2b-7615-4fbd-80a9-29f4d5a4a595", + "id": "b9b46c45-ae00-4f98-85ee-6df292c74298", "name": "List of triggers.", "originalRequest": { "url": { @@ -302018,7 +302018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea181e4a-8be7-4aa0-89f4-509b92bceda1", + "id": "ba6e7043-db34-462f-ae9d-cffcec8ffa44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -302116,7 +302116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee4e2f5c-ca02-43e2-900a-61b49c061705", + "id": "dacf8792-1e38-44af-a89f-36094848ce1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -302214,7 +302214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8859eb97-c0b3-41da-b43f-377201670569", + "id": "32eecb2c-f4ee-4ba7-8575-ee943831faac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -302312,7 +302312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4f22844-1e05-459d-8252-587cb8a4c623", + "id": "fdae4054-571b-4880-9c3c-98a2bdfd4a74", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -302410,7 +302410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fc096eb-50cb-432e-a0db-8ff673c1f499", + "id": "af8ecf5d-c29f-4858-aa01-0b6f8f6c94a3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -302514,7 +302514,7 @@ } }, { - "id": "61bee449-08cb-4684-802a-42798b45f839", + "id": "ea8d0a9d-b2eb-4575-862c-d4b6de8176ab", "name": "Create a Subscription", "request": { "name": "Create a Subscription", @@ -302565,7 +302565,7 @@ }, "response": [ { - "id": "946d7b7f-4377-4016-b0e2-527b9dfd1614", + "id": "85ed5fdf-8529-4d48-b245-01886f16ee91", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -302630,7 +302630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcb6a0b1-27b8-45c3-9bc6-434c433c1abc", + "id": "6137d41b-cbab-4269-9b65-9bdce7db61a2", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -302695,7 +302695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa89acbe-6488-4e42-aea3-dec427115765", + "id": "d717fda7-23c0-4e67-9200-12f5a917506c", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -302760,7 +302760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a524338-ab2d-4fde-b4f4-6bf5bb4bfacd", + "id": "109b56c5-14a8-4041-af3b-d6a001063665", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -302825,7 +302825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5926d88-01b0-4cc7-827f-6203d2f1caef", + "id": "ae9a0028-df9e-46e5-958e-abf77ec317d0", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -302890,7 +302890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85384d67-544f-42ed-b4cc-f5cb6a44499e", + "id": "f6e8a0a6-dcdd-4d1a-b94b-fc6768e8ded4", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -302955,7 +302955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91456a2a-67d4-4907-b324-609468cc3142", + "id": "308f1583-62df-470f-8b73-648816c707eb", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -303020,7 +303020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06d00edd-8120-48cf-8d78-590fbe0f4b0d", + "id": "1319ccb2-2207-4173-b2be-c40a824f9b4a", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -303085,7 +303085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c924e1c-7641-4af6-bd15-c19f135fa0e4", + "id": "7fce7a61-9eb2-4e1d-ab63-e7832fd49ca2", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -303150,7 +303150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bc90667-8b63-49ee-9f86-caa385f5ee1d", + "id": "e16213f8-c0d6-4e3a-9a09-184ce360d96a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -303215,7 +303215,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1776f8fe-16c7-4b43-85a2-4aba0edf10a2", + "id": "45386b44-877e-4621-8fa0-3cccc7cee5ed", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -303280,7 +303280,7 @@ "_postman_previewlanguage": "json" }, { - "id": "381d753f-2269-451c-a154-9589f8a9795b", + "id": "dc2632e5-bc0f-49c1-b411-27cee3e63274", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -303345,7 +303345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e1c0f77-79b6-4c1f-b66e-00be0bdb2663", + "id": "3bbe034a-0a82-4990-a119-6614e46c713c", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -303410,7 +303410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f76fa581-abef-4843-81d9-298ede328e41", + "id": "30daecad-0ee7-4249-8e8f-77976b17e3ac", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -303475,7 +303475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5885fbc4-905a-45a7-a40f-a4123a8f5cd0", + "id": "f3ebd3cc-6edd-4fc0-ba94-1bfdb00b22c0", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -303540,7 +303540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c79750c-1050-42a1-a0f3-fd316c5bc069", + "id": "9c04c21d-69a0-4cd6-9b85-018e929f2b33", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -303605,7 +303605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bc98c20-3dfc-49cd-a4d0-1d33cd01777b", + "id": "23e4b25c-a9f1-4d50-beb4-9c5e7fccb039", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -303670,7 +303670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcf954dd-43b0-48a7-9739-b6362e8c1a1e", + "id": "8fced5c4-5a18-4161-9218-4747246bdfa7", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -303741,7 +303741,7 @@ } }, { - "id": "8dbff71d-77ed-4153-8095-c1a89edfce91", + "id": "092809c1-85c4-4864-8d05-2c4736d90046", "name": "List Subscriptions", "request": { "name": "List Subscriptions", @@ -303825,7 +303825,7 @@ }, "response": [ { - "id": "28561abf-840e-47b7-9ca8-bfa730f18235", + "id": "e2389284-1a5e-455a-8dda-7dd77cf1cbea", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -303923,7 +303923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f23c0f2-ac1a-42e0-a7e2-c1620cdf4b2f", + "id": "6c95f65a-6ed8-4ff5-8c90-557288eb3c96", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -304021,7 +304021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96e1d22b-5788-4e84-a0e1-41e9dca48505", + "id": "b892bd39-3608-44d3-b3a4-c99cca6e7e53", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -304119,7 +304119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5488f296-bf88-4ef8-8d30-72f9dc953bc4", + "id": "818b0913-70f0-40aa-9c5e-378c79f0ad65", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -304217,7 +304217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee1a2888-8511-4277-9b3a-1ce2a0ab7301", + "id": "3d34c797-2ca4-447b-828f-3e7ddb3dcced", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -304315,7 +304315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdda8f81-dfb7-4c49-81d1-c5719c930528", + "id": "4ac5b2c9-f3e5-4d46-916e-85f5d4982ce5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -304413,7 +304413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d20b107-8c38-408d-87fd-73e498c3c274", + "id": "3b0c9881-6705-4d9e-94be-aae1c7043f6d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -304511,7 +304511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "031df804-bc00-4b37-a349-930ba67c0313", + "id": "b0f9135a-b82e-479c-aefa-7dde4a9576d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -304615,7 +304615,7 @@ } }, { - "id": "2532c4f5-8c54-43f4-b0ba-bd269c557911", + "id": "a7c7a16a-8359-4f45-9f92-a465fc817789", "name": "Update a Subscription", "request": { "name": "Update a Subscription", @@ -304678,7 +304678,7 @@ }, "response": [ { - "id": "af14c945-b359-4a85-94a3-ec4a8ebbfb4e", + "id": "0ccf65dc-0826-4811-8244-9eca4448b149", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -304744,7 +304744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "133307d4-ea8e-4a0f-8016-d9dfd7b70793", + "id": "b66b3173-6cde-48cb-9307-12dc4e5b1e2a", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -304810,7 +304810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5141408-e9a1-4c58-87dd-1a50f7dc7858", + "id": "a88f4da1-6c4c-4f68-a376-a54ba1b6ec70", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -304876,7 +304876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21f46434-e1d8-4d4c-9700-de5b56ce7b07", + "id": "7b4a2fcf-8c5a-4954-a482-04d2a6fb4ada", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -304942,7 +304942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c03da74-64b8-42d0-8916-46c2bdf4fda7", + "id": "4d611bb9-b874-4ff7-9a88-910d722b0a69", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -305008,7 +305008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73793f8c-5e02-46c3-9a7d-36670b7ac083", + "id": "e2fadcae-2550-4e69-a3f8-9eb9376f07ae", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -305074,7 +305074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c272858-079a-4d98-8d05-0f105dd10eb5", + "id": "4b961b04-b193-4991-9551-e764ecb5fad7", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -305140,7 +305140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0335413-3317-4240-bd62-d44fb780544d", + "id": "5cf3b6c9-c493-404c-a3d9-9752bcae8e56", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -305206,7 +305206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7223cd19-66a6-4edf-8ef3-0216f8dee433", + "id": "a3e3d0fe-5522-412f-8a17-f09ea3c48024", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -305272,7 +305272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bdbedf4-dbd7-498d-a390-74e2bc05fa3f", + "id": "30ce2075-705b-4d1d-b23f-19fe63666ea1", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -305338,7 +305338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69019165-2d13-4f9a-99b6-25f1a10cfb1a", + "id": "3e68c798-e817-47b4-b5f9-e1f56179af1a", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -305404,7 +305404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6db01f73-1670-4312-b584-81fef288ea2b", + "id": "fc8a3dea-7e95-4912-bf3d-abef63771b52", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -305470,7 +305470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94e9e51b-415c-4648-aa9f-3c22fd1fb177", + "id": "1fe561cd-2504-4fce-a45e-853ba3c05e3c", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -305536,7 +305536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d4e144-4541-4ac0-86e5-82742bee2b8a", + "id": "b3a499cd-dca2-4571-a84b-fee4ecf780bf", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -305602,7 +305602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4c7384-b0d1-4d90-97c7-857ae0827753", + "id": "390f0625-7d7c-44d5-8a73-f76489634b6e", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -305668,7 +305668,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fc67a6f-24b5-470f-b64d-c91de6147070", + "id": "94b87f9e-71cd-49c2-bf52-12e025d3de05", "name": "HTTP Subscription", "originalRequest": { "url": { @@ -305734,7 +305734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e67c6509-226c-4bee-8689-512a2bdcb531", + "id": "6d763cff-201d-44de-a2a2-094c70ae49dd", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -305800,7 +305800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e74f1a5-680e-40ab-9fd0-a435a125891d", + "id": "cb51e6c7-eff3-4b83-9fc6-3b4e88a66a23", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -305866,7 +305866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8216353e-64a9-4a3e-ac5e-2746d6612369", + "id": "7947b9d6-590d-4db9-9f8f-8854d8d246ab", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -305932,7 +305932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a15fe75-dff4-4f41-8849-f96e9b6a4c9b", + "id": "996c3571-4b2c-4ab4-91fe-50562fce8118", "name": "HTTP Async Subscription", "originalRequest": { "url": { @@ -305998,7 +305998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b31b0dad-a5e4-418f-9a80-d5f166dc1802", + "id": "77201c37-41c7-410c-95e1-a09471d760d8", "name": "EventBridge Subscription", "originalRequest": { "url": { @@ -306070,7 +306070,7 @@ } }, { - "id": "5ced9322-f016-4acd-8129-6ec9a7d6dfff", + "id": "1c3575ed-f6cd-442e-911b-1f32df06db69", "name": "Patch a Subscription", "request": { "name": "Patch a Subscription", @@ -306133,7 +306133,7 @@ }, "response": [ { - "id": "7fb482c6-73e6-45fe-a6a4-59493268450d", + "id": "7a85dd2e-77e4-4694-9b3f-70009738a838", "name": "Updated subscription.", "originalRequest": { "url": { @@ -306199,7 +306199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4af91dcf-0355-4138-8a6c-195f59e57e4a", + "id": "f5be9fb1-bf35-40b1-a36e-1f502e74161f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -306265,7 +306265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfa62ef2-8cc6-4eea-b128-3c8244fec8e8", + "id": "f35dd607-ee83-497a-b8db-8a0b553d8207", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -306331,7 +306331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbb7ad14-0492-4ad0-be28-04df2e5cb7cb", + "id": "ccbdeaa8-3b8f-452f-88e1-647d93b007ca", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -306397,7 +306397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "351039a9-5795-44ea-a96d-51fbda592ffe", + "id": "2f977a2b-9683-48d4-92bc-2f4bad9d2868", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -306463,7 +306463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93fb05ab-1206-49bc-852f-a5dbb81259b9", + "id": "ae114a2c-3a86-423a-ab59-a5fead855e5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -306529,7 +306529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e86ea283-bc61-4919-92ab-289de7ecb79d", + "id": "61dc6d9a-c31b-40d1-a711-8cf78fa7a55d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -306601,7 +306601,7 @@ } }, { - "id": "6e393272-bdd7-442c-b253-fcb182af1233", + "id": "d4fda1e2-1420-4e41-9433-82b0ed83bffe", "name": "Delete a Subscription", "request": { "name": "Delete a Subscription", @@ -306651,7 +306651,7 @@ }, "response": [ { - "id": "97f765cc-3d70-4d5e-a24d-d2a6bfd5b62b", + "id": "dd3762a3-d5bc-4aee-9bdc-12015db55767", "name": "Subscription is deleted successfully.", "originalRequest": { "url": { @@ -306694,7 +306694,7 @@ "_postman_previewlanguage": "text" }, { - "id": "72f5008a-3a0d-4fd5-9499-0b94ec795326", + "id": "ff63831d-8578-467f-9e20-0d48d1ed24cd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -306747,7 +306747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64d0966f-82c0-419a-b009-1b31b2bea34a", + "id": "e6152467-d546-4bb2-90db-19ea80936877", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -306800,7 +306800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "767e6852-73db-4840-9ba0-f55c6d8a1e6a", + "id": "94fe8e13-184c-4828-ad7f-f7f246dead30", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -306853,7 +306853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "844924e6-0bbd-44e4-ba8a-0bf8d1276665", + "id": "c48e2082-5474-4bd7-bb10-0717c4051508", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -306906,7 +306906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdef4b5f-0bd1-48f9-9bb9-b32b34311f5e", + "id": "9695180b-61ce-4d41-a57a-4f93fc614376", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -306959,7 +306959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c37b0438-b26a-4e21-8da9-4a8c018324ec", + "id": "97aa8b3e-4a56-496a-9fa6-642ae6a56e68", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -307018,7 +307018,7 @@ } }, { - "id": "9896f868-1a4c-47c4-ad90-0e3d6f838cac", + "id": "5c9c5375-e3ec-4e5c-adff-68b75a41f858", "name": "Validate a Subscription Filter", "request": { "name": "Validate a Subscription Filter", @@ -307070,7 +307070,7 @@ }, "response": [ { - "id": "d9780735-87f2-4e98-b881-4054eaab5097", + "id": "0f45d826-6766-4054-9591-4491f8ac092e", "name": "Boolean whether specified filter expression is valid against the input.", "originalRequest": { "url": { @@ -307136,7 +307136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f1ae31-60c7-4188-8e4c-21db55f55666", + "id": "09813060-b915-4c4b-9f13-50a1d909eef4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -307202,7 +307202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ad5b048-e8d5-4bb3-998f-0076460ced6d", + "id": "ab5792eb-9769-43db-85dd-076c665497b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -307268,7 +307268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa8c7310-5169-4e84-bfbc-9c52a08055b5", + "id": "08a90bb9-3890-401e-a9c7-c764fa494cb0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -307334,7 +307334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7697b2d-2a9a-4b76-8d94-b2b8a0ba3e65", + "id": "65e9340f-6b52-4b20-a22e-e115e3e6712d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -307400,7 +307400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb4cb93c-43da-4f73-b3e6-a42aeca05e0e", + "id": "0a326bed-67ab-4439-a01b-c4f4d5f51e4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -307472,7 +307472,7 @@ } }, { - "id": "b579923d-7b90-4db2-8232-dbd3781cdf16", + "id": "93656f4a-f21c-428f-95cc-69c333c85199", "name": "List Latest Invocation Statuses", "request": { "name": "List Latest Invocation Statuses", @@ -307557,7 +307557,7 @@ }, "response": [ { - "id": "26b3dbd9-5b95-43f2-bdd4-92c77c07295d", + "id": "ca1ce253-c195-4d33-bea1-834dcc4772a8", "name": "List of latest invocation statuses.", "originalRequest": { "url": { @@ -307656,7 +307656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a25ddc72-6b78-46c6-a6a5-b1cf010e03b8", + "id": "7c08b83f-d29a-446d-b82a-8156992d5730", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -307755,7 +307755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4205dfd-fc6c-4e21-ae18-32455097f84c", + "id": "a45ff0b3-a6f2-4809-b14a-c96120a9cdfc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -307854,7 +307854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd73159-8f36-42b4-8523-2fcdcbde862a", + "id": "8b911f27-9615-4cb3-9448-e713faaf9914", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -307953,7 +307953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afb57a36-df9b-4dbb-99e5-3c146cdc06be", + "id": "2c30695e-5d48-4b5a-83f9-49475dc97280", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -308052,7 +308052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3df54ff-20d9-4110-8443-9d041e885598", + "id": "8db8d9e2-2189-4a84-b50f-10dda59e88a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -308157,7 +308157,7 @@ } }, { - "id": "6b128ae7-12f6-4ac6-81e8-b7d26adde719", + "id": "615e0857-f8ff-4238-bfe7-86f49c3ade66", "name": "Complete Trigger Invocation", "request": { "name": "Complete Trigger Invocation", @@ -308221,7 +308221,7 @@ }, "response": [ { - "id": "6af02b44-c431-4e34-bd55-8b8293f03307", + "id": "fe1857ed-701f-4f82-9d58-586e71334366", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -308278,7 +308278,7 @@ "_postman_previewlanguage": "text" }, { - "id": "c10127cd-f7e0-4ea7-8264-737b0161ddce", + "id": "3eb63205-7223-4074-8fb8-32d5af3cd11f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -308345,7 +308345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60003f52-4a60-425d-8597-b7150650a0e2", + "id": "fd3ef0f1-22c7-4b85-a631-2c0b30163bf1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -308412,7 +308412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b9e0f2c-e582-47de-8602-9dcb9577ed9d", + "id": "d7ac906c-29f6-4a81-8197-02fb2a01fbd0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -308479,7 +308479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afb3e4c5-a0b2-4362-8bb6-745fee926ca7", + "id": "adc88ded-583a-4396-a3ef-c5188ec2ee68", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -308546,7 +308546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7148c4b-bc15-4ab8-915f-7c01d7630d9b", + "id": "88426c6a-db49-4a06-9549-368bea850741", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -308619,7 +308619,7 @@ } }, { - "id": "0790c310-225f-4ad8-8091-44e3a30e9aba", + "id": "a8c57e85-93b4-4f2b-bd80-8aa442046987", "name": "Start a Test Invocation", "request": { "name": "Start a Test Invocation", @@ -308671,7 +308671,7 @@ }, "response": [ { - "id": "952b8e68-26ac-42bf-a6b6-fbee7deb562a", + "id": "73bc1658-7791-485c-b55f-cc01f2064fc0", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -308737,7 +308737,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acdc2cd3-26c4-4353-a69b-9d93b6fa6126", + "id": "633e5dff-8e62-4cc3-b60a-d790d371b361", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -308803,7 +308803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e15165a-dc88-4f5c-a517-af15cb072920", + "id": "8d1edc14-e97c-41c3-bfa8-b351e62609e3", "name": "Trigger invocation is skipped, because tenant has not subscribed to the specified trigger.", "originalRequest": { "url": { @@ -308859,7 +308859,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e07126be-5d05-49bf-9df6-36bc9041d667", + "id": "5d70ca01-1e9b-4db4-bbd4-edbb413c7056", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -308925,7 +308925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5b23bc9-a39b-4805-9216-0c7cb918d459", + "id": "d37552a6-f043-4107-ba79-591f1b4669a0", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -308991,7 +308991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c40f2bb-fc3f-4a58-a197-9fd87e184fcd", + "id": "46e23901-c311-4e3a-b3ce-82d5d43f333c", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -309057,7 +309057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a07a174-3cd0-4b2f-a812-e9313233ad0c", + "id": "20c141bb-688a-4316-8c23-6c545ab71983", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -309123,7 +309123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65394a5a-1ef3-4d31-8c58-74a972c548bf", + "id": "255ba8df-9e8a-43ed-8ea1-f17b76b8a760", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -309189,7 +309189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39f65154-2597-4978-9ab0-9ebcb1765624", + "id": "a70a6c78-ada7-4498-91db-a06073dfd491", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -309255,7 +309255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa5574d-9577-428c-8c6d-c1da32463f19", + "id": "b65421c8-d211-45f5-80bd-5e38fb5b9c0c", "name": "Test Trigger with Mock Input", "originalRequest": { "url": { @@ -309321,7 +309321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba1557c9-d7a6-41c0-ba5e-f48d599ca18b", + "id": "20fc721b-1518-4715-abaf-94a62b479d55", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -309387,7 +309387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a36f65e-17d1-42cd-9a02-ad8d6573b5cb", + "id": "6e602981-0d91-4298-a429-a1e2f03bbe13", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -309453,7 +309453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ecca46b-214a-4732-9eb9-8c023deacfe1", + "id": "8fe0b342-6f41-49dd-a2cd-e309a9577463", "name": "Send Test to only One Subscriber", "originalRequest": { "url": { @@ -309531,7 +309531,7 @@ "description": "API for managing UI Metadata. Use this API to manage metadata about your User Interface.\nFor example you can set the iFrameWhitelist parameter to permit another domain to encapsulate IDN within an iframe or set the usernameEmptyText to change the placeholder text for Username on your tenant's login screen.", "item": [ { - "id": "e50001cb-9737-4829-bb04-793c6b905217", + "id": "9d8dcf87-03f1-4cc2-84e5-812374b54ee3", "name": "Get a tenant UI metadata", "request": { "name": "Get a tenant UI metadata", @@ -309570,7 +309570,7 @@ }, "response": [ { - "id": "435e3944-1e66-4e0b-802b-7e173907e604", + "id": "ebbe4ad1-26dd-4343-b36c-2432ce617359", "name": "A tenant UI metadata object", "originalRequest": { "url": { @@ -309623,7 +309623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "458c229a-cbcc-460e-9cfa-bda02573aeac", + "id": "d306d7b6-5e4f-41cc-822e-7dbae7e5ad69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -309676,7 +309676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f8f0e2d-ee2d-4127-9a7c-e2d84d4aab11", + "id": "44550516-72a4-4b2c-ba68-ee763d63866b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -309729,7 +309729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc649b09-23ed-430d-9599-af032e412581", + "id": "e418d678-c478-4d98-8026-8de297929401", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -309782,7 +309782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68335901-a982-4857-8e5f-23fb55c45c3a", + "id": "d8b8a7c3-1d87-4bb3-b1db-b7c40705d9e6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -309835,7 +309835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b701a999-cc10-4eec-a274-5c23e7ff04db", + "id": "1ddc7c2e-28d1-4e62-a39d-5846940905b4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -309888,7 +309888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c82271ac-5417-4e0e-9192-3e18469f679e", + "id": "136daff8-1409-4cd7-bf92-7d4b6ed6ad45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -309947,7 +309947,7 @@ } }, { - "id": "e1fbe70d-1428-401b-9cff-6bad433fe7bc", + "id": "484acacc-d7aa-4303-a72d-d3b5d2f68345", "name": "Update tenant UI metadata", "request": { "name": "Update tenant UI metadata", @@ -309999,7 +309999,7 @@ }, "response": [ { - "id": "3f775ff2-31c0-48c9-8577-8a2ed0ddedcf", + "id": "30dd1d93-ae2d-431e-a129-eda959ecb589", "name": "A tenant UI metadata object", "originalRequest": { "url": { @@ -310065,7 +310065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75a1a645-0065-444b-b04c-80cc66805a13", + "id": "02428fcb-44ac-4543-8eb2-e73d7e1d8ecf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -310131,7 +310131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c472b24-401b-463f-8ae5-7815cfd0d530", + "id": "1b89b086-ea40-452d-b707-6ca8838ac810", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -310197,7 +310197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d82b17bd-55b7-4f86-8ecf-ae7c37a8e840", + "id": "762ebe45-04f4-4138-8777-fb667425b325", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -310263,7 +310263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d9439f6-2a66-422a-954e-c398bf4a8e0e", + "id": "524478ef-bed4-42b6-bca6-705d82fe7608", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -310329,7 +310329,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63a2f74a-390d-473a-9105-99d93d611b2a", + "id": "373b2afb-6769-423a-bebb-a984ec1cfc7d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -310395,7 +310395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc904fb8-6aa0-47f5-9fee-5559ded18e1f", + "id": "938577fc-1347-47a0-97d3-9cf2b3a02bf7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -310473,7 +310473,7 @@ "description": "Vendors use ISC connectors to connect their source data to ISC, but the data in their source and the data in ISC may be stored in different formats. \nConnector mappings allow vendors to match their data on both sides of the connection. \nThe vendors can then track and manage access across their sources from ISC. \nThis API allows you to create and manage these vendor connector mappings. \n", "item": [ { - "id": "511ca76b-b539-4eed-a555-189f9720a1d6", + "id": "f29fae8e-d9cf-4986-8201-81c394fed332", "name": "List Vendor Connector Mappings", "request": { "name": "List Vendor Connector Mappings", @@ -310502,7 +310502,7 @@ }, "response": [ { - "id": "3c6f2006-97c7-46d2-a03f-52ee615c89c2", + "id": "201becd1-1a78-4de1-b99a-e7745e43b524", "name": "Successfully retrieved list.", "originalRequest": { "url": { @@ -310545,7 +310545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bd0802a-4fbe-4060-bc78-f51759014257", + "id": "81c8dc60-e1e2-4ba2-9a40-cd173d20ae42", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -310588,7 +310588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8310da2-b82d-40c3-9588-481fad39557b", + "id": "223a123f-1b92-4d90-9534-d920be431e91", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -310631,7 +310631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "703a6eac-5b43-4948-8b00-6524306c36fa", + "id": "076ce12e-c473-493c-83dd-ea5235d30ad1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -310674,7 +310674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e26817ca-3170-43dc-a37b-65c01b37bb05", + "id": "e92d3e8e-1ce3-4246-af84-1009a8aa4214", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -310717,7 +310717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d71bef-d118-4649-8113-c8b5c49bbf63", + "id": "f9931740-16f3-46df-81a7-2f959b24d635", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -310760,7 +310760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11420a5b-e1c1-44ea-bdef-3d8ea34cbd72", + "id": "bd3cd3ce-d625-4352-b4d1-8e13ddc01cd7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -310809,7 +310809,7 @@ } }, { - "id": "0012e403-1931-4b19-a17a-ca82aba6b1f4", + "id": "554d108c-5b09-4607-be1a-34d997b69d69", "name": "Create Vendor Connector Mapping", "request": { "name": "Create Vendor Connector Mapping", @@ -310851,7 +310851,7 @@ }, "response": [ { - "id": "d5362122-d409-485e-8aaa-de6afa9bf539", + "id": "e2256633-9076-466c-a4e4-f75a428c3e36", "name": "Successfully created a new vendor connector mapping.", "originalRequest": { "url": { @@ -310907,7 +310907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4baf8e05-da81-4f90-8524-f0241c68ecb1", + "id": "7bec1751-4a5f-462b-aa19-3a0fe8d08887", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -310963,7 +310963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee03e4d7-ff72-427d-be33-05f95cc01b30", + "id": "83a61d9a-4011-47e5-8498-3470438a7396", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -311019,7 +311019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59091eec-01f4-4f3b-bbe1-37dab736378c", + "id": "a0275522-02cd-4a59-bf04-249243601edb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -311075,7 +311075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1564103-5169-4455-b412-f851688b3860", + "id": "442ce0bc-24bf-45b1-98e5-342593365144", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -311131,7 +311131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc5d04d4-d9d9-4c2c-87ab-64624d2da0b7", + "id": "4369daaa-6492-49f7-ae6c-eb8ff688a9ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -311187,7 +311187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5599481-ac3b-4607-8dd3-452cdd7e7880", + "id": "6af9e7a5-e942-4916-87bc-c9d2b0917cc6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -311249,7 +311249,7 @@ } }, { - "id": "cb0352b5-c0be-4f02-a969-fdcdc75ad3c2", + "id": "bca9a2de-b454-41a6-ad7e-316e22b38837", "name": "Delete Vendor Connector Mapping", "request": { "name": "Delete Vendor Connector Mapping", @@ -311291,7 +311291,7 @@ }, "response": [ { - "id": "7f20b97b-8822-43de-aff8-c859dc6537c2", + "id": "bfafb147-9e5c-46df-90f7-0be1270f948d", "name": "Successfully deleted the specified vendor connector mapping.", "originalRequest": { "url": { @@ -311347,7 +311347,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bc0b67e-bf27-450d-a485-d2e6139db9f2", + "id": "32b5934d-97ab-4cc3-b512-631dda7cef8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -311403,7 +311403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbdefe84-7cb6-4972-856b-b0c4e093989a", + "id": "ac831e5f-42c9-4396-a76f-a7d3a3f511da", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -311459,7 +311459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "499c8c58-e422-4b52-840a-249072412ed3", + "id": "f25d82a0-47fe-407b-aaf4-e4037900d157", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -311515,7 +311515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e810353-caa2-4e90-a596-dcd4f2954a79", + "id": "5eff82b4-0a4b-41bf-b57f-b1a2d00b274d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -311571,7 +311571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "831034d5-2146-4936-8ed3-2f74b247c3a3", + "id": "475e05dc-f03e-48eb-9936-801ba49db165", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -311627,7 +311627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41cdb11f-c7c8-4b34-bbe6-49111e8a95da", + "id": "68e6d692-cb01-42b7-9ca9-64583889933a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -311695,7 +311695,7 @@ "description": "Use this API to implement work item functionality. \nWith this functionality in place, users can manage their work items (tasks). \n\nWork items refer to the tasks users see in Identity Security Cloud's Task Manager. \nThey can see the pending work items they need to complete, as well as the work items they have already completed. \nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created. \nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp. \nOnce the user completes the work item, the work item will be listed with his or her other completed work items. \n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget. \nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details. \nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. \n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n", "item": [ { - "id": "a15f3587-a247-4cb7-b0ec-ac6faaaaa686", + "id": "3368559f-18b2-4117-b2e8-7850c46c182b", "name": "List Work Items", "request": { "name": "List Work Items", @@ -311761,7 +311761,7 @@ }, "response": [ { - "id": "a55f5d23-0eeb-4808-bcea-0883f1ff9eb1", + "id": "b86abfda-c594-45bc-8d54-5bd7d6099454", "name": "List of work items", "originalRequest": { "url": { @@ -311841,7 +311841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adbe9463-8437-4e3c-9e50-975c7d7852fc", + "id": "5b19c6db-d25a-4096-a2a9-75091dbdc151", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -311921,7 +311921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac1e9b8-c4a7-4211-b424-f0c5db1c78d6", + "id": "88f7058a-14c6-45b8-aac8-df4e6125c46f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -312001,7 +312001,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da582653-839f-4a26-966f-fbd3cc7ba10b", + "id": "a4e9f824-c804-4c52-9eed-3c1613111e12", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -312081,7 +312081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01fdbad8-f145-4398-bbed-395df4181698", + "id": "8ed57469-198e-4222-9299-95cbff31e751", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -312161,7 +312161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d31dc6bb-9164-40d4-ac88-988d93d2dbd2", + "id": "c192be31-edd5-484f-baaf-29fb2b192c41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -312247,7 +312247,7 @@ } }, { - "id": "823f3a88-40d0-4105-b3e1-74eed233a580", + "id": "b1554514-411a-46cc-87b9-c0a93baffe83", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -312314,7 +312314,7 @@ }, "response": [ { - "id": "5448b966-7f59-428d-9f92-7a208e1a29e8", + "id": "a43fe12a-6f85-4d97-9f33-42bf532ce2fb", "name": "List of completed work items.", "originalRequest": { "url": { @@ -312395,7 +312395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a5e7f7dd-ed67-4808-a333-65a4e52237a9", + "id": "9c43630d-5494-4c49-b8d2-b7469facd1a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -312476,7 +312476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f50557-f12f-47b0-8484-b42fefb83661", + "id": "e5347587-d205-4fbe-be13-c45e0559b625", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -312557,7 +312557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dfb7517-36e2-4dce-be37-f84e36f5142d", + "id": "cebada13-aa39-4a1d-a1e0-86762463f2eb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -312638,7 +312638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8019e115-f97a-443e-b7db-550568214e34", + "id": "a3ba835e-6dbf-45ca-8a59-7eae069de9bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -312719,7 +312719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d9b0b05-944b-4055-8953-be8a556504ec", + "id": "3eaa000e-9124-44bc-9da1-b47b6f3d78b1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -312806,7 +312806,7 @@ } }, { - "id": "5fb2dda7-f80f-432b-8068-16576b562015", + "id": "9c4b75ad-b624-49dc-b526-710445c7e493", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -312846,7 +312846,7 @@ }, "response": [ { - "id": "fdbaa732-70fb-4410-89f4-7d69b1721178", + "id": "985f6538-adda-4e68-9b3e-35060916be1d", "name": "List of work items", "originalRequest": { "url": { @@ -312900,7 +312900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90cd30a9-9f17-47a0-a13b-044e9ba611d3", + "id": "6c81bea3-a6b1-489b-b453-75cab6d1c6f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -312954,7 +312954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba191305-1ff7-486e-93e8-323f7796b980", + "id": "ee4c0711-dd86-49fa-8cbf-0f84c3c32050", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -313008,7 +313008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78a72d6e-0a6b-4e24-8f0e-f6c4cb0703b3", + "id": "08d49eb0-aae0-4ded-9da0-33dc8ecabb02", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -313062,7 +313062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2adc146a-3369-4de7-bace-bafe467d7739", + "id": "44b22668-db6a-4ffe-8d46-577fe8469bae", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -313116,7 +313116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d27a6fc3-bb9c-4283-87cd-ee412e7fc2f9", + "id": "11b03914-f43d-4ce1-8619-ae5d817e1fae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -313176,7 +313176,7 @@ } }, { - "id": "6a2c959d-d589-4d62-9594-b7784b29a632", + "id": "72402f7c-9e00-480a-a16a-a0a94e2b6531", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -313217,7 +313217,7 @@ }, "response": [ { - "id": "49b275e1-949f-4b23-a06d-90423286b4ee", + "id": "525e969f-55e3-48e7-9105-1db2c27153b3", "name": "List of work items", "originalRequest": { "url": { @@ -313272,7 +313272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4231385-91fb-49c1-918f-987d75bb10a3", + "id": "0e867a7e-cab0-409c-805a-f83bd3932f86", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -313327,7 +313327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bd897bd-93a3-45b6-a376-08b6b24c676a", + "id": "2618be38-a030-4295-a31c-116f7d63e4f4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -313382,7 +313382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc0b9f6c-5358-4778-a730-09e8813f157d", + "id": "5c4af582-92da-4f73-9f71-4de4f833fda8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -313437,7 +313437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "303d8f83-8dd9-4a8a-bb07-3aaa173d29ee", + "id": "035fde43-1e41-4f07-b265-197b7a08aaf5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -313492,7 +313492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97f0edd0-a70a-49ad-b62c-f82e438cbf76", + "id": "93146e37-c691-4118-85a3-b7a1491f0e15", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -313553,7 +313553,7 @@ } }, { - "id": "e47e08e0-69de-4747-876d-07e775bd6998", + "id": "33d3c5a1-6d1b-4b35-8f7a-809793fbafb5", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -313593,7 +313593,7 @@ }, "response": [ { - "id": "bea0e472-1e91-480d-a09c-5daebc162013", + "id": "0004736d-a8d2-4d3d-b370-652976e7f08d", "name": "List of work items", "originalRequest": { "url": { @@ -313647,7 +313647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f747e481-312d-439e-b9ec-9d8508852db8", + "id": "18846019-15ec-40d2-9554-3feea517e685", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -313701,7 +313701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2517ed86-1df8-4a70-8bcd-9c7aac7148b2", + "id": "c82a1250-077a-4b5d-a09e-7d0ee1a48ff7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -313755,7 +313755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c007d48-93ee-4776-8a23-3e7dfdf534bb", + "id": "52cfd163-e8a0-4533-8b2b-39d0c5c2801f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -313809,7 +313809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36f7b915-ed8c-4460-8066-3e8cdc74f6f8", + "id": "8ae8c51e-9636-45e6-b6fd-64c28361dde7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -313863,7 +313863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "812132aa-005f-411e-a2c8-0f0c1968e0c1", + "id": "4c458110-68b3-4fc4-b9f0-c91de521d4fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -313923,7 +313923,7 @@ } }, { - "id": "c9d3e8ba-4376-4b8a-809b-5b525fc978bd", + "id": "6e16fd1c-2671-4ee7-ad11-833838c9bef2", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -313964,7 +313964,7 @@ }, "response": [ { - "id": "53df06cf-9ea4-4ffa-94b6-4e0f2584dc24", + "id": "a0a86e8a-6c1f-4e2f-89e5-25790aff4753", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -314008,7 +314008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a74350f-c607-47ab-a521-f9a53697e332", + "id": "365def0a-a34f-498f-b515-804884a4ce7f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -314052,7 +314052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c48f8821-2fd2-447b-a412-46cea5bcf5af", + "id": "442ab5d4-e460-4aad-a9eb-9f9e0164ee70", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -314096,7 +314096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "671d2b57-a198-4e83-8e9c-059f0a0d1e01", + "id": "09d29619-ce18-42d4-98ee-7a534c44b593", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -314140,7 +314140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31c577da-a183-4dfe-a0b3-3e63d0c4d0de", + "id": "8626a3cf-e2b4-489c-91ab-e6baae6c1565", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -314184,7 +314184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf8d704d-a415-43fe-9f94-c974b812f95e", + "id": "6a47bd11-e77c-4b48-893b-b4583b8fffb3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -314234,7 +314234,7 @@ } }, { - "id": "2f1d6f77-e58b-47c2-b1bc-a63ed8edcd2c", + "id": "8fcb11ee-19e5-49f9-bfb3-a4c9e3aaa17f", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -314275,7 +314275,7 @@ }, "response": [ { - "id": "7b6530f4-48c6-4f91-8a83-49f7a0c35c8b", + "id": "4ec1c22c-f074-4175-b142-1ad73ac1fb30", "name": "A WorkItems object", "originalRequest": { "url": { @@ -314319,7 +314319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03a72fad-7214-4bfd-8dca-6b285d86b191", + "id": "dfdcfb7e-81cc-4b7a-b1d6-9b4dbb1d5faf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -314363,7 +314363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d5e7dda-2007-4a15-873e-01aaec6c373e", + "id": "2457bc86-634f-4b97-b8e2-f79fa0d4e0b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -314407,7 +314407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ab6abb2-85d3-494e-9834-92aa6502fd3f", + "id": "d1beb21a-bd07-4c77-87cd-c0f1d9527262", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -314451,7 +314451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6fad36-8507-44df-a191-33c308761746", + "id": "405372f1-31e6-42ac-8da3-90fbda895354", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -314495,7 +314495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d25738c-40c0-42d3-adad-f9f0071cbe2c", + "id": "6fbc2447-f6ef-4f06-ac6d-f64c81d6b23e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -314539,7 +314539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f82271b3-9d2d-422d-bb4f-11abf6615ca2", + "id": "cd144fa7-d999-42da-a4c4-788745befe53", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -314589,7 +314589,7 @@ } }, { - "id": "c5e095f8-6a95-4f59-a1c9-34f68674a8ac", + "id": "ff12c0e3-fe9a-4ee4-8e01-402dcfbb757b", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -314642,7 +314642,7 @@ }, "response": [ { - "id": "8837555a-35db-4273-b76e-60dfea25f706", + "id": "30537302-fdc4-4bfa-b9b5-b8b5372780d2", "name": "A work items details object.", "originalRequest": { "url": { @@ -314688,7 +314688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80cbc4ae-7142-4bfd-adff-2f757fd89ccb", + "id": "3cbbc97d-183c-495d-ac8d-da76aeae3d96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -314734,7 +314734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e454317b-c8c6-4589-b987-0c03610fa6a4", + "id": "8a9dcea9-d119-4c62-94c3-1aa1ba7e3228", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -314780,7 +314780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65eb2073-e0cd-46b9-ba55-17d4c6e64ed7", + "id": "f9498a71-75c0-4536-b07a-d5ea7d6022d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -314826,7 +314826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7531186e-00b4-47a5-995c-8066762286a7", + "id": "146f0fac-903a-4537-a53b-9baa8837211a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -314872,7 +314872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5515ca54-e575-450e-8f32-0b6f37008417", + "id": "67994851-6886-4103-aec6-98443b23c85d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -314918,7 +314918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac451817-7c3f-4db2-bf7c-d1c0571a2285", + "id": "3624f146-a900-45f6-8af7-98342eec3689", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -314970,7 +314970,7 @@ } }, { - "id": "0d67b168-0de8-41da-9a9c-f63bbe3fe70b", + "id": "51b75f22-3b71-49ab-8995-593e70b8fa09", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -315023,7 +315023,7 @@ }, "response": [ { - "id": "7ea912d0-e228-421d-8b8a-59434ac15459", + "id": "f28c687c-dd7f-4afe-af5e-1636c90211c0", "name": "A work items details object.", "originalRequest": { "url": { @@ -315069,7 +315069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34e2c182-57b0-46b3-a04c-403ddaffa0a5", + "id": "84d32dd6-8441-47be-9436-219c6cf5bc48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -315115,7 +315115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82a3a0b9-d6b5-42ff-9d64-a9b1a091a1a4", + "id": "a7e9edac-52a7-441e-82df-283c6229b73f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -315161,7 +315161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d008ac6-0096-4d96-a5a0-168bef454e8c", + "id": "a8ced4bf-1e6f-4048-bc41-b91f1f51bf52", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -315207,7 +315207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1e47ed3-0873-4143-8fec-9b547dd51af7", + "id": "f1e80264-dc5f-4585-90fb-428e891efd3a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -315253,7 +315253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39744f5c-ad82-4edf-a872-8a89d7d2db6e", + "id": "90ce6d35-389f-485b-8fc8-4963a3e684e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -315299,7 +315299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc9f9437-a0d0-4a3e-9811-3b5f93ad1623", + "id": "27921c1c-39de-4e06-8078-ab4ccc8ebacc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -315351,7 +315351,7 @@ } }, { - "id": "94e7c648-c88c-4b56-9b14-49de4d4945b4", + "id": "47643099-2925-460d-85f6-bcb3b5bde559", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -315393,7 +315393,7 @@ }, "response": [ { - "id": "7f93c41c-de2b-47ba-a74c-69ba808d7f78", + "id": "80638b15-1025-4c0e-9aae-dbe54218a50b", "name": "A work items details object.", "originalRequest": { "url": { @@ -315438,7 +315438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b805455-9ee7-4126-a06f-a76a1f6d6d71", + "id": "3638dfcb-ed6a-4728-9108-ad3df4e04f8a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -315483,7 +315483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "502e5314-6fb8-4ebd-bfb2-db5a88b065c9", + "id": "bc3a22cd-c6ed-4866-89bb-3ebd7d4734a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -315528,7 +315528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "475f505a-8932-4304-b17a-5f3393ae74dd", + "id": "0f66a2d3-6dee-42de-86f4-e0fe0609e9ea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -315573,7 +315573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44aa13e4-4728-4c91-a404-cb1da048dca2", + "id": "05cdcebe-79d8-4b4b-aa40-56d7158a8de7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -315618,7 +315618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc857414-ecc0-4726-af2c-a5fbac9a3b65", + "id": "4c20e927-f4be-4128-a989-8eddcd5fd577", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -315663,7 +315663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db66cd33-4468-4f0f-b805-a030761c6f5e", + "id": "06ce0442-7231-4590-8161-aa78eb3ebfad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -315714,7 +315714,7 @@ } }, { - "id": "5538cb90-9ddf-4d3a-985b-af8f5e2e41c5", + "id": "9b316716-7773-466d-81ad-feae49a3c440", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -315756,7 +315756,7 @@ }, "response": [ { - "id": "5dc19421-b8fc-4c25-ac4f-eaf7efbb0009", + "id": "f700526f-67d4-4b49-b1dd-2e5272100af0", "name": "A work items details object.", "originalRequest": { "url": { @@ -315801,7 +315801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c3e9fa8-180a-434f-a554-9a8fee45304b", + "id": "5550be5d-55fa-4f52-9ab0-9e0023b0d8c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -315846,7 +315846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78f9f904-9829-4b75-b45d-ee7b9e32b6ae", + "id": "2c2e5bcd-bd28-485b-bac6-11254ba6f653", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -315891,7 +315891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49ecddb9-1a31-4ff3-b532-c8bdb6080190", + "id": "6cbb8b41-019e-4561-b354-7e719d15e748", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -315936,7 +315936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1c6bcc4-b055-4493-92cb-6200342b81d9", + "id": "9d5b16a9-4252-478c-9ea5-adc78187745d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -315981,7 +315981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f3248c4-2e48-483a-ab7b-69250f77792f", + "id": "2bffbd71-faa8-4775-96ad-09ae3c6bfa83", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -316026,7 +316026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c782abd-a61c-41c5-8dc4-af5dad133a3e", + "id": "bb9b5a8e-a149-4054-8852-2ffd634e1f58", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -316077,7 +316077,7 @@ } }, { - "id": "08217651-2ddf-4a95-8b9f-8c4e3f0c02b6", + "id": "5feb663a-0b1a-4e6f-81e2-ac033634ec5e", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -316132,7 +316132,7 @@ }, "response": [ { - "id": "d5a281d8-a379-4d5b-9134-8b2119c38252", + "id": "971dbdec-fca2-47ea-8921-9b4116114a30", "name": "A work items details object.", "originalRequest": { "url": { @@ -316190,7 +316190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12aba708-dc7f-4ae9-a1e7-192c1e6f4fdd", + "id": "ae20f9b1-15d3-4ed2-9706-361c1d15c174", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -316248,7 +316248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21d1d69f-0940-4410-90c0-855e7f78d6c7", + "id": "9288fc9f-ea9d-4098-a069-4621580f5c1e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -316306,7 +316306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0e701ea-1077-4838-9bdd-4e5538c91d9b", + "id": "19f49594-abbe-477e-b2e8-dba989286d4a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -316364,7 +316364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56ae3e27-c571-489f-968c-ba411069536b", + "id": "73712f9d-e29b-4b8d-b357-78e46b3a4482", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -316422,7 +316422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd2607bb-bf9f-41ef-96cc-a08b359f5bfc", + "id": "eb1ecd68-69f7-460a-afbb-81faa907ef2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -316480,7 +316480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76a8163e-ba96-4e0d-ada9-20b21d93c038", + "id": "302b860e-bf4e-4163-924e-9891028c2b35", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -316544,7 +316544,7 @@ } }, { - "id": "f3715954-dca0-4c4b-9d42-154570d453d0", + "id": "6b277e61-192d-4cfa-9745-7f0b2a352067", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -316599,7 +316599,7 @@ }, "response": [ { - "id": "9af07cbb-b9c4-46ae-af0d-96a6a4b2a7a4", + "id": "50cc17e7-3138-442a-8892-110c9b1d9512", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -316647,7 +316647,7 @@ "_postman_previewlanguage": "text" }, { - "id": "2bce6e02-5853-4bac-bbb7-fa4950276d43", + "id": "a491879f-7d2b-45bf-974e-13ef799aca48", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -316705,7 +316705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ecf34e6-462e-460f-af40-10c31ac897ee", + "id": "c80b466d-d199-4840-a333-2ded323910c4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -316763,7 +316763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb0fe0c3-ebe5-43d0-bc0a-2432e4f50fa1", + "id": "941feeb3-338f-4ba9-88e0-9dc94aa0ec66", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -316821,7 +316821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47c3b117-38a3-4d0b-9f0f-8ca8dded7d6a", + "id": "aa105c31-8ba6-45e0-98cd-80c75fe765bb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -316879,7 +316879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9ac148a-fead-4531-98a8-2f2dcc947222", + "id": "2a85c1bf-b476-41cb-afd1-68388775fe99", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -316949,7 +316949,7 @@ "description": "Use this API to implement work reassignment functionality.\n\nWork Reassignment allows access request reviews, certifications, and manual provisioning tasks assigned to a user to be reassigned to a different user. This is primarily used for:\n\n- Temporarily redirecting work for users who are out of office, such as on vacation or sick leave\n- Permanently redirecting work for users who should not be assigned these tasks at all, such as senior executives or service identities\n\nUsers can define reassignments for themselves, managers can add them for their team members, and administrators can configure them on any user’s behalf. Work assigned during the specified reassignment timeframes will be automatically reassigned to the designated user as it is created.\n\nRefer to [Work Reassignment](https://documentation.sailpoint.com/saas/help/users/work_reassignment.html) for more information about this topic.\n", "item": [ { - "id": "ecf380a8-20a6-45a4-abf2-1389adab960a", + "id": "07c621d8-cdf2-4d8c-a736-9db549547463", "name": "List Reassignment Config Types", "request": { "name": "List Reassignment Config Types", @@ -316988,7 +316988,7 @@ }, "response": [ { - "id": "fa3252c0-3e36-434d-a335-f8003cb374e6", + "id": "0d6f81fa-cfb3-4ea2-a4d8-1f6e2c2312d1", "name": "List of Reassignment Configuration Types", "originalRequest": { "url": { @@ -317041,7 +317041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff766eb1-8cf7-46ec-a1ea-4d066bdf7301", + "id": "bb71ea71-d705-405f-9a8b-f888f9efc68a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -317094,7 +317094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21cf1ccb-1441-48fc-a25c-20290c9b037e", + "id": "c6b7c3d8-9af4-4e91-8fbb-e336e5ef1a23", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -317147,7 +317147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26408969-4e51-40b4-a970-417b0070ebde", + "id": "88a67c61-4c15-41de-8dd8-1d0d674a0698", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -317200,7 +317200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6d3ac8c-edc9-4936-9c50-9373050e0c68", + "id": "38263a19-4772-439a-8200-95fb0f95750f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -317253,7 +317253,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2157e76e-779d-43e6-9fb8-c9047a8d7897", + "id": "78e567be-c434-488d-b2c2-e8c36f879347", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -317312,7 +317312,7 @@ } }, { - "id": "c8f8addc-c091-4d7b-a714-862feab01548", + "id": "7877c65a-03f1-423e-8486-0660a27820b8", "name": "List Reassignment Configurations", "request": { "name": "List Reassignment Configurations", @@ -317350,7 +317350,7 @@ }, "response": [ { - "id": "dc8c86ea-5995-4c05-902d-f62516d64b16", + "id": "472e281b-7f1e-414f-a442-26abc490745b", "name": "A list of Reassignment Configurations for an org", "originalRequest": { "url": { @@ -317402,7 +317402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5389faed-42da-45c0-b75a-7effe26ca300", + "id": "0f4bd250-00cf-41ac-86e6-4b42baef757e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -317454,7 +317454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3eb0068d-696a-4d25-8123-c07188a17546", + "id": "54562452-79eb-47d2-93d4-292bddfb6092", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -317506,7 +317506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07e0a624-3502-4aca-bc3d-e8a7348c326b", + "id": "d7593b13-bbec-4297-bf06-f05c61640389", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -317558,7 +317558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4759e90-ef09-4532-b6a7-8e425a9dfef9", + "id": "81ec76f6-b847-478b-a960-8f5ebcf85ca8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -317610,7 +317610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0605f13-d613-464e-83db-763449f96fbb", + "id": "98281aa8-301e-42e9-9140-e43293e58805", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -317662,7 +317662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04b6540e-0254-458c-b456-61927c7181a1", + "id": "8baad274-2599-4ff0-8df4-4f707c5d903d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -317720,7 +317720,7 @@ } }, { - "id": "064f21ba-ef4a-4541-b175-697a38fbda53", + "id": "e831197b-f55a-4a73-a5d6-fc561096c4e6", "name": "Create a Reassignment Configuration", "request": { "name": "Create a Reassignment Configuration", @@ -317771,7 +317771,7 @@ }, "response": [ { - "id": "00db6356-39fe-4986-b581-ab7664c6e188", + "id": "f4b64700-c932-4307-a1d5-b7d6d36b73e3", "name": "The newly created Reassignment Configuration object", "originalRequest": { "url": { @@ -317836,7 +317836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76b2bd94-f11d-4f58-9bc9-53c2b7d9fe1f", + "id": "b9d5bfea-dd5b-4bfb-be1b-3f3be15170f3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -317901,7 +317901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "054dba37-4278-49c9-9eda-bd13bb18b1c7", + "id": "c19d5331-6723-4dd1-b408-7943208c80d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -317966,7 +317966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f4ba8c6-c97d-4c8f-ac2c-db62db964aec", + "id": "83cf25c7-dff4-411d-8f9e-e4139cbc888c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -318031,7 +318031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6350e07-44de-4cfe-8e0a-e74185ddd51d", + "id": "767d649e-98bf-4136-a569-7f11c23ce1bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -318096,7 +318096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bc1c338-080e-4873-b954-8da50b84af4f", + "id": "2296435d-7faa-4f12-8edf-52bfacd8570e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -318167,7 +318167,7 @@ } }, { - "id": "7931863f-74c1-4a80-b4c7-eeb5b67e11ea", + "id": "cb1bdf3f-728e-420c-9a0b-329595024738", "name": "Get Reassignment Configuration", "request": { "name": "Get Reassignment Configuration", @@ -318217,7 +318217,7 @@ }, "response": [ { - "id": "80860381-7f13-499d-8a9b-a61941f3d368", + "id": "7b399efe-caa7-4acd-8f91-834a3e7567ac", "name": "Reassignment Configuration for an identity", "originalRequest": { "url": { @@ -318270,7 +318270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4eeeae4-316c-4477-a68f-00bf030c67df", + "id": "000081b2-a040-4f55-a83b-8bea65526165", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -318323,7 +318323,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce7df2bd-1fe4-44ef-b7de-2b932528e3bf", + "id": "cdd263b3-eac3-45ac-a3d7-0dea33d8f1c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -318376,7 +318376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea657bdf-9c60-4ec0-bd36-1b4e693e5cd2", + "id": "6e2f604a-cf26-4e75-939f-76fafbf3bd0f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -318429,7 +318429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1facb37e-f4d7-4d47-afca-6655e47edeb5", + "id": "741171c8-c9c2-4cc1-9f61-a99a129b03c7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -318482,7 +318482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6c6ad4d-b559-44c1-baf1-84ca220ad0e1", + "id": "aeb13936-2f2e-4928-bc68-661215b36042", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -318535,7 +318535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6382474-b75e-4348-a7d0-365e66b4df22", + "id": "1098acbd-8c3c-4a31-b0cc-ef3ff36c2330", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -318594,7 +318594,7 @@ } }, { - "id": "5fdb7c95-37b4-4f20-bab2-b0d433ba3ccd", + "id": "50647496-a371-4541-bfb0-5cc1dc0ea956", "name": "Update Reassignment Configuration", "request": { "name": "Update Reassignment Configuration", @@ -318657,7 +318657,7 @@ }, "response": [ { - "id": "b72227c5-e9e5-48c7-b429-3c6ee79d3b4d", + "id": "fe458d90-df11-4349-b7ba-d2330189ecfc", "name": "Reassignment Configuration updated", "originalRequest": { "url": { @@ -318723,7 +318723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1e51ef2-6069-4aad-a2dc-565800aa03cc", + "id": "17bb6bf4-b117-4ad2-a348-a501818f831a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -318789,7 +318789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f776dc41-e467-498a-8324-fcbdac8d52c1", + "id": "9c012863-1034-4504-bc4d-350c89100988", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -318855,7 +318855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01019ff1-cddb-4cd7-9fc3-114d9719a218", + "id": "6fc99270-510c-47cd-8bcd-b1923e476805", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -318921,7 +318921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa7e97e4-5e93-4112-a033-b5eb8a76733b", + "id": "e8a1270b-e738-44f2-986c-76e59ade5326", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -318987,7 +318987,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d6e790d-7b94-45d4-9fba-922c356ea08c", + "id": "8b934591-8559-4a72-a73c-c55f541e4afa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -319059,7 +319059,7 @@ } }, { - "id": "36754dda-77e5-4ead-a24c-6980065a8bb0", + "id": "f206fe1b-1832-469a-a3ba-7a90b6ba3134", "name": "Delete Reassignment Configuration", "request": { "name": "Delete Reassignment Configuration", @@ -319120,7 +319120,7 @@ }, "response": [ { - "id": "440380d3-4d6a-4a9f-a484-cf0314972190", + "id": "4e96c0e3-00fd-4499-8272-b1943781548f", "name": "Reassignment Configuration deleted", "originalRequest": { "url": { @@ -319164,7 +319164,7 @@ "_postman_previewlanguage": "text" }, { - "id": "e53f0514-3bfc-437f-9d9f-76363ba36eb8", + "id": "c071024e-df94-4e90-bcda-b539c113d8d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -319218,7 +319218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d573fb7-0332-435f-af30-2e749d2f0adf", + "id": "3a0fd19b-a938-4ba3-881f-19d1ff0e431c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -319272,7 +319272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3da442f-36b5-48b7-b58e-d6ebf4b268cc", + "id": "6e3eb7a0-d2e0-431e-ab12-02cb17af8774", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -319326,7 +319326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "902ef8fe-382d-4da8-a3df-137ffc935614", + "id": "ab11ec20-8445-41ca-a6b5-4cfa8f0a884a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -319380,7 +319380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e729e3f-d249-4b68-9783-406bfe208293", + "id": "ee59f468-a5ef-4295-8bac-cff9eebfedc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -319440,7 +319440,7 @@ } }, { - "id": "56b47d1f-3984-416d-a700-9cb9b7c23615", + "id": "109b79b7-6ddc-42ee-8c20-53c02f9f4896", "name": "Evaluate Reassignment Configuration", "request": { "name": "Evaluate Reassignment Configuration", @@ -319512,7 +319512,7 @@ }, "response": [ { - "id": "1c0c50e4-ab72-4421-8342-f800c845a9a3", + "id": "6863f122-4151-4c7a-827d-679feceb5096", "name": "Evaluate response when no Reassignment Configuration is found", "originalRequest": { "url": { @@ -319577,7 +319577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37384755-3684-4590-8f65-9b7decc39d19", + "id": "a5105291-5e99-4ff9-a24f-35e411685ab4", "name": "Evaluate response when a long Reassignment trail is found", "originalRequest": { "url": { @@ -319642,7 +319642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af36062f-60b6-4ba6-a30c-905af86f0ab0", + "id": "54b35735-aad4-40f2-bdee-7010eb47f881", "name": "Evaluate response when a self-review is found and manager or org admin escalation is applied", "originalRequest": { "url": { @@ -319707,7 +319707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0787a78-19fd-4792-9f70-9ad6930d83b9", + "id": "25d961b9-98ca-4799-9a4f-efae54dda8e7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -319772,7 +319772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f0da48-fff4-4a38-9b3e-33f34f5af3aa", + "id": "dcc195b1-3b2f-4235-90b4-6dccca29452f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -319837,7 +319837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2493a3cc-59db-43de-9530-53cf2976016e", + "id": "371eb987-0c6f-458a-9754-d096b70aca56", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -319902,7 +319902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec71864e-a714-400a-88ff-6c708e212fba", + "id": "a001afa8-3036-4041-9cde-568c52f8e4ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -319967,7 +319967,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64eae552-db53-4a8d-82b6-9a96540e0934", + "id": "b1789b30-e65f-493c-b954-da50f799615d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -320038,7 +320038,7 @@ } }, { - "id": "6a7a2e2b-b745-49f6-a76d-88b5c65acbb0", + "id": "dc88c3f8-01cc-474f-84fb-9da4249a6391", "name": "Get Tenant-wide Reassignment Configuration settings", "request": { "name": "Get Tenant-wide Reassignment Configuration settings", @@ -320077,7 +320077,7 @@ }, "response": [ { - "id": "ff664276-ebd2-4c5f-8b35-1fcfdd56a8f5", + "id": "92cbf1a4-762f-489a-860a-f9ea0e6dc2d5", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -320130,7 +320130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee99b011-4b36-4622-b13d-f859069e1c7e", + "id": "4345f179-a0b3-4ab1-a010-6928389f0958", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -320183,7 +320183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbf16b4d-f6be-45fa-b148-06cca2944915", + "id": "37bac40c-9b16-43ac-b87b-061d0200a30a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -320236,7 +320236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43cb1054-c5a1-4781-a190-a3d3cf8debbb", + "id": "a6f8e970-9ab3-4556-9869-ba0115ca362f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -320289,7 +320289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e9ac0a3-ae0a-40fd-a57f-14386d29e2c1", + "id": "503f4d49-0ef9-4ad2-8015-ce53f00b254e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -320342,7 +320342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d3337dc-f1d4-4b72-aebd-c225855171e7", + "id": "2a92422b-fceb-4442-97c8-e900b3ca75c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -320395,7 +320395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa73f36d-3c6a-4547-910f-72275ef357be", + "id": "c0a79099-622e-4c35-929d-13c900748b09", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -320454,7 +320454,7 @@ } }, { - "id": "a497ce05-dd54-4ca3-9998-8a5e97583fbc", + "id": "d7c6f1e5-e76d-4650-be27-cbb7ab528483", "name": "Update Tenant-wide Reassignment Configuration settings", "request": { "name": "Update Tenant-wide Reassignment Configuration settings", @@ -320506,7 +320506,7 @@ }, "response": [ { - "id": "5e2a368a-2748-4634-947a-abd4634938ca", + "id": "d8e651df-1c6e-421c-b16c-bd49cbdcac89", "name": "Tenant-wide Reassignment Configuration settings", "originalRequest": { "url": { @@ -320572,7 +320572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75928cf8-07e8-46ca-b6f3-5d65763e533f", + "id": "3c6b9e6b-a552-456f-88a9-8afc090c0395", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -320638,7 +320638,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c81bd1f9-7eab-4afd-a2e6-a1e7fd95f591", + "id": "c4703e21-8f18-4a21-b0ff-842cd5e0389b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -320704,7 +320704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4ba2148-9de1-4190-a671-2aa92717d16f", + "id": "da913003-e778-4fc1-ac4f-75a374124373", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -320770,7 +320770,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c449b3a9-79b0-41db-b2ff-983ab16e521e", + "id": "4f349d0b-0c23-4023-bd12-32fff6162806", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -320836,7 +320836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7bfd305-adc7-4a52-908d-f525420eddec", + "id": "5daeb18a-4384-4f1e-b32a-ba2af68a3c2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -320914,7 +320914,7 @@ "description": "Workflows allow administrators to create custom automation scripts directly within Identity Security Cloud. These automation scripts respond to [event triggers](https://developer.sailpoint.com/docs/extensibility/event-triggers/#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the Identity Security Cloud UI. Workflows can be configured via a graphical user interface within Identity Security Cloud, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.\n", "item": [ { - "id": "9611e8f7-4ce6-416e-96ac-99b08b125f13", + "id": "de91b11b-5d28-4464-b35c-5389993e1f8b", "name": "List Workflows", "request": { "name": "List Workflows", @@ -320943,7 +320943,7 @@ }, "response": [ { - "id": "0eeda460-e4ea-43ff-b3a2-9d897024b5fd", + "id": "763050f7-d96f-477f-a1c0-8fa52dc13ba1", "name": "List of workflows", "originalRequest": { "url": { @@ -320981,12 +320981,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"quis amet non ex do\"\n },\n \"displayName\": \"Excepteur aliqua velit Ut reprehenderit\"\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"adipisicing eu fugiat\"\n },\n \"displayName\": \"\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"elit\"\n },\n \"displayName\": \"Lorem\"\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"amet\"\n },\n \"displayName\": \"aliqua irure dolor tempor reprehenderit\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "3d181622-dfe3-4acb-8e4d-43eeb43f0536", + "id": "3afb6d1e-1934-4f9e-8fb4-50bd7320f873", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -321029,7 +321029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02f34f3a-f201-43b0-964d-0454c0873f73", + "id": "48577b32-1128-4f78-a813-6c87f7a69480", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -321072,7 +321072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5f63b00-f9e5-41fb-bdd5-ef055e3cc355", + "id": "56ba2785-356a-49b8-8e06-a1b9a1433d6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -321115,7 +321115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2045d22-13e6-428f-b73b-20213a387064", + "id": "066bcba7-52de-4556-8b27-c71cf78469ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -321158,7 +321158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54cbf22e-8213-4b25-abb6-b8cfb284c485", + "id": "9e4d5bfb-4a98-4bd5-ae18-700a0c8666af", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -321207,7 +321207,7 @@ } }, { - "id": "a7f2e476-4fb6-4fba-b683-f82c7ecc59b2", + "id": "e1374c76-6155-4ffc-ac80-edc49d14cc52", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -321249,7 +321249,7 @@ }, "response": [ { - "id": "4758e215-5291-424e-b5cd-28dd47e111ad", + "id": "3626ba72-eac6-4f22-b00b-9cf8c59a17c1", "name": "Event Trigger", "originalRequest": { "url": { @@ -321300,12 +321300,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"veniam tempor\"\n },\n \"displayName\": \"voluptate elit commodo\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"enim \"\n },\n \"displayName\": \"cillum cupidatat veniam ipsum\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "8ac13d07-bfec-499d-b742-6d4da0e2ddf2", + "id": "c4c103b1-b030-482c-8000-2e1f390c9c6e", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -321356,12 +321356,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"veniam tempor\"\n },\n \"displayName\": \"voluptate elit commodo\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"enim \"\n },\n \"displayName\": \"cillum cupidatat veniam ipsum\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fbc8a3e6-5453-4ac0-aefd-712766da10df", + "id": "f0c00a59-6ef0-4757-90a2-e67c08f9c687", "name": "External Trigger", "originalRequest": { "url": { @@ -321412,12 +321412,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"veniam tempor\"\n },\n \"displayName\": \"voluptate elit commodo\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"enim \"\n },\n \"displayName\": \"cillum cupidatat veniam ipsum\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "88a55a46-6572-48c4-ab16-559ed0afff15", + "id": "5883a13a-1a47-4128-8c21-54dfcd17715f", "name": "Event Trigger", "originalRequest": { "url": { @@ -321473,7 +321473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02a27dcb-75e3-45fa-ba02-8744907f4b96", + "id": "70abe1c8-4627-45f6-8b94-c4d4c767519d", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -321529,7 +321529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ae9afd1-72b1-4d15-a4b2-ad0098c19e4b", + "id": "012a6937-48b1-4e75-9e05-2930276817c8", "name": "External Trigger", "originalRequest": { "url": { @@ -321585,7 +321585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88038b20-897f-47cb-94eb-d4378dd2c232", + "id": "b6408a03-6ff8-469d-8419-0adbba5d3324", "name": "Event Trigger", "originalRequest": { "url": { @@ -321641,7 +321641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b16152c-6edf-4125-bc4f-9e8939a7fdad", + "id": "9bd34ca5-4a34-4ecd-8611-7fdb20cf7dec", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -321697,7 +321697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91e409fe-1dcb-43c7-9431-dbe87b1bf2ce", + "id": "932bba50-9993-431a-8c17-dfff6cde371b", "name": "External Trigger", "originalRequest": { "url": { @@ -321753,7 +321753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f6f086e-ef8a-4f91-831f-5a9ca32ee8c3", + "id": "04c402c3-ffeb-4f67-af42-0730320d1727", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -321809,7 +321809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a54b0c9d-e911-456f-834a-2e292c9cbb9e", + "id": "22cdb194-2539-4145-a835-d114f64d896b", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -321865,7 +321865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca370adf-8e88-4195-bf2c-f66bd5b3b690", + "id": "d2a92831-a23a-416b-ae6f-a54bc36063bb", "name": "External Trigger", "originalRequest": { "url": { @@ -321921,7 +321921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adb4fcc2-aeb6-49d3-87c0-51e9d66a32e3", + "id": "cff452f4-aa7d-4b3e-96e5-59682b0833b5", "name": "Event Trigger", "originalRequest": { "url": { @@ -321977,7 +321977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac1a6b89-d172-4e16-839b-61f85770abab", + "id": "0d5bb371-e85e-433f-be1f-cc35cb144446", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -322033,7 +322033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4590ccc-911a-4d04-9172-6a699f9433c1", + "id": "96a0b59e-ee24-4370-895e-454d11764037", "name": "External Trigger", "originalRequest": { "url": { @@ -322089,7 +322089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cae5cad-8fc6-45e8-bd5d-90b05e74db56", + "id": "f66f7cfe-789c-4039-aaa7-fb542799147a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -322145,7 +322145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcdf7ef8-3595-4b9f-b8cb-e43e1862ccc1", + "id": "010c9515-6c9f-47c4-aecc-f7ab2bbcc82c", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -322201,7 +322201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9e8b7b1-583b-461f-89f4-538bc99b7cba", + "id": "964dee5b-1111-4846-b373-5f01e33be0db", "name": "External Trigger", "originalRequest": { "url": { @@ -322263,7 +322263,7 @@ } }, { - "id": "7a62082f-2158-476a-a7ab-a72c6d972c1f", + "id": "219a9c9d-6ad8-4f36-b2bd-7ba31e497770", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -322304,7 +322304,7 @@ }, "response": [ { - "id": "9fd9d988-a046-416d-a74f-470d6d3114cb", + "id": "573a89c5-c671-4231-9dd1-8cc071a3ee66", "name": "The workflow object", "originalRequest": { "url": { @@ -322343,12 +322343,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"veniam tempor\"\n },\n \"displayName\": \"voluptate elit commodo\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"enim \"\n },\n \"displayName\": \"cillum cupidatat veniam ipsum\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "744b9698-100f-42d1-b21d-3815f2d94549", + "id": "1b348a92-5865-4809-bf00-ecdaa668c837", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -322392,7 +322392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b39806c-5ce9-41eb-a649-1e29245d9ecd", + "id": "672e3065-4436-46c7-b51e-de8397c9857c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -322436,7 +322436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04a88cdd-2baa-4780-ac9b-36267beafc55", + "id": "ac998e37-6629-4bdf-9ba9-5db66eecc0b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -322480,7 +322480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a657798-c24a-4182-9f6d-9003d9b30314", + "id": "2ba58567-33e8-4ff4-8871-a1d5067521a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -322524,7 +322524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82b414ff-94fe-4c06-93d2-34c77ce6ad0c", + "id": "5101089b-ddb9-4f11-a7b9-4b8bf5237e28", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -322574,7 +322574,7 @@ } }, { - "id": "e6deaaef-c4e4-42a7-8579-8921de8697dd", + "id": "b6f6e196-090b-4a65-bbdb-6295142df4b8", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -322617,7 +322617,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322628,7 +322628,7 @@ }, "response": [ { - "id": "ebd748da-e707-4467-9082-26e047d45216", + "id": "57bf8f09-9203-46f7-b5a8-f00d041ce148", "name": "The Workflow object", "originalRequest": { "url": { @@ -322663,7 +322663,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322680,12 +322680,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"veniam tempor\"\n },\n \"displayName\": \"voluptate elit commodo\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"enim \"\n },\n \"displayName\": \"cillum cupidatat veniam ipsum\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b1c43ed-a153-4a2a-8cd4-bcd22b44c173", + "id": "de3c1001-b8db-494d-82c9-17ce7bc8d23f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -322720,7 +322720,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322742,7 +322742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d46c8921-4a1e-4dd8-8e0f-9f69b5cf1865", + "id": "13e7dc84-08be-4315-9dda-96dcc0f3e62c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -322777,7 +322777,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322799,7 +322799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4f00040-661f-4c6a-af87-b2f59204dadb", + "id": "f8d5226a-ec0d-4e12-b91e-9f5c0fa87979", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -322834,7 +322834,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322856,7 +322856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac2a332a-0e3e-48bb-9de7-2835a29fce96", + "id": "72d70008-eb95-457f-93d4-c027d6e1c8c0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -322891,7 +322891,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322913,7 +322913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13b61f4c-7dcd-41b1-bbb1-7da283f23360", + "id": "7ea62e54-01ec-4f82-bcde-5e2b9e09af21", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -322948,7 +322948,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"sit\"\n },\n \"displayName\": \"culpa\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt ullamco esse\"\n },\n \"displayName\": \"nulla dolor\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -322976,7 +322976,7 @@ } }, { - "id": "feb763fb-3f5c-4b53-bae1-06eecd7883a8", + "id": "c6770141-e650-4248-905c-8f6dbb634fbc", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -323030,7 +323030,7 @@ }, "response": [ { - "id": "56ba2b79-6aba-4577-aedc-6b35af021939", + "id": "eeaadab0-5ebe-4550-b4ed-e288bb579bba", "name": "The Workflow object", "originalRequest": { "url": { @@ -323082,12 +323082,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"veniam tempor\"\n },\n \"displayName\": \"voluptate elit commodo\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"enim \"\n },\n \"displayName\": \"cillum cupidatat veniam ipsum\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "148487c9-3def-4e95-82d7-f8d4ebc43c29", + "id": "6e7660ac-f592-4960-a1ff-a98519b03e63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -323144,7 +323144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac0ad4f1-92a0-4283-93fd-4f34e36744e2", + "id": "51b68e11-8cee-4e02-85a9-3690b3e11bcf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -323201,7 +323201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8cefe78-8eb7-4d11-81e9-e73fdfd16e75", + "id": "a70dcaac-e8cb-4ec7-bdad-f80439faf8bd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -323258,7 +323258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c0d78ae-c03f-4fba-85bd-99f2b4639c5c", + "id": "bfc78a9b-71a8-4a24-a0ed-5d9f82989452", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -323315,7 +323315,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d800f266-29c8-44e4-a132-ddbc0195bca5", + "id": "e544e0a7-de73-4ff6-a128-43011544fa36", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -323378,7 +323378,7 @@ } }, { - "id": "20a10793-4aa7-4172-b111-f4861c0b9383", + "id": "89c87f1c-c087-4e58-a0a9-32b4cc77435c", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -323419,7 +323419,7 @@ }, "response": [ { - "id": "c0a0dfea-80f4-47c1-827d-4ca351ee7dde", + "id": "7c4a0096-0e64-4a16-946f-0723d8031cc9", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -323453,7 +323453,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4e0c3be5-c2d4-4363-bfb6-0253e7a23df2", + "id": "6ace463b-ba26-4e09-9f77-a91fa4276366", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -323497,7 +323497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ae5096b-a431-4143-93eb-ba61c70245f7", + "id": "70df0525-73d7-4bab-b11a-1bff1d9842fa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -323541,7 +323541,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da69cf94-1c44-4535-be35-e908002f708d", + "id": "91c04311-e1df-4a14-8e42-b518ffc3ef6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -323585,7 +323585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05107212-c6e6-4ce9-80eb-5fc1fa47ddc5", + "id": "f85996fd-8ad8-4bfc-a5d3-d1bb33eeab86", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -323629,7 +323629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6801b7dc-9c40-424d-bf50-a01827ca8961", + "id": "ca65be4f-9878-4a0c-aa72-9dfeb68fab8a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -323679,7 +323679,7 @@ } }, { - "id": "427302eb-3fa4-44a7-af1a-f0f6d076a35f", + "id": "15b65ade-1649-4340-a58c-351ff4d6f8f9", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -323734,7 +323734,7 @@ }, "response": [ { - "id": "56b8924c-327a-4cdc-96ea-454b1a523c1e", + "id": "fc76a402-953a-47c6-88bb-a972c65de058", "name": "The Workflow object", "originalRequest": { "url": { @@ -323792,7 +323792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e8c376e-c42a-4eed-95ec-88d0ac58179f", + "id": "777d50c4-d3a5-42e5-aeeb-6f2672ed583d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -323850,7 +323850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d61fd84-696a-4059-98f0-7c79dc4eccba", + "id": "a5818221-1150-4a2f-ab9e-ff4b14f1b069", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -323908,7 +323908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bece7c3e-7dd2-47fb-84eb-bb3d6d51f752", + "id": "c641c126-f7f1-422d-bab0-ce3f60261039", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -323966,7 +323966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73c4cf55-899d-4301-b657-95c84546112d", + "id": "63137a96-4cff-4158-8087-caf17adf4a5f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -324024,7 +324024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffb6945c-0b62-4e4d-899f-13b9b2c08fd2", + "id": "e895dba1-5d08-464c-bdd3-c7ecde68ad45", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -324088,7 +324088,7 @@ } }, { - "id": "f9c914e4-0914-457a-87a8-165e1fa48d41", + "id": "9ed6a64c-1ce8-4c0f-974f-c29b50d0d9e4", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -324167,7 +324167,7 @@ }, "response": [ { - "id": "d248da80-16a9-4819-8b8f-958a154f334e", + "id": "6d5c854b-5469-46ed-9066-6df1bb7144c6", "name": "List of workflow executions for the specified workflow.", "originalRequest": { "url": { @@ -324249,7 +324249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "194b7b76-49e6-419e-8fa6-ec2c723dec9a", + "id": "eb959b30-0494-472c-8270-da1b6bb19035", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -324331,7 +324331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b46993-7e39-4dfb-8d96-cce7f75da3c5", + "id": "f89bf3d3-624d-47fd-8881-363bc5d7eb6d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -324413,7 +324413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8510dc87-e46f-4fdc-b19b-d499073a1b4b", + "id": "b74b1a9d-a9c2-4bff-9e8e-38854f671e13", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -324495,7 +324495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "732f98cd-4fd4-4fe5-8b11-6411b9ac2517", + "id": "abe12c89-8681-4c04-9dcb-35cb7f14ab71", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -324577,7 +324577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c8ea1a8-be57-4b62-977a-5f210fd55cd3", + "id": "e1f48862-375e-4573-a417-f121e156e974", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -324659,7 +324659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ee7ef8-465c-4da5-b303-970510fad75a", + "id": "cdc8a258-63a5-4ad3-8d12-742357aa81f4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -324747,7 +324747,7 @@ } }, { - "id": "b7d037cb-85a4-4857-adf9-43ebcad99c3e", + "id": "f477f1a7-ad64-4cb9-a7e2-b6977d71c638", "name": "Get Workflow Execution", "request": { "name": "Get Workflow Execution", @@ -324788,7 +324788,7 @@ }, "response": [ { - "id": "3350d569-b9d4-4144-9bf3-d50748ce0bf5", + "id": "ccae2612-1445-4b88-ad5a-a5e9d8e2793d", "name": "Workflow execution.", "originalRequest": { "url": { @@ -324832,7 +324832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4945f208-3abb-41e6-b53c-a5ee7b4d72f1", + "id": "af544d46-7faa-43f5-8160-7e1002eabf69", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -324876,7 +324876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e28d97b1-dfc8-4baa-b80a-6181c80d8959", + "id": "5b102764-12cb-4144-885b-fc3e7b38386d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -324920,7 +324920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1bb95d4-e58c-46a5-8cc6-338ccaa7b886", + "id": "f2608268-a016-4654-bc60-472609d7fc39", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -324964,7 +324964,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36e3230d-a321-4143-858a-c32adefc39cf", + "id": "c2d769be-c2ff-48cd-846c-5a30d1268a7b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -325008,7 +325008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d03e563-7963-4cc7-8cfb-41a97a3b00e6", + "id": "12cc9c63-8f85-4f85-a526-03c40c71e4cb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -325052,7 +325052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4cb0a32-4861-4f97-9961-0aa967cc9be1", + "id": "7db8c76e-3dc1-428a-b926-c15a50dd2dae", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -325102,7 +325102,7 @@ } }, { - "id": "6dce5d53-5005-4817-ac39-c9f4022113fc", + "id": "4b3a9014-1fe2-400e-8e1c-f577bcf6b9b6", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -325144,7 +325144,7 @@ }, "response": [ { - "id": "9975ac93-f2ae-4ff2-b2fd-9851e2617c3f", + "id": "8574cf68-d821-4386-b813-4734d85f4793", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -325189,7 +325189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "561b6efa-cf1a-4fa3-9715-97dcdce83640", + "id": "02dedb90-3908-4e02-b853-ac1b5d4f2dac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -325234,7 +325234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf744760-36e5-4589-b565-41ebf4630464", + "id": "26d14712-66e2-4336-b19d-f2d950e3b151", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -325279,7 +325279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01718109-9b1c-492f-8f68-72a84ed21300", + "id": "1e5a9f74-13dc-403d-ab08-bf20c94c09f8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -325324,7 +325324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "840fac44-9232-4683-9613-756e391ed422", + "id": "236da122-7fb0-4daf-a695-d41cacd72178", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -325369,7 +325369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "540732f8-0d5b-403d-982e-07a0fd526245", + "id": "2a27e241-f56b-4602-ad45-20cd8c89d488", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -325414,7 +325414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f6e570-706f-4693-82a1-64f65c0d06a7", + "id": "5e19bf0e-8d29-457f-8650-3810a254f5df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -325465,7 +325465,7 @@ } }, { - "id": "3595eb15-2864-4579-a53c-5f7bcf8b3edf", + "id": "c2dbadf4-11da-44d0-a653-7e03d05e420c", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -325507,7 +325507,7 @@ }, "response": [ { - "id": "9c7c896f-efd2-4524-87cd-07d8a2fbb7ad", + "id": "f132a3c2-3d49-491e-b9a8-3d3074bb0436", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -325542,7 +325542,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a501e3e8-e528-413a-8e42-8989a8af7e99", + "id": "d98df56d-490e-436c-8797-6bdb0a7d9fd5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -325587,7 +325587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ff4b97a-22c4-4dea-ad4f-26989481ba2a", + "id": "e0686c66-e282-477f-b9ce-f92b57264425", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -325632,7 +325632,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36a56bc6-a656-4504-b489-02e25c86c03a", + "id": "c1368d44-deaf-4eb3-a166-891bfdfc3580", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -325677,7 +325677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "538b517f-f879-4795-a14c-0c4cba5b536f", + "id": "98e16a9b-3b35-4ef2-8f44-c526ee12264d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -325722,7 +325722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f673e8a9-9cf2-45dc-b805-5983a16b0446", + "id": "46003c32-323a-49d6-a16a-9d10c85d52eb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -325767,7 +325767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fab7a931-5b9e-4cea-8551-acc3b96b999c", + "id": "e958d63d-9421-4f6f-8206-9c2ea1818dd5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -325818,7 +325818,7 @@ } }, { - "id": "53442a6d-c2e6-4ca7-86e8-5c1d6d1dba5f", + "id": "76817f29-d828-4499-92e4-d58e450225c2", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -325866,7 +325866,7 @@ }, "response": [ { - "id": "f7f06092-531c-44aa-908d-d2780b1d15bc", + "id": "161178bd-3bed-47d2-8e08-a4d10c21ffc4", "name": "List of workflow steps", "originalRequest": { "url": { @@ -325923,12 +325923,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1946-01-14T04:25:40.345Z\",\n \"versionNumber\": -42665399,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"1966-01-08T06:55:29.980Z\",\n \"versionNumber\": -13047190,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"1949-09-06T15:45:26.410Z\",\n \"versionNumber\": -45168971,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"2004-12-04T06:40:35.274Z\",\n \"versionNumber\": -12491182,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fecacf3c-2d47-47a1-bcc9-2f764e7623f7", + "id": "616d3b26-2896-4e97-be84-1cad8a2c9d9f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -325990,7 +325990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "610abc37-af6f-4610-a427-603770713c21", + "id": "bfa1e3f9-d8a1-4c87-958c-571353cca77d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -326052,7 +326052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45e83a4e-45c0-4b9f-932c-1b337d2617f7", + "id": "f2a48810-fef0-47d8-8419-3087b5f05534", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -326114,7 +326114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ce87c97-d71f-4842-95ed-53bda5732a7d", + "id": "b939f062-6bad-4814-95a5-f37ab13aed0a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -326176,7 +326176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99b140d7-837e-4557-8286-f9a7f2b7fd23", + "id": "e73fa5ac-8adc-44e9-85ed-76a9d8303486", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -326244,7 +326244,7 @@ } }, { - "id": "1bbe7c25-fdb7-4c6c-9cba-650272be1ceb", + "id": "fe2549b3-4381-411d-b082-9a2d1944aab6", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -326302,7 +326302,7 @@ }, "response": [ { - "id": "7ab2848d-b4c3-4374-8fba-38be5abbd610", + "id": "3cdf8e6b-51c2-4ffc-9a83-2080df77a857", "name": "List of workflow actions", "originalRequest": { "url": { @@ -326369,12 +326369,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1946-01-14T04:25:40.345Z\",\n \"versionNumber\": -42665399,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"1966-01-08T06:55:29.980Z\",\n \"versionNumber\": -13047190,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"1949-09-06T15:45:26.410Z\",\n \"versionNumber\": -45168971,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"2004-12-04T06:40:35.274Z\",\n \"versionNumber\": -12491182,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "b917269d-575d-4c51-815c-0f54f311ce67", + "id": "8b23e12b-0c38-4ea1-b260-3f39b217f939", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -326446,7 +326446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4ed86ef-e202-4826-b9d5-a444ba38af9e", + "id": "74be47f6-61c3-4798-ae5e-9fe319584ee9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -326518,7 +326518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d7df19e-6d83-4fff-9899-99eb0c261157", + "id": "e9880cf9-20b1-45eb-ae0b-a7bd1c66908d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -326590,7 +326590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a969553b-ca35-4787-95d1-e3a1ebdf46d8", + "id": "9e1bf0aa-5b11-45d4-b8f4-71f6fabb5f39", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -326662,7 +326662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5893b3f-a71e-4eb4-a10b-e96fc5ce948b", + "id": "901a0cd8-2262-4d6c-b189-8251161b9884", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -326740,7 +326740,7 @@ } }, { - "id": "f5caed4c-8161-49d0-a301-fc62610499dc", + "id": "c411b3ea-b0c9-4952-8526-275d366dc2be", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -326798,7 +326798,7 @@ }, "response": [ { - "id": "6c605340-23a3-4b49-86b8-3b1999ad916f", + "id": "7acc985a-8e43-496d-8456-de6293b0ad12", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -326865,12 +326865,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"1962-12-07T13:43:39.474Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": true,\n \"deprecatedBy\": \"2019-04-16T04:18:49.665Z\",\n \"isSimulationEnabled\": false,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"2015-06-17T18:57:04.199Z\",\n \"isSimulationEnabled\": false,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"1961-10-19T18:24:10.855Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "afe67df5-fb5a-41e7-a431-5f93a136c151", + "id": "8aec4fb5-91f2-4dc5-9f2c-0d7143f7d106", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -326942,7 +326942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebd957aa-485d-42ed-80da-8f523ad59c71", + "id": "e6e97a2b-63d0-4878-924a-0e76ba8699c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -327014,7 +327014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "203eb075-c68e-4762-a384-11c053690826", + "id": "668c8ba8-9a92-4c2f-963f-733a27be06a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -327086,7 +327086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84872440-0144-493f-8da8-86d6d08a501c", + "id": "f0291228-0969-467a-9a60-4d6948f6a3a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -327158,7 +327158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0e69091-12e7-4571-8a2d-dc944e60f4ec", + "id": "2ddf71e3-7c45-48eb-92a1-c4b927899d48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -327236,7 +327236,7 @@ } }, { - "id": "8ad55679-9604-45d7-9ed8-8dffaf43dd57", + "id": "a074209e-ccac-4d5c-bb83-8f3a55c0710b", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -327266,7 +327266,7 @@ }, "response": [ { - "id": "9697801b-bea4-424c-a1fb-ae562a34b674", + "id": "8c7ed03e-3107-4e12-a83b-b23492f8350c", "name": "List of workflow operators", "originalRequest": { "url": { @@ -327305,12 +327305,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"1999-01-02T08:06:56.556Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"1988-07-14T10:44:20.990Z\",\n \"isSimulationEnabled\": false,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"2009-09-21T09:48:48.379Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"2015-11-12T07:00:11.629Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4b769c22-2ad6-46a3-8d34-8eba389de520", + "id": "6a0a6b07-6864-4a9e-840a-1a769312f6e5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -327354,7 +327354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c298851-a3c8-4a3c-afb9-8e5e238c965e", + "id": "555ed034-530b-4404-a9bc-d07a0602262d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -327398,7 +327398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5decb7e5-1fd2-4be9-9fa1-05d6f50d9168", + "id": "5955425d-85b2-45f9-a77e-0a4392084f5c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -327442,7 +327442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5f10fae-673b-4705-8172-4167113e98d1", + "id": "8f9d3cf5-a674-4ffd-bb65-1236a4179d40", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -327486,7 +327486,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b3bd3f2-0ccc-4582-b044-e2d49c3f359b", + "id": "d652e329-b698-45e0-9fcc-af0b6b8af25a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -327536,7 +327536,7 @@ } }, { - "id": "7b0ca43c-853f-470b-a5b7-81649c21b922", + "id": "3ee0a7aa-8461-4490-8eeb-230719aa799c", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -327579,7 +327579,7 @@ }, "response": [ { - "id": "a5ac61a6-a3be-4486-b586-598c87b1185c", + "id": "de54f655-3a71-4559-b5ec-0b3e8de032b5", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -327625,7 +327625,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9e5e414-689c-4dea-b024-30800822ff6e", + "id": "2bc23d9a-bdf5-4c89-a424-04eebe003b19", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -327671,7 +327671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2eb4ad62-a9d7-42ec-9683-ebf47eaa882c", + "id": "813f3a39-b178-45bf-87e6-38baf3bc4107", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -327717,7 +327717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26907104-5d9d-46fe-8bf4-0e6b24afe348", + "id": "c2520cf5-59c7-44f5-b4e5-7a34b554f824", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -327763,7 +327763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7295de5e-a82e-4fb3-88a8-49aa8a80d2e0", + "id": "e9dad090-2c98-4a41-8c5d-003a069e0192", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -327809,7 +327809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0172072-a427-4184-bd3c-92aed5bfbb29", + "id": "450c653f-15f9-4f9a-86be-34e690e25a11", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -327861,7 +327861,7 @@ } }, { - "id": "a053b061-7b21-4746-95e1-a7f4ab5a80e3", + "id": "00c0b87f-b2a8-4bcf-a275-c671f3df3bdb", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -327917,7 +327917,7 @@ }, "response": [ { - "id": "72aebb37-150a-42cc-8a06-bd50d3909aca", + "id": "2107c43b-2728-4a27-b1c4-a843205a5fcc", "name": "The Workflow object", "originalRequest": { "url": { @@ -327976,7 +327976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5db45fa-bf04-471b-9ab5-ae3c154e2884", + "id": "be5167cd-c34e-45dc-9300-a02fee9d490c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -328035,7 +328035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23ef52fd-b238-4d65-a4c5-2e7d8ed8473d", + "id": "04649b7b-3f1e-447e-b746-927918bd8ab1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -328094,7 +328094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c759d50d-ac04-4331-97bb-fbdf730a3841", + "id": "a320b918-a903-4412-96bf-7910fa84587a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -328153,7 +328153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4c20f6f-4912-4adb-a48a-2f6529d4dc27", + "id": "04e2674e-2a82-4a72-857c-cdec6ef2a35c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -328212,7 +328212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bfd76a2-5207-4b96-8f38-575ad6c80248", + "id": "8bc6d5f4-1911-4a8b-8a64-8604506f0f7c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -328277,7 +328277,7 @@ } }, { - "id": "71b65700-a638-4ff8-bf2c-beb6d597b178", + "id": "c523708e-8e0e-4604-9e48-8ed3b86750e8", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -328334,7 +328334,7 @@ }, "response": [ { - "id": "5065be2c-618a-448f-b484-958b91db54dc", + "id": "b2d2482e-7402-4a73-8fbb-4365a84762b9", "name": "Responds with the test input", "originalRequest": { "url": { @@ -328394,7 +328394,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2da6984-8b8a-41e6-a581-6bf5c1f6528e", + "id": "3101dc51-47eb-4a3a-b51c-77d0a82d0656", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -328454,7 +328454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b3536f3-1a74-4770-aaaa-bf5552f04c8a", + "id": "10937723-addd-454c-9c69-4ae01129d60b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -328514,7 +328514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc1bbd4c-aa74-4451-ba8b-466e2b8c941a", + "id": "685ce237-62ea-408d-8398-2a9f329804bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -328574,7 +328574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8702c61b-8d5f-419f-ac65-196d03219ad6", + "id": "5385460d-462f-4773-a76b-c25a4cf2b92b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -328634,7 +328634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03f3c8e5-4cce-4273-9a00-dc57008a5770", + "id": "1d86e391-11a3-4d2d-a3e7-d49348458021", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -328780,7 +328780,7 @@ } ], "info": { - "_postman_id": "578c701f-eb1e-44d4-a438-3d30c9642e1d", + "_postman_id": "d5304c5a-276a-43d0-bae0-eeba900e0ef8", "name": "Identity Security Cloud V2024 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": { diff --git a/postman/collections/sailpoint-api-v3.json b/postman/collections/sailpoint-api-v3.json index 9816693a..c24b1db3 100644 --- a/postman/collections/sailpoint-api-v3.json +++ b/postman/collections/sailpoint-api-v3.json @@ -5,7 +5,7 @@ "description": "Use this API to implement and customize access profile functionality. \nWith this functionality in place, administrators can create access profiles and configure them for use throughout Identity Security Cloud, enabling users to get the access they need quickly and securely.\n\nAccess profiles group entitlements, which represent access rights on sources. \n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nAccess profiles are the most important units of access in Identity Security Cloud. Identity Security Cloud uses access profiles in many features, including the following:\n\n- Provisioning: When you use the Provisioning Service, lifecycle states and roles both grant access to users in the form of access profiles.\n\n- Certifications: You can approve or revoke access profiles in certification campaigns, just like entitlements. \n\n- Access Requests: You can assign access profiles to applications, and when a user requests access to the app associated with an access profile and someone approves the request, access is granted to both the application and its associated access profile.\n\n- Roles: You can group one or more access profiles into a role to quickly assign access items based on an identity's role. \n\nIn Identity Security Cloud, administrators can use the Access drop-down menu and select Access Profiles to view, configure, and delete existing access profiles, as well as create new ones. \nAdministrators can enable and disable an access profile, and they can also make the following configurations: \n\n- Manage Entitlements: Manage the profile's access by adding and removing entitlements. \n\n- Access Requests: Configure access profiles to be requestable and establish an approval process for any requests that the access profile be granted or revoked. \nDo not configure an access profile to be requestable without first establishing a secure access request approval process for the access profile.\n\n- Multiple Account Options: Define the logic Identity Security Cloud uses to provision access to an identity with multiple accounts on the source. \n\nRefer to [Managing Access Profiles](https://documentation.sailpoint.com/saas/help/access/access-profiles.html) for more information about access profiles.\n", "item": [ { - "id": "62fb0550-680f-4e16-859d-4b8d85e89ecf", + "id": "7fff99c2-685b-4417-aa3c-d965eb863be0", "name": "List Access Profiles", "request": { "name": "List Access Profiles", @@ -107,7 +107,7 @@ }, "response": [ { - "id": "9dd1f865-a1d7-442c-a92f-c3c2328e6d72", + "id": "d965c307-95e0-4a52-b7d5-c844ae1df2eb", "name": "List of access profiles.", "originalRequest": { "url": { @@ -223,7 +223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d5fd7ad-f063-47c5-af79-28fd4b1089cb", + "id": "20014750-650f-4d2b-a9a8-cad558556b83", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -339,7 +339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "081956b1-1fdf-458d-a7ff-03beb7b1179c", + "id": "a9bb73fa-3380-44b9-82a2-0e8c3598d09e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -455,7 +455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "766ae06c-f247-4a90-b733-c27cb8bbe869", + "id": "f24fb41e-2fdd-417d-a8fe-bdde6a8cc955", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -571,7 +571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35954008-3dc9-4cf7-92c7-74ee2c013b86", + "id": "0cf64c16-e3f7-4661-a72c-21d846952707", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -687,7 +687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46332b43-bc69-4c79-b3ce-e2177c1af438", + "id": "12db02be-7ad7-4ae6-af0d-64b488f389e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -809,7 +809,7 @@ } }, { - "id": "9e9ba137-7eee-43b7-aa46-19460f90de73", + "id": "af1af7dc-7591-42e3-9ed3-c91d651ccbba", "name": "Create Access Profile", "request": { "name": "Create Access Profile", @@ -851,7 +851,7 @@ }, "response": [ { - "id": "2cf0f416-4a21-46bc-a07f-fd567dd9534e", + "id": "432eb2bc-4546-4807-ae7a-3f7c1d045701", "name": "Access profile created.", "originalRequest": { "url": { @@ -907,7 +907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "071c1784-bed8-4492-bb4b-b6bbe79b607c", + "id": "fdd5ae8b-5d67-4158-b4bd-8beba347b468", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -963,7 +963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424134eb-cd8c-4304-987a-5d1dee30ce1d", + "id": "e9c89310-e013-4c95-a237-7d87ab24f100", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1019,7 +1019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b39f02c0-f601-4ac6-8c8c-02e6e576fd4e", + "id": "7702a835-2650-4b13-bb1b-f6a7aaf78e03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1075,7 +1075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ada9fa4e-8539-444f-bfbd-509af980324a", + "id": "7ee7c078-8179-4e8a-901c-b5ef851a8b05", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1131,7 +1131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aac9dd04-bcc7-4102-ba08-6fc4c18fa28c", + "id": "d1b62434-73cf-4fe1-826b-80d2e6004d85", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1193,7 +1193,7 @@ } }, { - "id": "0e27357d-f21f-4e68-883f-20630fb05840", + "id": "3b17068d-2daa-494e-ae6e-54e495bedf61", "name": "Get an Access Profile", "request": { "name": "Get an Access Profile", @@ -1234,7 +1234,7 @@ }, "response": [ { - "id": "0dc7b030-6bb0-403a-b4ce-79cf31a98d45", + "id": "948814a8-82e5-4dd4-aaf8-d1ffa53e5519", "name": "An AccessProfile", "originalRequest": { "url": { @@ -1278,7 +1278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa0f7f64-be34-475c-9d43-9b93c9b76d31", + "id": "fb260626-d609-4bd1-b353-c1a6a44d073c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -1322,7 +1322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c76c9d4d-785a-4548-bea9-01ecb95852e5", + "id": "30e79d7a-2e2a-4506-9e8b-a200297d4d9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -1366,7 +1366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0dcc2345-7de4-432d-b5bc-3722cba5d672", + "id": "2ef8ad76-8fbe-4fbb-8152-919aaa94e23c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -1410,7 +1410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d00c3e7-3b92-40f8-b09a-ad3e31663277", + "id": "8243dd9f-0b36-43b0-825d-1b6f9341b0d6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -1454,7 +1454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d27fb85-3ad5-4c03-9fba-072ac255889c", + "id": "6241dd25-eadb-4f89-86a1-1483e39aec32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -1504,7 +1504,7 @@ } }, { - "id": "1521ab32-5cd0-4f77-90cf-16f3aad0e04b", + "id": "b0bceee8-880f-46f6-a0f9-f8c3e69c3e48", "name": "Patch a specified Access Profile", "request": { "name": "Patch a specified Access Profile", @@ -1558,7 +1558,7 @@ }, "response": [ { - "id": "6c0e8c8a-0a8c-4e19-baf1-e43f5c02184f", + "id": "eae48bc3-405f-47a4-aa62-b22333847cb0", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1615,7 +1615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5786fd75-6f83-40aa-93e5-2b21b449501f", + "id": "498eb68d-27cd-4079-840e-6ffa5a520f6e", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1672,7 +1672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65c5e337-a0b5-42a7-abdc-fc00c3c2d9c4", + "id": "3bea404b-3e8d-4567-84ff-2238e9afda37", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -1729,7 +1729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "424084f1-81ca-4928-94c9-65778c4d1dc4", + "id": "d0a43547-c285-4f78-9d8d-969a926b6a80", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -1786,7 +1786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fe11f9e-aaa4-4528-b3ec-036a305ce516", + "id": "105ae66f-a3d6-4208-a282-9031bb1cb461", "name": "Replace Source", "originalRequest": { "url": { @@ -1843,7 +1843,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e5c8c95-4b1c-44c0-b937-e4c67547ffce", + "id": "eeb8fd1d-f863-47b4-87b9-ec75360bca57", "name": "Add Entitlements", "originalRequest": { "url": { @@ -1900,7 +1900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "541f03e3-9ec6-4195-9946-37a0db77f817", + "id": "1ca79b43-ef4d-46bf-a035-730fc5c42662", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -1957,7 +1957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08b2030b-8bfc-4ced-9522-b2c34174f74f", + "id": "a064d5a5-2825-480a-99e5-d5fe40ae05fa", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2014,7 +2014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c9c9090-df45-428b-997b-62e9e93c2154", + "id": "6fb03b31-acfa-453e-920e-e60695693f52", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2071,7 +2071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eed3d71c-e0ae-4c32-9b84-7f46a753b45a", + "id": "c0b618c9-d386-4dce-9eb5-7edd14f71a33", "name": "Replace Source", "originalRequest": { "url": { @@ -2128,7 +2128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7effd79-8f0d-457b-a05d-9b717a6be1d0", + "id": "663fa112-8a80-4f80-98be-43fa4e9d4f03", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2185,7 +2185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ee07aab-8783-4e46-9fb4-8772f8f7af15", + "id": "ddb1b7d1-8e53-4fcd-8601-4558aa10d6ed", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -2242,7 +2242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb83ab3c-e968-4691-ae21-37e26b585108", + "id": "0d1cf69d-685e-4725-9b2c-6128382e641e", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2299,7 +2299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9d8c9a7-ac95-4808-92b4-65d09ca12b1c", + "id": "6e1223c4-64d3-4ef5-a78e-49342c318a59", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2356,7 +2356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "509e91d9-0439-46f7-afcd-94534f76f0a1", + "id": "9d30d573-b086-4ec0-8d5c-5a12c840d9c1", "name": "Replace Source", "originalRequest": { "url": { @@ -2413,7 +2413,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba44a246-2fcf-4801-afe1-0a728cbfed5a", + "id": "126fc3bd-98ce-4e47-ab08-2af860f84d9e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -2470,7 +2470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3364ab7-9336-4f1d-b55c-96da315f8747", + "id": "ea9f2b1a-2f02-40dd-98f3-f1a4bf8d3b39", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -2527,7 +2527,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e298af0-5c71-4393-9be9-c6e01d406f5e", + "id": "439ff549-ec7f-403a-828f-f113b5fc0e38", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2584,7 +2584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "237ea1f2-fa8b-49bc-a30c-5516ed9fc58c", + "id": "76afa8cb-6527-41d5-a2ed-f708cbc84b4a", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2641,7 +2641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6c49892-02a3-4357-93b2-bc0db7853c0d", + "id": "18783200-4671-44e1-a89e-a83a345c2c6c", "name": "Replace Source", "originalRequest": { "url": { @@ -2698,7 +2698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c280235e-ff14-47ad-b655-6a61efb08eb7", + "id": "405e2477-8cb7-4dd1-8bd7-49835b68e6c0", "name": "Add Entitlements", "originalRequest": { "url": { @@ -2755,7 +2755,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69427273-7b08-4fb6-9d2c-129538311777", + "id": "6e97ddfe-6792-47d0-92bf-7d276086d612", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -2812,7 +2812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd3ac18c-5afc-4a4a-bb0b-e587609d3db6", + "id": "29a4af11-0cb5-4529-8fb9-3724780ce624", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -2869,7 +2869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40023c9a-7ed8-480e-b89a-d4da2e424f05", + "id": "bb9fe3f9-0472-480f-baac-a517ef471e30", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -2926,7 +2926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f2ff9b7-0feb-4d91-8093-71df288731dd", + "id": "c3b4c2cb-38e3-41cb-ba89-609267fc4a5a", "name": "Replace Source", "originalRequest": { "url": { @@ -2983,7 +2983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cfb5bac0-d030-4ca1-b169-443c7da1b324", + "id": "5ca35a0a-7622-4412-9c2c-e91192774139", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -3040,7 +3040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7aee8fe5-60ac-4aba-8358-9e644b0a6701", + "id": "1001bcb2-4a19-48a3-a89c-2465c337821d", "name": "Insert Entitlement", "originalRequest": { "url": { @@ -3097,7 +3097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6d3a32-ce96-40c9-a8d9-515e24dde804", + "id": "295ed6b1-a914-4545-8cdc-d8f90486dc43", "name": "Replace Entitlements", "originalRequest": { "url": { @@ -3154,7 +3154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ef0ddcd-596f-4e16-be07-7f66fda4a837", + "id": "45ff8d95-a135-4673-9170-93d793d4a8a9", "name": "Remove Entitlement", "originalRequest": { "url": { @@ -3211,7 +3211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2dc9efa-72c1-462c-84a7-5f6ef8dbcad0", + "id": "ee22723a-e03c-4669-a821-dc446366d493", "name": "Replace Source", "originalRequest": { "url": { @@ -3274,7 +3274,7 @@ } }, { - "id": "5b933d26-dcb8-4eb8-81fa-d1ce5ca13f19", + "id": "152d9c91-76f4-426f-821c-0fc6b0cb50a9", "name": "Delete the specified Access Profile", "request": { "name": "Delete the specified Access Profile", @@ -3315,7 +3315,7 @@ }, "response": [ { - "id": "5940ada6-b64b-468d-84e5-a7fbab508d1d", + "id": "5e07e7b7-0c53-4675-b79e-05c09167e8bd", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -3349,7 +3349,7 @@ "_postman_previewlanguage": "text" }, { - "id": "15c016fc-2894-4c6d-9abc-19d9595cf65a", + "id": "df654f7d-d79c-47f9-a413-ad5aa8902886", "name": "Returned when an access profile cannot be deleted as it's being used.", "originalRequest": { "url": { @@ -3393,7 +3393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aadea8a7-7f09-48b2-8324-b5b2b13bb81d", + "id": "5e913afd-183f-4b5b-a40b-acb8d4ca8dad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3437,7 +3437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c88164b9-65e6-48e6-9632-4dabb60d944b", + "id": "d9a77303-9292-48c2-a23f-ac359fa7920e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3481,7 +3481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c57902eb-abdc-4b6c-b269-ca233bf847e2", + "id": "ce962734-9829-460a-b3c8-7db0dd57d541", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3525,7 +3525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acb61b19-4f9f-487e-96c3-d4c305462572", + "id": "0968f180-4061-41ec-9392-de16b087dd8e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -3575,7 +3575,7 @@ } }, { - "id": "da75ef1f-3107-4447-88d4-07c6ff3b10d5", + "id": "507538b5-3dfe-4aa0-b792-988a8ab22572", "name": "Delete Access Profile(s)", "request": { "name": "Delete Access Profile(s)", @@ -3618,7 +3618,7 @@ }, "response": [ { - "id": "5c477ab3-5b47-4548-b3ac-c158e69d515c", + "id": "901856d5-fea9-4eff-a768-6533d66b1d44", "name": "Returned only if **bestEffortOnly** is **false**, and one or more Access Profiles are in use.", "originalRequest": { "url": { @@ -3675,7 +3675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39d786c8-44e1-42c2-9dd0-8cc6bb6d7eb4", + "id": "4bdda6a6-461c-43e8-abc8-48bc32110d32", "name": "Returned if at least one deletion will be performed.", "originalRequest": { "url": { @@ -3732,7 +3732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef03c5da-27d2-4294-b287-eacfba7840fe", + "id": "2b617358-51ad-46fe-bd95-c6e398ea30d3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -3789,7 +3789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a02aab4-03cc-41cd-9e3e-d02ab16d95eb", + "id": "77360fe9-17a8-4793-8e01-113ce1ba2c0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -3846,7 +3846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a79de426-c0e5-45d4-a86e-2a4c0bcd98e0", + "id": "8aa71400-21e7-406e-b0c7-612fbd7c23f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -3903,7 +3903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29142aef-1168-4cdc-bfab-e3fc563568c7", + "id": "5bb47ddd-aed1-4836-a261-dbf5a676e856", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -3960,7 +3960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10c1a3e4-b22c-4c95-aa5e-f9e03b5d32d5", + "id": "3ffc4b61-e77d-4fd7-9983-dec528698f2a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4023,7 +4023,7 @@ } }, { - "id": "4ac6df72-66d5-4b6f-b509-5b126a712f04", + "id": "6e005abd-b9ff-4c5b-8d44-940bfb91695f", "name": "List Access Profile's Entitlements", "request": { "name": "List Access Profile's Entitlements", @@ -4111,7 +4111,7 @@ }, "response": [ { - "id": "9a86bdde-ab61-4f55-958a-50d12aff2629", + "id": "645a4e2a-abdc-4121-b5af-132e7a652f37", "name": "List of entitlements.", "originalRequest": { "url": { @@ -4202,7 +4202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2666fb-266b-4979-8d46-9101da4c46ff", + "id": "02dd5266-f35c-434c-b66a-ab674279e936", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4293,7 +4293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f43eac-1bd2-416f-b236-2c1386c414de", + "id": "0d49f51c-7099-4729-87fb-3c8b82b4cedf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -4384,7 +4384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8634642-10de-4237-b4d7-d5d97a150b1e", + "id": "f13d8366-491c-4fa6-a2cd-e11ffbab24b9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -4475,7 +4475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43ee7782-955e-4b43-b8c7-09837b592f18", + "id": "3f656ee2-d96c-49b5-9bab-cebaddebf93b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -4566,7 +4566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d4d071b-b1e5-475e-8ec5-0ee4bb4541f7", + "id": "939e74f4-4f2a-4421-902d-7091fb58ac73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -4669,7 +4669,7 @@ "description": "Use this API to implement and customize access request approval functionality. \nWith this functionality in place, administrators can delegate qualified users to review users' requests for access or managers' requests to revoke team members' access to applications, entitlements, or roles. \nThis enables more qualified users to review access requests and the others to spend their time on other tasks. \n\nIn Identity Security Cloud, users can request access to applications, entitlements, and roles, and managers can request that team members' access be revoked. \nFor applications and entitlements, administrators can set access profiles to require approval from the access profile owner, the application owner, the source owner, the requesting user's manager, or a governance group for access to be granted or revoked. \nFor roles, administrators can also set roles to allow access requests and require approval from the role owner, the requesting user's manager, or a governance group for access to be granted or revoked. \nIf the administrator designates a governance group as the required approver, any governance group member can approve the requests.\n \nWhen a user submits an access request, Identity Security Cloud sends the first required approver in the queue an email notification, based on the access request configuration's approval and reminder escalation configuration.\n\nIn Approvals in Identity Security Cloud, required approvers can view pending access requests under the Requested tab and approve or deny them, or the approvers can reassign the requests to different reviewers for approval. \nIf the required approver approves the request and is the only reviewer required, Identity Security Cloud grants or revokes access, based on the request. \nIf multiple reviewers are required, Identity Security Cloud sends the request to the next reviewer in the queue, based on the access request configuration's approval reminder and escalation configuration. \nThe required approver can then view any completed access requests under the Reviewed tab. \n\nRefer to [Access Requests](https://documentation.sailpoint.com/saas/help/requests/index.html) for more information about access request approvals.\n", "item": [ { - "id": "862cbb60-ebb7-415d-b5ff-775431a3c646", + "id": "635d97c1-8bbe-4a33-808d-693f0c57b2c6", "name": "Pending Access Request Approvals List", "request": { "name": "Pending Access Request Approvals List", @@ -4754,7 +4754,7 @@ }, "response": [ { - "id": "d888020b-54d3-44a1-a22a-e1eb16300595", + "id": "9df5d6cb-1fa2-40c1-be1e-79064bfccd34", "name": "List of Pending Approvals.", "originalRequest": { "url": { @@ -4853,7 +4853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0ed36d3-966c-4ebc-9b88-fa902be7f5f3", + "id": "3e6fab81-b29d-4cf3-9149-627b5b557b80", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -4952,7 +4952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6947bfff-3afd-43c1-8fe8-702d883d64f8", + "id": "edbf4a7c-8a3d-4c70-b666-bb3195de2647", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5051,7 +5051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6969d81-6ed2-4a74-b486-26f4f06ae453", + "id": "114d2422-3eba-447e-8ea2-01769f3913a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5150,7 +5150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2a3eb1e-250d-441e-8eec-1ed184e3835c", + "id": "6f9d5e1e-8b08-430f-aedc-44dd4ea5b5ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5249,7 +5249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e625e83c-6758-4609-a7f6-14b3b815e220", + "id": "43de9d66-fb39-486b-86f5-cb9745648504", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -5354,7 +5354,7 @@ } }, { - "id": "d6c1bce1-2214-4b43-8397-cbf9df9f165c", + "id": "2eb56b28-c7b3-4ab5-a2c0-14f59fa162ac", "name": "Completed Access Request Approvals List", "request": { "name": "Completed Access Request Approvals List", @@ -5439,7 +5439,7 @@ }, "response": [ { - "id": "beaa590b-91de-4867-a5a3-1b4ac3637dfd", + "id": "a0502361-18d4-4d88-9f7c-c05076ff3b8c", "name": "List of Completed Approvals.", "originalRequest": { "url": { @@ -5538,7 +5538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "484eccdd-99ce-4006-9e96-5af2bf105dee", + "id": "cac1c297-4f2f-4f26-85d1-ec9e8750e06c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -5637,7 +5637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d6ee294-23bc-4225-8715-79198d80b870", + "id": "68f0d313-a51f-4055-8834-348d7389496f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -5736,7 +5736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a207c10-104d-4157-b760-7229fe7aeb49", + "id": "6e5f7ea5-ab0f-417f-b390-88bf9e454ff1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -5835,7 +5835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db336d0c-5d00-46c1-b356-f3220d1f819f", + "id": "f221bd04-46ab-4a1f-b1e8-f7d6e551c446", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -5934,7 +5934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4b3fbfd-4601-4f2d-bad0-b45d8b9aa8b8", + "id": "fa11c6ca-a933-4596-8101-fe3c840ff617", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6039,7 +6039,7 @@ } }, { - "id": "df599199-b7c6-4cb3-b827-1819a824d875", + "id": "f1cbb5cd-c10d-4a76-94d5-e84fe67970d1", "name": "Approve Access Request Approval", "request": { "name": "Approve Access Request Approval", @@ -6094,7 +6094,7 @@ }, "response": [ { - "id": "2ea8b747-01ad-4cbb-8f21-431561830054", + "id": "e53cfbf1-bc89-4ea8-81a8-a655ac7fa4ca", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6152,7 +6152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9d610b7-7db3-4fd9-aab1-17cb09c65bba", + "id": "dc3d1384-e582-4173-8edc-9e0db84f8e3a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6210,7 +6210,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd99c352-0370-4650-986d-118b3eaaae9a", + "id": "dfea507d-ca3a-4011-9885-beb13ffef497", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6268,7 +6268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbb9f964-b664-436b-a226-f258adc4027c", + "id": "b75923ce-de2c-450b-9d54-c4d17cad41f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6326,7 +6326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a80828a4-8bc9-4abd-ac1b-71eb4617c9c2", + "id": "fe914816-b033-46c6-90f6-d2b42ee29b8e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6384,7 +6384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb6e7cac-1c50-4566-9432-c7e58526dd11", + "id": "eb4d87e5-33e5-4e38-8c01-15d7674df9dc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6442,7 +6442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "444daa3d-c675-40dc-9d48-676209227f5f", + "id": "488e612e-adb7-450b-93d9-9663fc3dde62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6506,7 +6506,7 @@ } }, { - "id": "2e451d6c-ce26-4033-9a9b-eab8b9726052", + "id": "bf5fd1c6-6803-4858-bdb0-be95bec45a1b", "name": "Reject Access Request Approval", "request": { "name": "Reject Access Request Approval", @@ -6561,7 +6561,7 @@ }, "response": [ { - "id": "98a417fd-b4c7-4560-a96a-ce59540c37b7", + "id": "e51d9733-7dae-4f0b-b40c-d6aaaed20d94", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -6619,7 +6619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf0e4378-0911-4211-b42b-bae7d9f1811e", + "id": "a14d7e92-77f8-43c6-b345-c596ee0530b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -6677,7 +6677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29c584b7-3cb4-4594-9315-a557f4231578", + "id": "7e61cd08-8272-4ed2-83f9-65d8a2ba95aa", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -6735,7 +6735,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64c1a175-2821-4503-a974-fe2934844d13", + "id": "ff0e7649-480f-4c6a-8eda-80fd8830559c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -6793,7 +6793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e5aec6c-1cd7-4eb7-a9b3-bd20bd776aa8", + "id": "8aaee748-d389-49d0-a969-e182581b519d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -6851,7 +6851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f16399b-4939-41fc-b6a6-96498adb98ee", + "id": "064f9d75-d7e9-4e09-98d5-1519cf4615fc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -6909,7 +6909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d4c4fd-32f8-4a02-8a64-e9b20ab859ca", + "id": "8df72fcb-5c8a-40b2-84fa-ef9a4dc94423", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -6973,7 +6973,7 @@ } }, { - "id": "b686200f-d06e-489a-81b0-ac1d8752aa14", + "id": "21b616c5-e1f0-4773-a383-715b3e04f53d", "name": "Forward Access Request Approval", "request": { "name": "Forward Access Request Approval", @@ -7028,7 +7028,7 @@ }, "response": [ { - "id": "60362978-9c79-4860-a4d2-e0fd5ed6479c", + "id": "bd9595c3-dcdd-46e7-ab3d-0ebcedf009ad", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7086,7 +7086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "117cd50e-6e7a-48d9-af4f-104d11e2c9c9", + "id": "2c38d664-19aa-40c4-b831-a8476940d37e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -7144,7 +7144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4b6487c-2de6-4608-b628-8ed30d5ee820", + "id": "63142a98-ad6a-4ec1-bdd6-46a74b55124d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7202,7 +7202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e46adf3c-b8a4-42e3-83c4-f73b0e8be790", + "id": "aecc5db5-5107-40c4-98ec-0090ef12091a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7260,7 +7260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c3bee43-fbf2-4aff-903c-3231b03b33a9", + "id": "49188964-36af-49e5-865e-114a3fd6c557", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -7318,7 +7318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3ea1661-7092-4854-aef0-29e31030c385", + "id": "c7ac4a2e-78e5-4b5f-8d9e-a52eff0c3dd6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7376,7 +7376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00faf78-23be-4ddd-9520-2ea7c1a0ba20", + "id": "6f5b7a63-1d0d-41b3-9863-5d5e7b50dfca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7440,7 +7440,7 @@ } }, { - "id": "e4b4e75b-45d0-4062-90d0-1431539bd03c", + "id": "c0f3643c-8978-4a6f-a86f-b8f7e0676afc", "name": "Get Access Requests Approvals Number", "request": { "name": "Get Access Requests Approvals Number", @@ -7489,7 +7489,7 @@ }, "response": [ { - "id": "529341fb-4d07-43af-aa4d-6945550b8ad2", + "id": "b6b03ac2-f1f6-4831-8fd5-ce4fc2ae5d2b", "name": "Number of pending, approved, rejected access request approvals.", "originalRequest": { "url": { @@ -7552,7 +7552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d67dff88-fdd1-402c-9af3-cd47bdd74761", + "id": "d3d9640a-ee02-4ec0-8f8a-d5370184fc24", "name": "Client Error - Returned if the query parameter is invalid.", "originalRequest": { "url": { @@ -7615,7 +7615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4061e4ba-2c71-441a-b10b-10a9fac19677", + "id": "c72c7042-f017-4c05-977f-d3dca0499e81", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -7678,7 +7678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76fcc60c-1997-438c-91cb-8b868363eeb6", + "id": "b447f124-9550-4871-83c0-c5d5492a1f54", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -7741,7 +7741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d01f594-865a-4fb3-8fff-f2e5755d6911", + "id": "44fbd50a-8b45-4ddf-a057-caba1cd16124", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -7804,7 +7804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa87ee33-4090-444b-9d24-9dafd96f8c3f", + "id": "9a8748b6-5bb2-498c-9f38-0275681e6bc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -7879,7 +7879,7 @@ "description": "Use this API to implement and customize access request functionality. \nWith this functionality in place, users can request access to applications, entitlements, or roles, and managers can request that team members' access be revoked.\nThis allows users to get access to the tools they need quickly and securely, and it allows managers to take away access to those tools. \n\nIdentity Security Cloud's Access Request service allows end users to request access that requires approval before it can be granted to users and enables qualified users to review those requests and approve or deny them.\n\nIn the Request Center in Identity Security Cloud, users can view available applications, roles, and entitlements and request access to them. \nIf the requested tools requires approval, the requests appear as 'Pending' under the My Requests tab until the required approver approves, rejects, or cancels them. \n\nUsers can use My Requests to track and/or cancel the requests.\n\nIn My Team on the Identity Security Cloud Home, managers can submit requests to revoke their team members' access. \nThey can use the My Requests tab under Request Center to track and/or cancel the requests.\n\nRefer to [Requesting Access](https://documentation.sailpoint.com/saas/user-help/requests/requesting_access.html) for more information about access requests.\n", "item": [ { - "id": "f373290f-5cc6-4d66-a3b4-495d0cd6379f", + "id": "cbabdb05-017b-43ed-b689-f098b60aca20", "name": "Submit Access Request", "request": { "name": "Submit Access Request", @@ -7921,7 +7921,7 @@ }, "response": [ { - "id": "92a39cc2-7fb1-4867-85c7-1aa73c0b99e1", + "id": "49584da2-e7db-4153-a52a-fc401241a115", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -7977,7 +7977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6bb4ac4-80d7-486d-bc9a-cd5b860099cc", + "id": "22ecb46a-d62f-4b6c-8e7b-131bcb66dcfb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8033,7 +8033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45f66185-f5c0-4efc-96bf-4bc64de5a9f7", + "id": "bae56a80-96c2-4f6b-851a-2d5c2dc3e3b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8089,7 +8089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab39ce2-37f1-4864-9f6a-34c188320a40", + "id": "25c54d34-1012-4ee4-806b-76527a1dbffc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8145,7 +8145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c765c20c-5c87-41c1-938e-8807ed601a08", + "id": "fd04a48c-6dd3-4906-9579-224aaf1b2561", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8201,7 +8201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "784706b3-a05a-4da9-b5dd-ebfb5d3433a9", + "id": "f8b5ab53-42a7-43f5-b842-bb888cbdf734", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8263,7 +8263,7 @@ } }, { - "id": "662aa99a-810b-4145-9994-656bdad5acc1", + "id": "d5b7a1b8-d6d1-44fd-a18d-ae252603bd07", "name": "Cancel Access Request", "request": { "name": "Cancel Access Request", @@ -8306,7 +8306,7 @@ }, "response": [ { - "id": "5815fdc9-6d7d-4aca-9115-6b61afb5e735", + "id": "68c63c30-dfb4-4ad8-8a68-5bc4220e7be5", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -8363,7 +8363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e7d82f6-3709-40a7-9ab9-7355e1964c93", + "id": "ae4d4fe9-aee6-4582-b851-f051d5d77ecb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8420,7 +8420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "579264fe-b91c-44b0-8c5e-19b364ff9525", + "id": "a629575f-62cc-42b2-a03f-1fdc30ef5b58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8477,7 +8477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c3b98a4-cb31-4e37-8687-3b926323d631", + "id": "e503f01a-e5dc-409b-8803-1747ede7bff9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8534,7 +8534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed6587a6-661f-4484-80db-7cc47759d463", + "id": "84e3cf8b-e322-4104-84d6-7d19f04cd49c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -8591,7 +8591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ce12ac3-4ad1-40a1-8ab9-4733dc35c321", + "id": "08c0c28f-4f57-41aa-9b24-e33c2f1ca6c5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8648,7 +8648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2cac3d-2866-4a7a-884a-ccbf2b9ae265", + "id": "50e639d3-9ca3-437b-97d1-3b99c1b94cd9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -8711,7 +8711,7 @@ } }, { - "id": "950e9584-0464-4bce-b20f-d049e691b8be", + "id": "9e084dd4-33e8-4742-9265-25ea3cd66856", "name": "Get Access Request Configuration", "request": { "name": "Get Access Request Configuration", @@ -8740,7 +8740,7 @@ }, "response": [ { - "id": "44611192-2297-4971-8242-e6c710fd43ea", + "id": "ca14b3af-adf1-4d5d-a1b1-9152f1e53c20", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -8783,7 +8783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96d3baa7-7636-4d7f-b554-f810249bbd11", + "id": "f4dec72c-f016-474e-b330-1563080d9b14", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -8826,7 +8826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c37fc8fb-b5c8-4f1e-8588-093ebfd31166", + "id": "ae6b145a-708a-401e-8d16-d76bd8b58849", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -8869,7 +8869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dda1da9-272e-4e3b-aa4f-25ca2e1d105c", + "id": "379dbbf7-f096-4f82-8e57-e056d1dd7e19", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -8912,7 +8912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e30efcd-41c7-45ed-8c7e-8f9e6d0d7d66", + "id": "1f4738e6-4897-45ea-a456-595c0f1a56b2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -8955,7 +8955,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e60ab2c-e676-43b9-acb4-a674171980d1", + "id": "3fe60666-0989-413d-b408-17ec3149e233", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9004,7 +9004,7 @@ } }, { - "id": "04324cb5-2bd9-4795-bbde-7178913e14e3", + "id": "6a341136-dd4b-4c19-b11d-7184b7931111", "name": "Update Access Request Configuration", "request": { "name": "Update Access Request Configuration", @@ -9046,7 +9046,7 @@ }, "response": [ { - "id": "4da7785e-d1de-4c52-b8d0-cdc74b8ab199", + "id": "86a28cbb-53f0-497b-bd6b-c5cf088c1419", "name": "Access Request Configuration Details.", "originalRequest": { "url": { @@ -9102,7 +9102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86a18ea4-0120-4c61-a6e5-e2b5f0bb951f", + "id": "e07b89a8-557c-48f0-9540-06a1e4584be7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9158,7 +9158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a6f60d3-ecbe-4c5b-b04d-2167b3107767", + "id": "a151f7c9-827c-4af3-a7a7-13adc028addb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9214,7 +9214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a1f6872-1888-4e51-9ade-c920cb90220d", + "id": "1fcac30e-e742-4a89-89ac-eef04e2037a3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -9270,7 +9270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "011469aa-ed98-49a7-9a9f-606f6c79e6a3", + "id": "898b680a-b0a8-4de3-a13b-172f48bc0bb9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -9326,7 +9326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f34d76e-cc11-46b5-a842-4e101a2511a8", + "id": "3bb1221c-dd69-4154-ad52-bce67949218b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -9388,7 +9388,7 @@ } }, { - "id": "a851ad7e-e1ab-40dd-acbe-3b2c475071b2", + "id": "b5fdeb19-1a11-4d10-b9ec-fb8ad01b807d", "name": "Access Request Status", "request": { "name": "Access Request Status", @@ -9508,7 +9508,7 @@ }, "response": [ { - "id": "c4689ed3-4686-49f8-8f4f-f763cddca9be", + "id": "c38cc7a0-8894-40d1-b561-27d56a2752c1", "name": "List of requested item statuses.", "originalRequest": { "url": { @@ -9642,7 +9642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3bed5fad-8d4a-4dea-8459-a1a1ea9be6a6", + "id": "942cf325-c27d-43db-ad58-d472f9c23950", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -9776,7 +9776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83eac666-198b-4375-bcc4-f5baf6005963", + "id": "2510a4e4-a2c4-42cb-8e69-e3c118fed6ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -9910,7 +9910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "651f084b-c97d-461d-bad6-612377844b1c", + "id": "88292106-2873-41ad-a702-52e08ad795a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10044,7 +10044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dc6c326-2d4e-4605-b24a-01d5c29c4549", + "id": "0f0f8e77-be64-4896-a1b9-e2c92fa7da54", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -10178,7 +10178,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17b8af93-6d2b-4986-a27a-f63d4cd87bb8", + "id": "02d7bb3a-0c92-494c-84ef-64686ec485f6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -10324,7 +10324,7 @@ "description": "Use this API to implement account activity tracking functionality.\nWith this functionality in place, users can track source account activity in Identity Security Cloud, which greatly improves traceability in the system. \n\nAn account activity refers to a log of each action performed on a source account. This is useful for auditing the changes performed on an account throughout its life. \nIn Identity Security Cloud's Search, users can search for account activities and select the activity's row to get an overview of the activity's account action and view its progress, its involved sources, and its most basic metadata, such as the identity requesting the option and the recipient. \n\nAccount activity includes most actions Identity Security Cloud completes on source accounts. Users can search in Identity Security Cloud for the following account action types: \n\n- Access Request: These include any access requests the source account is involved in. \n\n- Account Attribute Updates: These include updates to a single attribute on an account on a source. \n\n- Account State Update: These include locking or unlocking actions on an account on a source. \n\n- Certification: These include actions removing an entitlement from an account on a source as a result of the entitlement's revocation during a certification.\n\n- Cloud Automated `Lifecyclestate`: These include automated lifecycle state changes that result in a source account's correlated identity being assigned to a different lifecycle state. \nIdentity Security Cloud replaces the `Lifecyclestate` variable with the name of the lifecycle state it has moved the account's identity to. \n\n- Identity Attribute Update: These include updates to a source account's correlated identity attributes as the result of a provisioning action. \nWhen you update an identity attribute that also updates an identity's lifecycle state, the cloud automated `Lifecyclestate` event also displays.\nAccount Activity does not include attribute updates that occur as a result of aggregation.\n\n- Identity Refresh: These include correlated identity refreshes that occur for an account on a source whenever the account's correlated identity profile gets a new role or updates. \nThese also include refreshes that occur whenever Identity Security Cloud assigns an application to the account's correlated identity based on the application's being assigned to All Users From Source or Specific Users From Source. \n\n- Lifecycle State Refresh: These include the actions that took place when a lifecycle state changed. This event only occurs after a cloud automated `Lifecyclestate` change or a lifecycle state change. \n\n- Lifecycle State Change: These include the account activities that result from an identity's manual assignment to a null lifecycle state.\n\n- Password Change: These include password changes on sources.\n\nRefer to [Account Activity](https://documentation.sailpoint.com/saas/help/search/index.html#account-activity) for more information about account activities.\n", "item": [ { - "id": "e3c5b4e0-747d-4a95-ab20-32b292640e70", + "id": "becaab02-48ff-464c-8eb2-694ebc1db571", "name": "List Account Activities", "request": { "name": "List Account Activities", @@ -10426,7 +10426,7 @@ }, "response": [ { - "id": "354fea6c-a021-4103-85fe-e19c205176c2", + "id": "1eeb9012-adeb-4d05-a872-a9fe13917d0a", "name": "List of account activities", "originalRequest": { "url": { @@ -10542,7 +10542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7308c705-bf12-4ac4-9c67-eb4244ce30bd", + "id": "00ec1d8e-cfee-4401-bb6b-0e2b44f6d9f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -10658,7 +10658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a45a0166-d4b6-4411-be16-b2f60298c430", + "id": "c73fc6b3-9a28-43e8-96d5-0778dc07b791", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -10774,7 +10774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2622eaec-bd60-4584-99dc-9293bcc62e4a", + "id": "3a7d0d35-def6-452d-92cb-d3b11863e6f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -10890,7 +10890,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fceac8a-23b5-4e6a-8af8-af6ccf8a1947", + "id": "b8fb6e3a-850a-4a49-9682-5abbded09477", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11006,7 +11006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f142d52-7094-4caf-931b-a58b1261deea", + "id": "09e6f50e-823b-4156-9713-2640460d30d3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11128,7 +11128,7 @@ } }, { - "id": "e4c3aa81-865a-4953-91e6-1ef4450fddae", + "id": "a7a93b5e-60b3-4858-8c7d-b6f91f8ea5ce", "name": "Get an Account Activity", "request": { "name": "Get an Account Activity", @@ -11169,7 +11169,7 @@ }, "response": [ { - "id": "e77e7b5e-b79f-4e3f-a53c-790ec68db9cb", + "id": "1d4119c1-c93b-4b85-acea-0350449e5258", "name": "An account activity object", "originalRequest": { "url": { @@ -11213,7 +11213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "382986a2-dd65-481f-ab22-fd7c3eb4ba17", + "id": "0308ec6b-eb9f-48be-986a-8f103637a521", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11257,7 +11257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdb20684-36fe-478e-8d0d-963f1f18e1bc", + "id": "db2fc748-9f38-4b07-bc8f-5e826fa431f3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11301,7 +11301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ab40556-1e3b-4b90-b860-6fd8e9e972cf", + "id": "389cd5f9-6328-4c6c-b73a-cd9e8babb939", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11345,7 +11345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62f8a08a-fb5d-46be-987c-fe9283be7e5a", + "id": "b0e60a6c-93a4-4c10-9144-948b5956e3b5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -11389,7 +11389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88eeb9a2-427f-4d60-ad37-332b5ec9c4aa", + "id": "51824d7a-0e88-43af-977e-ab49217841f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11433,7 +11433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8709152-7ffa-4f58-ac82-9b63ec4e24d3", + "id": "8c841726-a9ba-49cb-b5f3-d6439b477b23", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -11489,7 +11489,7 @@ "description": "Use this API to implement account usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' source accounts are being used.\nThis allows organizations to get the information they need to start optimizing and securing source account usage.\n", "item": [ { - "id": "d0c1de03-9e32-4301-8609-efbf7f10c488", + "id": "f3ef121c-651f-420b-9218-0a1db3b0d1a5", "name": "Returns account usage insights", "request": { "name": "Returns account usage insights", @@ -11568,7 +11568,7 @@ }, "response": [ { - "id": "fb784655-a89a-4b68-903b-e5881f063e24", + "id": "b084ada0-4d6d-4276-8cdb-5934deb549b0", "name": "Summary of account usage insights for past 12 months.", "originalRequest": { "url": { @@ -11650,7 +11650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e0d130d-dbb1-4548-aec6-9d9614f255ab", + "id": "659b328d-ff7f-448d-8a59-46c40a31c4cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -11732,7 +11732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "331052b8-9625-462f-8d82-b69737a6f5ae", + "id": "24a53992-ddc6-45dd-8d58-4dbdc5ee2f51", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -11814,7 +11814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d37c0f61-3824-42b7-a09d-7c8aba5e5af4", + "id": "1dc6f4c7-7b7c-45af-b12e-a7fe8bd2ca1e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -11896,7 +11896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d1fe308-bd27-450f-a51f-84f49f46c28e", + "id": "1622e59f-2b48-49fa-b98e-2b95ce708c28", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -11978,7 +11978,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afd5a1f2-11ce-49e5-a2df-3b18228efa43", + "id": "1470b896-6e5c-4f05-a61b-746baa733095", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12072,7 +12072,7 @@ "description": "Use this API to implement and customize account functionality.\nWith this functionality in place, administrators can manage users' access across sources in Identity Security Cloud. \n\nIn Identity Security Cloud, an account refers to a user's account on a supported source.\nThis typically includes a unique identifier for the user, a unique password, a set of permissions associated with the source and a set of attributes. Identity Security Cloud loads accounts through the creation of sources in Identity Security Cloud.\n\nAdministrators can correlate users' identities with the users' accounts on the different sources they use. \nThis allows Identity Security Cloud to govern the access of identities and all their correlated accounts securely and cohesively. \n\nTo view the accounts on a source and their correlated identities, administrators can use the Connections drop-down menu, select Sources, select the relevant source, and select its Account tab. \n\nTo view and edit source account statuses for an identity in Identity Security Cloud, administrators can use the Identities drop-down menu, select Identity List, select the relevant identity, and select its Accounts tab. \nAdministrators can toggle an account's Actions to aggregate the account, enable/disable it, unlock it, or remove it from the identity. \n\nAccounts can have the following statuses: \n\n- Enabled: The account is enabled. The user can access it.\n\n- Disabled: The account is disabled, and the user cannot access it, but the identity is not disabled in Identity Security Cloud. This can occur when an administrator disables the account or when the user's lifecycle state changes. \n\n- Locked: The account is locked. This may occur when someone has entered an incorrect password for the account too many times.\n\n- Pending: The account is currently updating. This status typically lasts seconds. \n\nAdministrators can select the source account to view its attributes, entitlements, and the last time the account's password was changed.\n\nRefer to [Managing User Accounts](https://documentation.sailpoint.com/saas/help/common/users/user_access.html#managing-user-accounts) for more information about accounts.\n", "item": [ { - "id": "5faf5e4e-42fa-422d-ac27-e533ae2a84bc", + "id": "61aa2de3-119f-4175-97dc-92e9ad04a762", "name": "Accounts List", "request": { "name": "Accounts List", @@ -12147,7 +12147,7 @@ }, "response": [ { - "id": "0ee9f799-9984-4cbc-9167-37dd3b916469", + "id": "20a95a84-a512-4598-8971-277e16f462b0", "name": "List of account objects", "originalRequest": { "url": { @@ -12236,7 +12236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2935b100-4f96-4132-b94e-535203f2594f", + "id": "460bad43-5e26-43f7-8e4b-009da1a79ca2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12325,7 +12325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3faad205-1961-4696-9321-08c5e2803391", + "id": "a442378d-b76d-469c-9803-82f8ee5f1c00", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12414,7 +12414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9571f68-f8a1-429e-b43d-8e6ab2ebd1ed", + "id": "fbb0cd70-ea02-4a47-b033-95a1af900f81", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12503,7 +12503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37030f43-15c9-4001-ad38-47b172cea063", + "id": "d833d553-c171-45d5-9a0b-5080959846a9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -12592,7 +12592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f6a4349-6475-4b17-a504-ce98ce669d91", + "id": "95d26082-bd39-4982-98b4-6c7784ff1dff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -12687,7 +12687,7 @@ } }, { - "id": "932672d3-eca8-4262-a4ac-c5ef52a5ed9c", + "id": "0ff20778-f963-4f81-aef1-95464b225cce", "name": "Create Account", "request": { "name": "Create Account", @@ -12729,7 +12729,7 @@ }, "response": [ { - "id": "67fcd8f3-9bf7-488e-8011-93ff6bba5874", + "id": "37f13279-50b5-4ef4-95bf-e1339df869bc", "name": "Async task details", "originalRequest": { "url": { @@ -12785,7 +12785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d28be4b-8ca7-4773-aaee-1d2fee76601b", + "id": "5178bcc4-c8ac-4316-924f-bc3e43260f31", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -12841,7 +12841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "876c635c-e5ac-4043-9552-f142591aa3a6", + "id": "aae1f363-7f4b-40a6-948f-453150f7f93c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -12897,7 +12897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e63ef86f-d8f1-49a0-b2bb-cf326e8e4fd0", + "id": "80fa15f7-0245-4dd2-a8f0-56d0ec1e3b55", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -12953,7 +12953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67fb4d3c-85a4-4892-a592-fe41b3af1d80", + "id": "1816bd92-e27e-4473-a4a2-4434ad78e46e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13009,7 +13009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "773de7b5-4690-42b2-8e1a-eda65403defc", + "id": "73899e92-df5e-4699-9b63-e268d3cd675e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13071,7 +13071,7 @@ } }, { - "id": "18453a06-9d3f-4944-83f3-d518e1ea9db4", + "id": "bfd32b58-1d01-4346-a161-d0db051b1d03", "name": "Account Details", "request": { "name": "Account Details", @@ -13112,7 +13112,7 @@ }, "response": [ { - "id": "b9453c2c-cefd-4856-84af-2e59a7584d5c", + "id": "8936ccc9-b642-4c17-9313-f35bbe4b603c", "name": "Account object.", "originalRequest": { "url": { @@ -13156,7 +13156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66c33411-470d-4128-b933-f6b5ceb66431", + "id": "075643ae-c1d2-47e3-9973-8deb09d72631", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -13200,7 +13200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c6b29e4-60ad-4ee9-8f12-842b9edfd46d", + "id": "212c78d8-30d5-4e3a-b278-388017c821d4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -13244,7 +13244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fbbc925-4799-40b3-a8ff-33ffa94c61fa", + "id": "98811cd3-d4b0-4e36-a354-68bde4695b2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -13288,7 +13288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ea05d63-b588-4f9a-857f-3367e80f120d", + "id": "caca339d-c7bf-43fc-828b-abe9082b6f1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -13332,7 +13332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e92bbc6b-c79c-4e26-9ab3-adc0d5c9c392", + "id": "4602ac90-85ad-4b46-8b2d-dd7ba0bade9f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -13376,7 +13376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1850b06a-f1f0-4cc7-889f-62f7247f4a9c", + "id": "e3e8b29b-bf6f-4b44-b4ad-e1e9246e7bd8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -13426,7 +13426,7 @@ } }, { - "id": "fa323ece-4177-495a-97fb-135aad277991", + "id": "792b86a3-caa5-4f15-9dd6-ff57f0799d6a", "name": "Update Account", "request": { "name": "Update Account", @@ -13480,7 +13480,7 @@ }, "response": [ { - "id": "23ebf7b2-540c-4940-bcd1-1df85fd79a14", + "id": "f6232d05-b1af-4d90-bda0-fe00be1cda9d", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -13537,7 +13537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ac3331-17d0-4212-9a32-b82fbac65148", + "id": "65b28a8c-5a17-4281-a44b-4811d011408a", "name": "Reassign account", "originalRequest": { "url": { @@ -13594,7 +13594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a2b8e41-c67b-4e3a-935c-f7c79dea8401", + "id": "d138e5aa-fae2-4a66-9ab1-c69b395e33cc", "name": "Add account attribute", "originalRequest": { "url": { @@ -13651,7 +13651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "789a8c32-a97c-475c-aa34-56b025a89788", + "id": "dd877dce-fbcc-434f-bf6a-aacf764d2f67", "name": "Replace account attribute", "originalRequest": { "url": { @@ -13708,7 +13708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b26aded4-9fe6-49b9-9ba0-36c3f2041056", + "id": "60d0bcf7-e4ac-423e-b5a3-f9a676ab3d81", "name": "Remove account attribute", "originalRequest": { "url": { @@ -13765,7 +13765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "588a967a-3197-4899-ab33-bcc101aea038", + "id": "7e8bd1ba-aa3c-4fd4-9885-402da5135830", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -13822,7 +13822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a2eb9de-6cfe-4e75-bc59-349ab8656b7e", + "id": "e82a60be-d885-4999-8afd-f2ef07f5bdbf", "name": "Reassign account", "originalRequest": { "url": { @@ -13879,7 +13879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea0bfb50-3fe0-4fca-bdbd-3a85d6a63a7f", + "id": "02d57ba1-28df-4c49-b753-642114f4d677", "name": "Add account attribute", "originalRequest": { "url": { @@ -13936,7 +13936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15300412-9c43-40a2-85f6-9c9e1d8b6577", + "id": "5277822d-e67d-4129-94f9-146e4de83104", "name": "Replace account attribute", "originalRequest": { "url": { @@ -13993,7 +13993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f5bf7a4-53c4-472d-81f5-e9f977cfe1d7", + "id": "a1bd62b0-7ecd-4d58-85ff-d40ec2f49edf", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14050,7 +14050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb0d56ac-37dd-408d-b5c1-c7ec84d9dd74", + "id": "9319045a-036f-4c16-8048-3102b54c92d7", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -14107,7 +14107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99dde472-f97d-4281-87e2-26b600e3dc71", + "id": "4bc56b95-62e5-4fd0-979b-2be07ee7be4b", "name": "Reassign account", "originalRequest": { "url": { @@ -14164,7 +14164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efae6c5a-d9bb-418a-82b1-9daf25697357", + "id": "9b206a46-62bc-4ee7-b8a4-6fc65cc9e54c", "name": "Add account attribute", "originalRequest": { "url": { @@ -14221,7 +14221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ce51da2-dc99-47b7-8b6f-9672ef8a723f", + "id": "6344208f-7c79-4740-bf08-4f7fa75fb4a4", "name": "Replace account attribute", "originalRequest": { "url": { @@ -14278,7 +14278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "917d14d7-94a1-402b-acb7-4dfeffe83351", + "id": "aeb260ca-01e2-4050-9cd4-7fcef28fcfc7", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14335,7 +14335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bae48fae-2651-4245-b9e6-d9905caf9a3d", + "id": "88817757-d2eb-49fc-bd49-6f48ed8b8189", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -14392,7 +14392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f47c8e67-47c6-48ea-afea-6647a7db9701", + "id": "f94f708c-ec76-44ac-8c0d-657c1fcb8782", "name": "Reassign account", "originalRequest": { "url": { @@ -14449,7 +14449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a817e4d-0aad-4f58-8003-c9d575c95b27", + "id": "db053655-b4f6-4523-affd-a36092f739a1", "name": "Add account attribute", "originalRequest": { "url": { @@ -14506,7 +14506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba8d3c97-3ea4-449b-bb54-394cb4c6e117", + "id": "22f69c42-8318-4bc2-aa0f-d859068fba53", "name": "Replace account attribute", "originalRequest": { "url": { @@ -14563,7 +14563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ceac4df0-3e0d-4b32-a992-1acac141a883", + "id": "b876c9ed-09f5-4e92-a643-0cb24540fc07", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14620,7 +14620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4303bd-d280-43c5-80a4-de9a778e61d8", + "id": "86c33369-93a8-42fa-a7ad-b306d7c191e9", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -14677,7 +14677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "596c094a-d259-4288-b612-f7233a24c4eb", + "id": "8252403f-47cf-4e23-aec8-452dde6700a3", "name": "Reassign account", "originalRequest": { "url": { @@ -14734,7 +14734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d353c001-5d35-40a2-a483-24bb207f9b99", + "id": "d39c8b34-ad2c-4727-81c6-78e9c369442d", "name": "Add account attribute", "originalRequest": { "url": { @@ -14791,7 +14791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53271cc-c2ab-41b4-80ae-02f8413566bb", + "id": "34f75336-4fcd-466b-a9f1-21828df1845a", "name": "Replace account attribute", "originalRequest": { "url": { @@ -14848,7 +14848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "291b8be3-8291-4147-b629-054a68ff3214", + "id": "5d1c732e-b986-4602-84a6-d118154ca729", "name": "Remove account attribute", "originalRequest": { "url": { @@ -14905,7 +14905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "321f5610-411c-44ce-8975-5338775881fe", + "id": "b3106e00-1077-4e9f-a285-e8842e805866", "name": "Uncorrelate account", "originalRequest": { "url": { @@ -14962,7 +14962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc0b753-3247-4f7a-a522-6197f9e347be", + "id": "44f57b01-405a-4f1d-9564-27b19893638e", "name": "Reassign account", "originalRequest": { "url": { @@ -15019,7 +15019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b8d1159-41dc-4d27-91c4-f9f7c177e5ca", + "id": "579d57ee-0d9e-4f59-9143-0f1dca970993", "name": "Add account attribute", "originalRequest": { "url": { @@ -15076,7 +15076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c697ce39-8886-4de5-a970-7eb7122a7dc1", + "id": "d8167a5b-607b-4b15-a42a-96bd1a79b1fe", "name": "Replace account attribute", "originalRequest": { "url": { @@ -15133,7 +15133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b08b3e0-7cc9-4611-b65e-5915308d4379", + "id": "95b9c661-1445-4955-88b6-bd617e5c3a9f", "name": "Remove account attribute", "originalRequest": { "url": { @@ -15190,7 +15190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f633af9-ec07-41a3-9281-d6603d2553ad", + "id": "c90f3b2e-004e-429c-9a8a-6904a739ba59", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -15247,7 +15247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5ed791a-5af5-48a8-ac55-3616eb25118d", + "id": "993f096a-53ca-4bf5-b8c7-b43315696a53", "name": "Reassign account", "originalRequest": { "url": { @@ -15304,7 +15304,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fd0fb69-227a-4583-9890-05fdfcf98060", + "id": "5fbba36f-7326-4b07-af0c-6c3489b9fea9", "name": "Add account attribute", "originalRequest": { "url": { @@ -15361,7 +15361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99e9fadf-0715-470a-be82-f16efb0bec9a", + "id": "128becc6-e0ff-4689-9408-9f4cf52ebe0f", "name": "Replace account attribute", "originalRequest": { "url": { @@ -15418,7 +15418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a82cd024-966f-4b78-9074-caf538ea4b1c", + "id": "4d9299af-d755-42d3-a234-60e4a0b0538d", "name": "Remove account attribute", "originalRequest": { "url": { @@ -15481,7 +15481,7 @@ } }, { - "id": "d938f104-56b0-4f60-a44c-8c67152fd191", + "id": "b2c8388b-cb58-4b67-b038-9c08fd53eb4a", "name": "Update Account", "request": { "name": "Update Account", @@ -15535,7 +15535,7 @@ }, "response": [ { - "id": "b2e09dba-a055-45c6-bfd3-5e839ff2de97", + "id": "71879ca4-0d11-4650-87ef-3730c8637b8b", "name": "Async task details.", "originalRequest": { "url": { @@ -15592,7 +15592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b79bbe5d-4de4-48df-96f4-2dc1ac435761", + "id": "2c351b31-e79d-4541-bc6a-2bbe00234e26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -15649,7 +15649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "477b958b-b1a0-4e36-85b9-9f7e78a951db", + "id": "1bad1d6b-80d1-49c7-af5a-5ad9c0231ead", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -15706,7 +15706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8536b9ea-6caa-4d98-b3f7-8ffae73a00ed", + "id": "36307643-1072-47a2-96b6-2f0b098e6152", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -15763,7 +15763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1be927cb-5442-438f-9b5a-449401e373e1", + "id": "b04e9351-34cb-4e8c-92d1-385c5e10eca7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -15820,7 +15820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82678722-0386-454d-b13f-e22c7929c2f1", + "id": "f8880286-9d11-48d5-96e1-ce6fe8994df7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -15877,7 +15877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6465e022-d6ae-44b8-b028-62eeb6a69b3b", + "id": "5424a628-27c3-40b8-82df-93f85246fc33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -15940,7 +15940,7 @@ } }, { - "id": "78b95750-9bb6-408d-8a33-af34f2605461", + "id": "08af3d34-5532-49a7-a924-05b9fc50fd2e", "name": "Delete Account", "request": { "name": "Delete Account", @@ -15981,7 +15981,7 @@ }, "response": [ { - "id": "1b47ad28-a389-46db-a3a0-799d011b11b7", + "id": "d7e0fc1e-0192-4e65-b48a-c04ae9a7a205", "name": "Async task details.", "originalRequest": { "url": { @@ -16025,7 +16025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55255bc6-bd8b-4e20-9879-1ef8c7537be7", + "id": "1d5354ca-9c6b-4f98-936a-0fae6784d140", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16069,7 +16069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cce2457-c2a2-4b8f-9115-d1e392da32ba", + "id": "b41551ca-e285-4239-ba58-a1674a1ec434", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16113,7 +16113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e6c535f-e42f-481f-8eee-06a9674c13e9", + "id": "ea99ea06-49ed-43b8-9749-369b3c08fb49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16157,7 +16157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d48d0d3-9aa1-4014-b491-d1d8989f4098", + "id": "3153e030-5014-4eb6-9073-544d2192a337", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16201,7 +16201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b86dd5f-34fa-46dc-9151-ac3e12fa1507", + "id": "4444ba56-c043-437b-a722-3acd03422bfd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16245,7 +16245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfa0bc25-5c5a-4221-b219-34911c74fc12", + "id": "f5f6b742-4e3f-4a31-b12c-1d3bf6e3106a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16295,7 +16295,7 @@ } }, { - "id": "f78f2424-1270-4d3b-bb6d-3ae1e7f58f50", + "id": "75c82318-f59b-426d-915b-3e2e8e21880d", "name": "Account Entitlements", "request": { "name": "Account Entitlements", @@ -16365,7 +16365,7 @@ }, "response": [ { - "id": "de3b5607-721a-4397-8782-356acf198644", + "id": "fb18e0a8-0f2a-4ed9-9edb-327f2bdbcdc6", "name": "An array of account entitlements", "originalRequest": { "url": { @@ -16438,7 +16438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc86d371-5523-4af1-868e-fd23f1af201d", + "id": "f9f193ff-13b8-4ef8-947b-dab51ec2a0fe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -16511,7 +16511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eebc99cd-0c80-41d9-9d6f-368f98eb1e0d", + "id": "b7811712-c76d-483a-8435-cb8d24acf7fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -16584,7 +16584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e30f2e05-1738-4f09-8af3-c75273b1cfb7", + "id": "85e99e27-f6ce-4f48-b38a-20594b307c64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -16657,7 +16657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ace91d3-453b-465d-a8bc-75b1e8f10e21", + "id": "57029a20-7743-4235-b5fb-ab52728bbf7b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -16730,7 +16730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "046e9259-49e8-4287-8aec-48c0b7546239", + "id": "319f3ed5-1237-4dff-84c3-ec3db5a3a314", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -16803,7 +16803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "895d3309-7b2f-42ad-ac4c-74fe28c24db4", + "id": "94e8d47f-42bf-4a9f-a1a6-0efc6ef7e7cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -16882,7 +16882,7 @@ } }, { - "id": "7b6e6dac-0346-4eaf-bb71-ce1bca07d461", + "id": "f8555dbb-83c2-49cc-9dac-6552197deac2", "name": "Reload Account", "request": { "name": "Reload Account", @@ -16924,7 +16924,7 @@ }, "response": [ { - "id": "9dc62c73-5ecf-4a54-86b7-8a8397c5819a", + "id": "ab65b121-4f5e-49fa-adde-d6b1759846e5", "name": "Async task details", "originalRequest": { "url": { @@ -16969,7 +16969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a961c34a-38fa-4c38-ba9c-a07f91039063", + "id": "7645629d-6a13-4cae-bb6a-59fb7a0dd49c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17014,7 +17014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da6c1364-6de9-4fe9-b2e1-10bb9d4c55ed", + "id": "c00a3a51-4f28-444d-ab23-ec9850045850", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17059,7 +17059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a90f127c-e01f-4313-8287-c2d502b885af", + "id": "a8bb0238-f80f-41c2-9271-da8b15c25f94", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17104,7 +17104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8a9f007-d048-4fc8-906b-2a9811154c98", + "id": "5e98c43e-dddc-4375-ad31-e08131a7fe24", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17149,7 +17149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9282fc2-9b0d-4cbf-80c7-66a0251d7822", + "id": "5ad84c35-c2e1-4857-a35e-6e1497c798f6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17194,7 +17194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95ac4f7a-60f8-4c47-a904-e8758b640879", + "id": "b14a3255-b66f-4e0b-aedf-904c95ca000a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17245,7 +17245,7 @@ } }, { - "id": "91580b74-67d5-437b-aac7-15a102fabcae", + "id": "5b146a7c-b363-4e37-a828-8481bc8306cc", "name": "Enable Account", "request": { "name": "Enable Account", @@ -17300,7 +17300,7 @@ }, "response": [ { - "id": "eb9ecb6e-4213-4e41-8c93-7b2e95ccd4c4", + "id": "893674f5-db8c-404b-9af6-a6fb5b628cfb", "name": "Async task details", "originalRequest": { "url": { @@ -17358,7 +17358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9639882-c952-4cf5-887f-e73f31cfa4bc", + "id": "11025575-daed-48d1-93e9-c79cc8bdc9ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17416,7 +17416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c83791ec-6376-4be8-a1d3-98a156fffa38", + "id": "178d8648-6110-44f5-8c69-d3cc18026786", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17474,7 +17474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "981131db-0308-4e2b-aa18-ebad62ff5bbd", + "id": "19fd57ab-440f-44e9-a61a-1ef1c68944ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17532,7 +17532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce9515f-a879-4341-be12-498612af5559", + "id": "db0c01e4-47a0-472f-a855-f785012a1320", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -17590,7 +17590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4989a956-f9b8-429a-8694-74f28e38ef8b", + "id": "ee86b83d-6ebe-45b7-9f0f-692fb24d24f2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -17648,7 +17648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f4d7a0-df6d-400e-938a-39557c13384d", + "id": "072de7a8-dc0b-4f52-923a-5fe8685fc9d6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -17712,7 +17712,7 @@ } }, { - "id": "555b0378-e7fc-425f-a621-502b89fa7bb8", + "id": "9d6fae47-8d9d-49c4-829f-e957a076e4af", "name": "Disable Account", "request": { "name": "Disable Account", @@ -17767,7 +17767,7 @@ }, "response": [ { - "id": "1891e284-484a-4b15-9975-946797a78951", + "id": "c5439430-9744-4073-8c6a-266208067833", "name": "Async task details", "originalRequest": { "url": { @@ -17825,7 +17825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d998fc-d547-4dab-8f8b-23e541739ad4", + "id": "fa9a709a-dba3-4696-83e8-445d0f8564d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -17883,7 +17883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e033ade-0aa4-4a20-9b7e-6efe8b9a8f86", + "id": "e66206fa-c74c-4cec-8e0c-f1c78e473f61", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -17941,7 +17941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5893312f-77bd-4d90-b3e4-b6c772ada9c2", + "id": "a3042af5-138d-44ac-92bb-e072d3e76e87", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -17999,7 +17999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "359116bf-e9c0-4d8f-9212-15d487782b37", + "id": "e70ac5a8-2c81-40ea-b642-91724471bd98", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18057,7 +18057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b998db99-5106-4c67-841d-daa5bd154769", + "id": "bed41122-7745-4b50-84bc-c7e4642e056e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18115,7 +18115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85c60255-3894-4e0d-be64-67a1e0ea78bb", + "id": "79e3756e-68bb-44f9-8c6a-4572fe7e2a3e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18179,7 +18179,7 @@ } }, { - "id": "8f1ae252-494e-4fa8-b3f8-ab2de86f3dd2", + "id": "dc058f3d-acf1-430b-83a4-1a90d78816cb", "name": "Unlock Account", "request": { "name": "Unlock Account", @@ -18234,7 +18234,7 @@ }, "response": [ { - "id": "c4eec54d-4df9-47c3-bc9f-1ce15a66a0e0", + "id": "c0a40fe9-40c2-4725-8bed-d4a7aef90c9a", "name": "Async task details", "originalRequest": { "url": { @@ -18292,7 +18292,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3028c91e-7955-4fec-8608-6eac0fd9d749", + "id": "ec452bb7-03e2-458b-8714-5d388bdcfe13", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18350,7 +18350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4afac5a0-9fd1-4d94-866e-f58882edb70f", + "id": "f8fd6191-81b1-460a-b001-f928b6ffb565", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18408,7 +18408,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3076a86-8e3b-4b71-954a-6941f37715ef", + "id": "ed315d31-2923-42f9-91fe-2d734579fdbc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18466,7 +18466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bae3e640-4e31-4e94-8e7c-fe4a2e465503", + "id": "c6d86a0d-84fd-4f91-8586-eeade57b40da", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -18524,7 +18524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8cf92b2-178a-4819-844f-425f57d45de6", + "id": "903deb9a-c057-4d4d-9673-4a30c0f37e2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18582,7 +18582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1da4e9f8-2f7a-4db8-bba2-7dd934f99ee2", + "id": "f5bd3ed9-b498-445a-8bea-75db467e5e6c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18652,7 +18652,7 @@ "description": "Use this API to discover applications within your Okta connector and receive connector recommendations by manually uploading application names.\n", "item": [ { - "id": "010c84ca-f6e0-4c96-8250-66d78a2d7be0", + "id": "9bca6c42-02f9-4cbe-8f11-f1a1b0eed987", "name": "Download CSV Template for Discovery", "request": { "name": "Download CSV Template for Discovery", @@ -18681,7 +18681,7 @@ }, "response": [ { - "id": "74bf048d-d900-426b-aad5-8ccf9972b70a", + "id": "301b7155-0001-4133-967e-2c5cb6dd6c07", "name": "A CSV file download was successful.", "originalRequest": { "url": { @@ -18724,7 +18724,7 @@ "_postman_previewlanguage": "text" }, { - "id": "92869ea5-f417-49c2-83fc-4076e634f180", + "id": "66f33ed1-37d7-4a30-88fc-8ffd3e17de46", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -18767,7 +18767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe8b2a38-2de6-41d3-be53-ff9f4cc264a2", + "id": "47e78e34-fa05-40c5-8540-beb768dea57b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -18810,7 +18810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "426477bd-9a57-46d7-b69d-97a6e23c182d", + "id": "c92c7bb9-2306-40ac-be0b-a908bd6bbc63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -18853,7 +18853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c85147a8-54f0-46ad-864b-f3108ce05b6b", + "id": "b16859a8-b97c-40e7-8667-acf6a4af1366", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -18896,7 +18896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "664009c1-36ca-41db-bce4-ef065bdb838c", + "id": "af60c7e7-edb5-4918-b543-6149253b433c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -18945,7 +18945,7 @@ } }, { - "id": "d8f2be5e-eb0e-4f26-ae15-d362eeda70a9", + "id": "dceb46e4-552d-4ce7-a1d3-562bf08b05e5", "name": "Upload CSV to Discover Applications", "request": { "name": "Upload CSV to Discover Applications", @@ -18990,7 +18990,7 @@ }, "response": [ { - "id": "47f91853-88ba-4046-96ba-b4ea2121e804", + "id": "bdd1e277-9593-4c08-b6a6-7e75b8638724", "name": "The CSV has been successfully processed.", "originalRequest": { "url": { @@ -19039,7 +19039,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4e9de90f-7759-427d-abb8-f52061ac83d4", + "id": "e727f9f3-7cb6-43dd-b540-ed0a222498f2", "name": "Bad request - There was an error with the CSV format or validation failed (e.g., `application_name` missing). Error message should be provided in response.\n", "originalRequest": { "url": { @@ -19098,7 +19098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e226d8e8-14a3-42d0-872e-9d9ca2750212", + "id": "e8db12ea-445c-4b5e-a6a1-79d6d73edbc7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19157,7 +19157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d3e1a05-8aaf-4e2d-822d-de65c8bf460f", + "id": "5e8e974f-09ab-4443-89f5-29b6e34c7d6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19216,7 +19216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8deb9b8-df02-48a8-8539-62bb58ba447e", + "id": "a63a93bb-7049-4985-a373-c6be103081f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19275,7 +19275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d77d673a-5dc3-4604-9193-592e61887611", + "id": "1e91ffd2-b962-455f-a6da-4fe2bbbd0057", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -19340,7 +19340,7 @@ } }, { - "id": "14e8fe81-f48f-4735-a8b3-b56640ec2483", + "id": "65e05834-4db7-4f9b-9b4d-36134ddb8728", "name": "Get Discovered Applications for Tenant", "request": { "name": "Get Discovered Applications for Tenant", @@ -19415,7 +19415,7 @@ }, "response": [ { - "id": "88b1a297-9a9f-4438-b932-b2d73b4c3f16", + "id": "55ce6bd5-8a4f-4733-bec9-fabe65db7337", "name": "Slim Discovered Application", "originalRequest": { "url": { @@ -19504,7 +19504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92d8e9ee-60e1-4fa8-8a70-c2ad7599aa57", + "id": "0f3f75d2-55ba-4b37-b41e-c32c52a685b3", "name": "Discovered Application", "originalRequest": { "url": { @@ -19593,7 +19593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a9a7aae-0f35-42bb-93c7-3eb26c422260", + "id": "ce6b3344-4468-4901-b816-8e593134d02a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -19682,7 +19682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77ea8869-e11e-4094-8423-e77c56391a39", + "id": "76eeb935-704c-466f-8112-135083b81d9d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -19771,7 +19771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88be9b0f-b520-4a11-8f31-bb97c4d8429f", + "id": "cdb3ad78-2fd8-4a61-95eb-fece437fd36a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -19860,7 +19860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1492e93d-6737-4d66-8da4-f2d06b5e533c", + "id": "d6402f76-bf1c-4e03-8390-b5110d9ebe29", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -19949,7 +19949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4dc202a-4203-48a9-b49c-5a8d610be0c2", + "id": "386bcaa3-2361-47cb-b701-2c0b8beabca3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20050,7 +20050,7 @@ "description": "Use this API to implement user authentication system functionality. \nWith this functionality in place, users can get a user's authentication system details, including their capabilities, and modify those capabilities. \nThe user's capabilities refer to their access to different systems, or authorization, within the tenant, like access to certifications (CERT_ADMIN) or reports (REPORT_ADMIN). \nThese capabilities also determine a user's access to the different APIs. \nThis API provides users with a way to determine a user's access and make quick and easy changes to that access.\n", "item": [ { - "id": "c15b9883-e9af-4107-af11-ec069d0cddf6", + "id": "69db79b3-8291-4ca1-b26f-76e4609dfcd0", "name": "Auth User Details", "request": { "name": "Auth User Details", @@ -20091,7 +20091,7 @@ }, "response": [ { - "id": "eff09e72-e3d6-4b9b-972b-f39389b2f080", + "id": "82d5d881-76ca-4766-af6e-567a2eabb55a", "name": "The specified user's authentication system details.", "originalRequest": { "url": { @@ -20135,7 +20135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af86113e-5ec0-447d-b9da-45bba593b325", + "id": "311eec3f-c8a7-467b-9760-c40c88598a5b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20179,7 +20179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb79595-6122-4323-9c6b-dc166c3526d2", + "id": "59144c8f-1e20-43a1-bb52-eb9ec35dfe5d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20223,7 +20223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "641fdac9-8a06-467e-99ca-0abefec8eb48", + "id": "579b102b-fe7f-49e1-81d9-ad79644aa59f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20267,7 +20267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a85394a-bdf9-47cb-9f1b-a7f360d1c3d7", + "id": "77858e0c-e076-4c18-9923-617db2f8ffd4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20311,7 +20311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6fb16d6-1ee1-4988-a796-6a5a844e0557", + "id": "457838da-d13f-4dfd-b5bb-c26fab7f5e48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20355,7 +20355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3358606-4816-4c59-9057-60234526dd68", + "id": "641113ef-f6dc-4720-9679-5079dc3c0630", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20405,7 +20405,7 @@ } }, { - "id": "0c4df3fb-e2eb-4526-80cc-78ec00d4bb42", + "id": "269420d3-4291-4425-bbbd-7ea57a14aac7", "name": "Auth User Update", "request": { "name": "Auth User Update", @@ -20459,7 +20459,7 @@ }, "response": [ { - "id": "019f088b-9cda-4896-aba2-ccfa5eeadd34", + "id": "ddf47e4a-49a9-49b8-88b4-0f5b7d395a5b", "name": "Auth user updated.", "originalRequest": { "url": { @@ -20516,7 +20516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00199575-f4a3-413e-8736-29b52824d757", + "id": "e6fd7f4a-ae23-4729-b4ad-5865c8d80695", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20573,7 +20573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0df39f6-c118-474c-9678-660311e589b5", + "id": "aa1f6f1f-758f-43ba-89c9-9c15e5894bfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -20630,7 +20630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84f38013-b7ae-44ab-94f7-d72db579a47a", + "id": "92242280-e474-45ee-924a-aaa5af0243c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -20687,7 +20687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4012a938-59d2-4d46-94f0-646d76c30992", + "id": "ae1cae06-2b0d-4035-9bca-9fe934a5a69d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -20744,7 +20744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b474484-ac1d-495e-9f84-c96a8a15cc75", + "id": "6c2e7c9b-5664-419a-8bae-3d93036bc4db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -20801,7 +20801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0114d4f-b693-4f76-987c-5eae6d7c2654", + "id": "a5346af9-8a68-4bc5-b5f7-75739ddc5b4b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -20870,7 +20870,7 @@ "description": "Use this API to implement and customize branding functionality. \nWith this functionality in place, administrators can get and manage existing branding items, and they can also create new branding items and configure them for use throughout Identity Security Cloud. \nThe Branding APIs provide administrators with a way to customize branding items. \nThis customization includes details like their colors, logos, and other information. \nRefer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html) for more information about certifications.\n", "item": [ { - "id": "0372526e-a9fa-4f39-b0f8-223db9c8f636", + "id": "3b840b8a-7fcf-4c76-a458-51a0bdbfc6ff", "name": "List of branding items", "request": { "name": "List of branding items", @@ -20899,7 +20899,7 @@ }, "response": [ { - "id": "3ea784f1-358d-4aee-86cd-c64e35c86f50", + "id": "302b51a0-181e-49a3-bfab-45e38ebbe5eb", "name": "A list of branding items.", "originalRequest": { "url": { @@ -20937,12 +20937,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"cupidatat esse laborum\",\n \"navigationColor\": \"culpa\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"sint occaecat et esse\",\n \"navigationColor\": \"dolore ad\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", + "body": "[\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"sit\",\n \"navigationColor\": \"aliqua sint \",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n },\n {\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"quis officia proident fugiat exercitation\",\n \"navigationColor\": \"ipsum labore nisi\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "f5caff69-cd42-478a-80f4-bc0d509b6165", + "id": "3c50a56d-ce08-457e-8f24-edd984939a3b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -20985,7 +20985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d62ad3dc-42d6-4de8-997d-b3181a71f9e6", + "id": "a0f08e36-1808-4f16-9bc3-5f23d7ce1685", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21028,7 +21028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95bd53b9-8af9-4137-b929-0917e4be222c", + "id": "c19b09e6-d006-438d-a792-7bb7f13ce595", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21071,7 +21071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db3f9cb4-fa35-4815-8f4a-5a9ad34b68b5", + "id": "677be6cf-e57e-449e-bf1b-22e0458979bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21114,7 +21114,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca042008-84b4-4b8a-88af-5fa124603964", + "id": "8e9f2dda-d134-4593-a976-e6779bc5c8ff", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21163,7 +21163,7 @@ } }, { - "id": "495e7d0e-484e-4a37-9cbb-bdec3619d83b", + "id": "11e54b47-3973-4522-be0e-01725c0f3ad7", "name": "Create a branding item", "request": { "name": "Create a branding item", @@ -21228,7 +21228,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21237,7 +21237,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -21271,7 +21271,7 @@ }, "response": [ { - "id": "46a19e05-307c-4ddf-a964-1a2a9289eb9d", + "id": "a587e9ed-c083-480a-9316-b325a6726082", "name": "Branding item created", "originalRequest": { "url": { @@ -21339,7 +21339,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21348,7 +21348,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -21388,12 +21388,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"amet Ut commodo nisi do\",\n \"navigationColor\": \"nostrud reprehenderit qui\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"enim dolore\",\n \"navigationColor\": \"laborum sed sunt\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "678a9afc-aa46-49ea-8e2f-ae9348e9f473", + "id": "80ae9564-ef7e-4d01-a46f-d587235cee38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -21461,7 +21461,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21470,7 +21470,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -21515,7 +21515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43c8378b-1515-4716-b157-777647c308ce", + "id": "8e293d63-c95b-4a94-a41e-b91bceae4ece", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -21583,7 +21583,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21592,7 +21592,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -21637,7 +21637,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0373363a-e038-4638-905d-d52f0acc5a89", + "id": "a8af8346-6dd3-485a-8180-1aab5413bbf8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -21705,7 +21705,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21714,7 +21714,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -21759,7 +21759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76aa008e-945a-4469-9cc2-e61eebc51e7e", + "id": "f4f943e2-2a86-48da-bc18-6b4762e829f0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -21827,7 +21827,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21836,7 +21836,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -21881,7 +21881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7dcd301a-1710-4efc-ad85-995c3955d3ed", + "id": "d37c1e98-3263-43b2-88f3-b80ad1c50af2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -21949,7 +21949,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -21958,7 +21958,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -22009,7 +22009,7 @@ } }, { - "id": "656012d9-ba15-47cb-8ce4-fd6340de00f9", + "id": "99b080ed-6dd5-4a4d-a7ab-4a5771f56aa8", "name": "Get a branding item", "request": { "name": "Get a branding item", @@ -22050,7 +22050,7 @@ }, "response": [ { - "id": "da422b4a-6282-4e98-b154-926ae325ddb9", + "id": "e39ca68e-16c9-4857-8966-ca689861091e", "name": "A branding item object", "originalRequest": { "url": { @@ -22089,12 +22089,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"amet Ut commodo nisi do\",\n \"navigationColor\": \"nostrud reprehenderit qui\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"enim dolore\",\n \"navigationColor\": \"laborum sed sunt\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d8bc60d0-1eb6-43e3-a01f-d175f84c4dfc", + "id": "66e0dc20-7e6a-4e3a-a650-50a5324b5c0b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22138,7 +22138,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dac67630-7fc8-4ae9-b532-c91319e0eb86", + "id": "10d2430a-9da5-4e9e-853e-b02cd9839a62", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22182,7 +22182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3479be92-7231-408c-9eed-adee840f56c2", + "id": "691d453d-bbbc-49a9-b638-11a399f56e8e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22226,7 +22226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2608b4f-141a-49e1-9bb1-ee5b7c01d941", + "id": "b248abe3-5b96-4ca2-8512-dc8292152265", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -22270,7 +22270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eef60f96-d722-42e8-a59e-1860e051da2e", + "id": "536d02bc-d350-4e26-b159-d1c36ac48be3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -22314,7 +22314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e79f0bc4-bd46-4fc4-bea6-d725cee25b50", + "id": "adbe177e-5b7f-4589-a1df-0d4902a1cbfa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -22364,7 +22364,7 @@ } }, { - "id": "4ba7e9c8-730d-4067-981b-967a12b99bde", + "id": "483265af-cb87-4b1e-b3a1-6d21ca4e1fc7", "name": "Update a branding item", "request": { "name": "Update a branding item", @@ -22441,7 +22441,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -22450,7 +22450,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -22484,7 +22484,7 @@ }, "response": [ { - "id": "2b7276c4-d221-4ee1-ac67-9272023b7aaa", + "id": "445490f1-0e43-467e-8c0a-c1daaf38b658", "name": "Branding item updated", "originalRequest": { "url": { @@ -22553,7 +22553,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -22562,7 +22562,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -22602,12 +22602,12 @@ "value": "application/json" } ], - "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"amet Ut commodo nisi do\",\n \"navigationColor\": \"nostrud reprehenderit qui\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", + "body": "{\n \"name\": \"default\",\n \"productName\": \"product name\",\n \"actionButtonColor\": \"0074D9\",\n \"activeLinkColor\": \"enim dolore\",\n \"navigationColor\": \"laborum sed sunt\",\n \"emailFromAddress\": \"no-reply@sailpoint.com\",\n \"standardLogoURL\": \"\",\n \"loginInformationalMessage\": \"\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "65b4ff78-b7cd-4f69-8b1a-7a528dcca82a", + "id": "59fded8c-db29-4f6e-a857-1f44fbaaff52", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -22676,7 +22676,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -22685,7 +22685,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -22730,7 +22730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78b79cad-f6d4-46c7-b2c0-29d5ef3b38b3", + "id": "533835c6-21e2-4507-aee2-fa4cc9687e63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -22799,7 +22799,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -22808,7 +22808,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -22853,7 +22853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c344f664-f357-4623-bd29-203c788b0d6b", + "id": "1f685f7a-5af9-4b57-9e9e-f15355c0441e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -22922,7 +22922,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -22931,7 +22931,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -22976,7 +22976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ec43b8d-64d9-4f34-9e9f-9262a8ec630b", + "id": "ee1731c7-5165-4d50-84b2-7215586f3fa4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23045,7 +23045,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -23054,7 +23054,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -23099,7 +23099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "540d61c1-e8c7-4725-8847-c4e1297ab5ae", + "id": "a4f37aa3-56bd-4d9d-99a8-1b06d5877f2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23168,7 +23168,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -23177,7 +23177,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -23222,7 +23222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "772a3c08-fdfa-4817-ad34-61d9a3be3d5e", + "id": "0980132e-aed6-48ab-9c68-e272d6a7b428", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23291,7 +23291,7 @@ "type": "text/plain" }, "key": "activeLinkColor", - "value": "pariatur ea in adipisicing Lorem", + "value": "consectetur", "type": "text" }, { @@ -23300,7 +23300,7 @@ "type": "text/plain" }, "key": "navigationColor", - "value": "dolor voluptate id do", + "value": "minim est proident anim", "type": "text" }, { @@ -23351,7 +23351,7 @@ } }, { - "id": "da335152-5eea-45f6-8ba4-c6efb05c6d20", + "id": "fae3bdd4-2ee6-4eb6-9203-bc18f517b07f", "name": "Delete a branding item", "request": { "name": "Delete a branding item", @@ -23392,7 +23392,7 @@ }, "response": [ { - "id": "b1ceafd3-d4d4-4558-87f8-7c700fa015f5", + "id": "8fdd031a-3636-49b1-a51b-903914c59167", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -23426,7 +23426,7 @@ "_postman_previewlanguage": "text" }, { - "id": "765fd1ea-51a6-4bda-bef4-9fb859afb547", + "id": "37e42643-2a68-4536-97b4-e725e54f2e16", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23470,7 +23470,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db1afa57-55c8-46bf-ab61-aa384e699600", + "id": "255efeef-ba45-469d-bb98-1b8ce6a5453e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23514,7 +23514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7490bfd-90a8-4632-b738-09c2f1a81321", + "id": "3d5045d0-cd23-4717-872f-cf3c76d9929d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23558,7 +23558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f741698b-ed85-4e1c-b623-de96bf6f199f", + "id": "669f2e29-f329-4ae1-b2ea-0d0a4d7622a1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -23602,7 +23602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7c2403f-614e-4da2-9fe0-acf52946fe81", + "id": "63c71dca-709e-4163-ad00-70aa1a78afe5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -23646,7 +23646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b799bb2f-ad03-424c-833f-c9e1cebbdc33", + "id": "1fe674df-91b7-4227-a586-f694437bd6e9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -23702,7 +23702,7 @@ "description": "Use this API to implement the certification campaign filter functionality. These filters can be used to create a certification campaign that includes a subset of your entitlements or users to certify.\n\nFor example, if for a certification campaign an organization wants to certify only specific users or entitlements, then those can be included/excluded on the basis of campaign filters.\n\nFor more information about creating a campaign filter, refer to [Creating a Campaign Filter](https://documentation.sailpoint.com/saas/help/certs/campaign_filters.html#creating-a-campaign-filter)\n\nYou can create campaign filters using any of the following criteria types:\n\n- Access Profile : This criteria type includes or excludes access profiles from a campaign.\n\n- Account Attribute : This criteria type includes or excludes certification items that match a specified value in an account attribute.\n\n- Entitlement : This criteria type includes or excludes entitlements from a campaign.\n\n- Identity : This criteria type includes or excludes specific identities from your campaign.\n\n- Identity Attribute : This criteria type includes or excludes identities based on whether they have an identity attribute that matches criteria you've chosen.\n\n- Role : This criteria type includes or excludes roles, as opposed to identities.\n\n- Source : This criteria type includes or excludes entitlements from a source you select.\n\nFor more information about these criteria types, refer to [Types of Campaign Filters](https://documentation.sailpoint.com/saas/help/certs/campaign_filters.html#types-of-campaign-filters)\n\nOnce the campaign filter is created, it can be linked while creating the campaign. The generated campaign will have the items to review as per the campaign filter.\n\nFor example, An inclusion campaign filter is created with a source of Source 1, an operation of Equals, and an entitlement of Entitlement 1. When this filter is selected, only users who have Entitlement 1 are included in the campaign, and only Entitlement 1 is shown in the certification.\n", "item": [ { - "id": "8aaa598d-92d9-4a23-8695-70478daad7b6", + "id": "d85d1454-ab5d-414d-b338-4deb9d6156c1", "name": "Create Campaign Filter", "request": { "name": "Create Campaign Filter", @@ -23744,7 +23744,7 @@ }, "response": [ { - "id": "b833ff6d-20f3-4cb7-ac19-bff7e59215d7", + "id": "8159823b-c18b-4faf-8d7a-89856c01b8a6", "name": "Created successfully.", "originalRequest": { "url": { @@ -23800,7 +23800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8907b59a-87c0-44ee-a9cb-467117c632c5", + "id": "e3056c8b-a47d-4731-b25a-960ba93e5fe0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -23856,7 +23856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d04716e6-e4a7-417b-8778-92b3cafa7e2e", + "id": "58b48ddb-b685-455c-b3e1-bf3544cd67af", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -23912,7 +23912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfbab5a4-d5dc-466b-8b30-e8631fa82d09", + "id": "850caee2-0f37-4a13-822e-6d35cc6808f6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -23968,7 +23968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b914d014-03f0-4788-96b9-5b3d792b221b", + "id": "f98f555a-a576-468a-b1cc-3592cff47691", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24024,7 +24024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d2ca413-0e6c-41d0-b22f-67e16453c1a1", + "id": "df5c97ad-d0cb-4f7a-bd33-a2737116ce1c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24086,7 +24086,7 @@ } }, { - "id": "a3176417-d93f-4e2d-9b90-e3737e4e3834", + "id": "056010c2-67f2-409b-957f-2d8838dadc5f", "name": "List Campaign Filters", "request": { "name": "List Campaign Filters", @@ -24143,7 +24143,7 @@ }, "response": [ { - "id": "5f682b6e-e86f-4676-bdaa-0376f0ecef9f", + "id": "051e8855-37ff-45dc-8408-bed73494cbb1", "name": "List of campaign filter objects.", "originalRequest": { "url": { @@ -24214,7 +24214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd06a007-eefc-4e6a-9742-82234f0a422c", + "id": "8cfcbc6b-9fae-47a0-96f2-4206b7209198", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24285,7 +24285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b87f093-0883-423c-825a-01caf3fec61c", + "id": "b419c59c-e5fa-4637-b583-1fec399c5e40", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24356,7 +24356,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da9732f1-29c4-4d3e-9b78-6532a27a23a0", + "id": "d8c7c6a6-1f9e-46c8-a357-7b43d2337fc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24427,7 +24427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "babbaf89-cc1d-44f9-8306-f2dc36cefd13", + "id": "b0ef7a24-6519-4420-bc42-199ebe01d5e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24498,7 +24498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c540ed7-956b-45c2-92a9-6cab4bf6b329", + "id": "19a2e63d-1ac8-4f01-8d3d-850b60ecd45b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24575,7 +24575,7 @@ } }, { - "id": "0e274808-b86f-4780-aa3a-1ed39cbdbee6", + "id": "37b0aeb3-c899-4aa1-8921-4ed635e53252", "name": "Get Campaign Filter by ID", "request": { "name": "Get Campaign Filter by ID", @@ -24616,7 +24616,7 @@ }, "response": [ { - "id": "e15f67f2-b6fa-4214-9c18-83ba5c81cede", + "id": "dbe93b85-0525-48e1-bd09-6608abcf3e4f", "name": "A campaign filter object.", "originalRequest": { "url": { @@ -24660,7 +24660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d32c76b-40e2-4987-a915-a7f0fb5e4e9c", + "id": "a16dea28-952d-4463-9fa5-f4260bfd7e4f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -24704,7 +24704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2d1e99a-a943-4a10-84d7-e70b50d27a0f", + "id": "ea73f48b-f4f1-4f8a-9e94-e5a7a67d655a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -24748,7 +24748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652a7d80-5d35-4b46-9251-260a27fb47cd", + "id": "684bd2a8-4813-47c0-b1e6-f6e6f18dbb07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -24792,7 +24792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8528d431-8249-4158-92a2-e28af9fb6e47", + "id": "1e18ec0e-8d31-4c84-92c3-7a0831ebe4dc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -24836,7 +24836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d09efdc6-1676-4b81-afbe-99183e3aaa21", + "id": "a4b6b467-49ad-4cf3-ba15-55e53afde565", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -24880,7 +24880,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aad0f38-7241-4c0f-9fd7-0a49f271c39c", + "id": "5e45197b-2278-4259-a46b-a925816f5a8b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -24930,7 +24930,7 @@ } }, { - "id": "ecdb77c4-8e84-470c-b791-f3e209fbb351", + "id": "0b95eaac-31d7-4271-8f51-8ab818105515", "name": "Updates a Campaign Filter", "request": { "name": "Updates a Campaign Filter", @@ -24988,7 +24988,7 @@ }, "response": [ { - "id": "b6352118-5ecd-4c4e-af2d-73468a12a77d", + "id": "35c48312-5543-4820-b19b-96874c724f25", "name": "Created successfully.", "originalRequest": { "url": { @@ -25045,7 +25045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ae1d111-4fcb-47b9-99b3-e1e551fc62e1", + "id": "49ac4257-e5e2-4794-98e7-182aaded47e9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25102,7 +25102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0235fce-086f-490b-922e-4b416e74ebf5", + "id": "a6c51571-e76e-4ea4-bbe2-0c2c1d8ec017", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25159,7 +25159,7 @@ "_postman_previewlanguage": "json" }, { - "id": "182aa8f2-afc3-4136-948c-afa6b7024917", + "id": "a753c486-b38c-4e3a-86e4-a9c2f490f919", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25216,7 +25216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e5eab38-d6f7-4d96-9b40-1c8f0c5c1854", + "id": "e8437a9f-a091-4e02-811f-20da93cf715a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25273,7 +25273,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d19928a6-82e9-45f4-91b6-a71b9d14a03f", + "id": "46a8c747-2b27-4a0a-93a8-15ee23ef2b1f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25336,7 +25336,7 @@ } }, { - "id": "f5806baa-0d30-4703-82c6-d299999b955c", + "id": "e88fdb3c-15d9-4963-957c-a007e4b907d7", "name": "Deletes Campaign Filters", "request": { "name": "Deletes Campaign Filters", @@ -25379,7 +25379,7 @@ }, "response": [ { - "id": "21f92e08-a6e3-416f-b47c-b737dd86e540", + "id": "b90665d6-c381-4445-895e-96e93ecaf0ce", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -25426,7 +25426,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5cc212c0-61fd-4919-af27-f4656e8d9542", + "id": "e9cbbe76-8786-4ce4-b1cc-ddec3e5435a8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -25483,7 +25483,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2837322b-f3f9-4830-8192-5c30258ea34d", + "id": "47f20124-93e9-4850-95e3-0e1073970b2b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -25540,7 +25540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f86fed47-adcd-4962-a99b-34888901e8db", + "id": "40b1a9d3-0975-44e0-b342-d113397b9ae7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -25597,7 +25597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c478737-de1a-4d5f-a432-2daa5ec0e135", + "id": "bcd17a21-3a64-46ac-a4fe-f840c6e07092", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -25654,7 +25654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "489805be-15bd-4c87-9772-d3020e439637", + "id": "e5c4fa36-00c1-436c-81c5-6c64d297c8db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -25711,7 +25711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "350c0936-086a-470c-9ed2-8212d6f08cfe", + "id": "5ef300fa-04eb-454e-9df4-3fbca14b7369", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -25780,7 +25780,7 @@ "description": "Use this API to implement certification campaign functionality.\nWith this functionality in place, administrators can create, customize, and manage certification campaigns for their organizations' use. \nCertification campaigns provide Identity Security Cloud users with an interactive review process they can use to identify and verify access to systems. \nCampaigns help organizations reduce risk of inappropriate access and satisfy audit requirements. \n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese certifications serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign. \n\nFor example, an organization may use a Manager Certification campaign as a way of showing that a user's access has been reviewed and approved by multiple managers. \nOnce this campaign has been completed, Identity Security Cloud would provision all the access the user needs, nothing more. \n\nIdentity Security Cloud provides two simple campaign types users can create without using search queries, Manager and Source Owner campaigns:\n\nYou can create these types of campaigns without using any search queries in Identity Security Cloud: \n\n- ManagerCampaign: Identity Security Cloud provides this campaign type as a way to ensure that an identity's access is certified by their managers. \nYou only need to provide a name and description to create one. \n\n- Source Owner Campaign: Identity Security Cloud provides this campaign type as a way to ensure that an identity's access to a source is certified by its source owners. \nYou only need to provide a name and description to create one. \nYou can specify the sources whose owners you want involved or just run it across all sources. \n\nFor more information about these campaign types, refer to [Starting a Manager or Source Owner Campaign](https://documentation.sailpoint.com/saas/help/certs/starting_campaign.html).\n\nOne useful way to create certification campaigns in Identity Security Cloud is to use a specific search and then run a campaign on the results returned by that search. \nThis allows you to be much more specific about whom you are certifying in your campaigns and what access you are certifying in your campaigns. \nFor example, you can search for all identities who are managed by \"Amanda.Ross\" and also have the access to the \"Accounting\" role and then run a certification campaign based on that search to ensure that the returned identities are appropriately certified. \n\nYou can use Identity Security Cloud search queries to create these types of campaigns: \n\n- Identities: Use this campaign type to review and revoke access items for specific identities. \nYou can either build a search query and create a campaign certifying all identities returned by that query, or you can search for individual identities and add those identities to the certification campaign. \n\n- Access Items: Use this campaign type to review and revoke a set of roles, access profiles, or entitlements from the identities that have them. \nYou can either build a search query and create a campaign certifying all access items returned by that query, or you can search for individual access items and add those items to the certification campaign. \n\n- Role Composition: Use this campaign type to review a role's composition, including its title, description, and membership criteria. \nYou can either build a search query and create a campaign certifying all roles returned by that query, or you can search for individual roles and add those roles to the certification campaign. \n\n- Uncorrelated Accounts: Use this campaign type to certify source accounts that aren't linked to an authoritative identity in Identity Security Cloud. \nYou can use this campaign type to view all the uncorrelated accounts for a source and certify them. \n\nFor more information about search-based campaigns, refer to [Starting a Campaign from Search](https://documentation.sailpoint.com/saas/help/certs/starting_search_campaign.html).\n\nOnce you have generated your campaign, it becomes available for preview. \nAn administrator can review the campaign and make changes, or if it's ready and accurate, activate it. \n\nOnce the campaign is active, organization administrators or certification administrators can designate other Identity Security Cloud users as certification reviewers. \nThose reviewers can view any of the certifications they either need to review (active) or have already reviewed (completed).\n\nWhen a certification campaign is in progress, certification reviewers see the listed active certifications whose involved identities they can review. \nReviewers can then make decisions to grant or revoke access, as well as reassign the certification to another reviewer. If the reviewer chooses this option, they must provide a reason for reassignment in the form of a comment.\n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must \"Sign Off\" to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items. \n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase. \nIn the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed. \n\nThe end of a certification campaign is determined by its deadline, its completion status, or by an administrator's decision. \n\nFor more information about certifications and certification campaigns, refer to [Certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html).\n", "item": [ { - "id": "4fec31fb-a53a-4730-a440-71a6e88875be", + "id": "5436c059-c1a6-4fcd-bcb1-115d79e45fa9", "name": "List Campaigns", "request": { "name": "List Campaigns", @@ -25864,7 +25864,7 @@ }, "response": [ { - "id": "33def9ac-59eb-43ea-9b93-2f40bd04ed26", + "id": "d47eb8c2-16ee-46ae-afd0-9dce4b543741", "name": "Slim Campaign", "originalRequest": { "url": { @@ -25962,7 +25962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8208efb8-e4cc-4be5-be16-167fc673138e", + "id": "8c14a9b7-3aef-4927-acd4-eaf50f92831e", "name": "Full Campaign", "originalRequest": { "url": { @@ -26060,7 +26060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb30b93-db2a-4f8a-97f7-71b26a62abbf", + "id": "ab3f1169-04f3-4d0f-8e99-2d0a217517e1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -26158,7 +26158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f0de302-a797-4c2e-bc32-acd324251bcf", + "id": "0a737572-3da0-4e31-a8e4-4d3dc9e77c67", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -26256,7 +26256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06eeb4b6-b2de-4347-a03a-04efce3c00ec", + "id": "4511b66d-591c-40c1-97b1-789e99be1680", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -26354,7 +26354,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ab04bf7-90d6-42b9-a043-4dd3d6bbf85a", + "id": "57a556e0-b895-4e1d-b36b-8050f2ea441b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -26452,7 +26452,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ff33962-c783-4efc-8f3f-adbe3febe5d5", + "id": "347564f5-08bf-4755-93dc-d25d1dbedb50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -26556,7 +26556,7 @@ } }, { - "id": "e0968422-d171-4afc-b0d4-26ac5bea4133", + "id": "7f1d7374-7faf-4067-a173-cbdcfcafc6f9", "name": "Create a campaign", "request": { "name": "Create a campaign", @@ -26598,7 +26598,7 @@ }, "response": [ { - "id": "ba280856-568a-4312-b4b6-eb2707ac9a49", + "id": "f379cb16-82ea-4938-888a-e934ef1eb511", "name": "Manager", "originalRequest": { "url": { @@ -26654,7 +26654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c110d8c-1c87-4ef8-a132-25832577285c", + "id": "6717e00e-d300-4c4d-b55e-fc6ea8f8b5ab", "name": "Search", "originalRequest": { "url": { @@ -26710,7 +26710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a756563-c01a-4e74-8b2a-df8ad673be95", + "id": "2c9b830f-2ae1-425a-8192-0d03776971c1", "name": "Source Owner", "originalRequest": { "url": { @@ -26766,7 +26766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe69c11a-66ff-4130-9663-acd0f54ab5f3", + "id": "a085840c-411a-4eee-9bce-5cccefae5968", "name": "Role Composition", "originalRequest": { "url": { @@ -26822,7 +26822,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40cddea1-36fb-4704-85a3-ccd2c5a4c189", + "id": "9b3caa2d-0541-44c0-ad87-4c6472c9fd7e", "name": "Manager", "originalRequest": { "url": { @@ -26878,7 +26878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb6e1778-db0f-42e9-93d1-3f0b7a6fa046", + "id": "deb80c6a-baab-4869-93cc-e62fe7404a86", "name": "Search", "originalRequest": { "url": { @@ -26934,7 +26934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c01ee9dc-d6d3-4198-a3dd-edef4f417e1a", + "id": "1d6a1218-391e-4811-820c-e17bdb6c4c3c", "name": "Source Owner", "originalRequest": { "url": { @@ -26990,7 +26990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67f5c0b8-0239-491a-9c37-28bc495a22cb", + "id": "35b67847-11eb-4a15-aaae-0231f88a8a42", "name": "Role Composition", "originalRequest": { "url": { @@ -27046,7 +27046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "349dc480-21c7-4195-9b36-27d932e7e5e4", + "id": "2e12da94-c24a-49f5-80ec-778c9a5187c8", "name": "Machine Account", "originalRequest": { "url": { @@ -27102,7 +27102,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76d4b213-ecf0-4866-a425-2e54836bbb33", + "id": "b18d61e6-4246-4c7e-82d7-03fd74be8eac", "name": "Manager", "originalRequest": { "url": { @@ -27158,7 +27158,7 @@ "_postman_previewlanguage": "json" }, { - "id": "103a0b22-a727-489e-8763-a92b8dfefda9", + "id": "b7b8e64a-b024-41eb-9a96-a6d99baa7504", "name": "Search", "originalRequest": { "url": { @@ -27214,7 +27214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "822839b8-ae51-4f92-aa4a-07e5661f986e", + "id": "3f77ad98-3901-4619-bc0a-215f5569cdb1", "name": "Source Owner", "originalRequest": { "url": { @@ -27270,7 +27270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a76bd9b-7ba6-4681-9d0b-39a52ee0a4d8", + "id": "787f41b8-f80b-404a-b528-e5e4165ac689", "name": "Role Composition", "originalRequest": { "url": { @@ -27326,7 +27326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30815765-75c4-4638-b5a7-e3e3d41f4180", + "id": "c68678b6-0349-4013-b385-02da3fba3e3d", "name": "Machine Account", "originalRequest": { "url": { @@ -27382,7 +27382,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c514f6f0-ebd6-42e7-bd75-dca11a5f0453", + "id": "20f2cf77-0ef5-4709-a298-76a2055ab2d0", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -27438,7 +27438,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eaece79e-653c-494d-b17f-77b8569fa108", + "id": "d6e50664-818c-45c9-bd5d-96cc482e3944", "name": "Search", "originalRequest": { "url": { @@ -27494,7 +27494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2e1b9e5-7850-42c4-a9cf-fcc49f431c6c", + "id": "cb6df8de-2722-4663-9908-5dd7b4444aed", "name": "Source Owner", "originalRequest": { "url": { @@ -27550,7 +27550,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b19bca7-531e-4304-97c9-be28f15eae1d", + "id": "13cff9ab-d6af-400d-9bb0-6d1953482f6f", "name": "Role Composition", "originalRequest": { "url": { @@ -27606,7 +27606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "413a0a55-afcf-4439-ae1f-9edb766e8d36", + "id": "208e8c05-c5a6-40c5-86c7-af31a3b54bb7", "name": "Machine Account", "originalRequest": { "url": { @@ -27662,7 +27662,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd56414-4a1d-476c-9e17-e1f0f394ee9f", + "id": "a1e5c212-3b0c-40a0-8653-be3a1256ba4f", "name": "Manager", "originalRequest": { "url": { @@ -27718,7 +27718,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3a73f7f-5e76-4f82-b25b-8542cc2724a3", + "id": "399662df-34bd-4744-b717-958e7d5c84ad", "name": "Search", "originalRequest": { "url": { @@ -27774,7 +27774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7113bc9-92bb-479a-b31f-72fbee078e95", + "id": "6ace59cd-5c37-40d8-af80-e7bd69b43acc", "name": "Source Owner", "originalRequest": { "url": { @@ -27830,7 +27830,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1648339a-72c3-468e-a126-ad06cb84c2cb", + "id": "2ad26874-43c9-41c5-98e3-b3362d8c800a", "name": "Role Composition", "originalRequest": { "url": { @@ -27886,7 +27886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70b43d3e-744f-4975-9d61-c429a4d88d8d", + "id": "44be2bd7-26ef-4d03-99f6-464f857c8f35", "name": "Machine Account", "originalRequest": { "url": { @@ -27942,7 +27942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92693cdc-5a71-4eb0-8834-046b6dea932a", + "id": "fc1a2b75-66b7-4de8-ba47-3b672c27a230", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -27998,7 +27998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a42f223-48bb-4fa9-92b4-8f2a3cc7cf07", + "id": "44d4690f-c064-4bed-898b-f34af542d4bf", "name": "Search", "originalRequest": { "url": { @@ -28054,7 +28054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3116da58-da01-41c3-b9e1-f50fd57cd088", + "id": "e223b014-0863-492c-9e8a-89d75bda256a", "name": "Source Owner", "originalRequest": { "url": { @@ -28110,7 +28110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67ef890f-4e7a-46c3-8b2e-47f4c24032a6", + "id": "01bdb86e-6955-4305-a65f-4f6c270c3aeb", "name": "Role Composition", "originalRequest": { "url": { @@ -28166,7 +28166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "706f7920-0c27-4e53-9099-acc6b083fba6", + "id": "0a0789c3-8008-462c-8411-55d4c9a0301e", "name": "Machine Account", "originalRequest": { "url": { @@ -28228,7 +28228,7 @@ } }, { - "id": "52940bd2-88b0-45bf-9b83-46ce445a9d59", + "id": "7276d3d8-3be7-475d-8456-6612c2af2d1d", "name": "Get Campaign", "request": { "name": "Get Campaign", @@ -28279,7 +28279,7 @@ }, "response": [ { - "id": "55035ce6-f066-49c0-9c35-10832628dac2", + "id": "ba24a33e-3165-4a57-8006-1198320c5153", "name": "Manager", "originalRequest": { "url": { @@ -28333,7 +28333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c2ffb4d-4923-45b2-acc8-f443aff1c9dc", + "id": "7cccf158-6efb-4108-9dc3-d38119b82f86", "name": "Search", "originalRequest": { "url": { @@ -28387,7 +28387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6022d692-b989-4bb0-a395-27e6ae6c5811", + "id": "a2ecf831-8c9e-4f5c-9e36-bf25e2d2117a", "name": "Source Owner", "originalRequest": { "url": { @@ -28441,7 +28441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8c64941-5a48-44b0-9ae4-33e001cb8618", + "id": "a66c2a90-52a5-4a8f-b7f8-5ed018c35427", "name": "RoleComposition", "originalRequest": { "url": { @@ -28495,7 +28495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a92536d-953e-4c99-9c98-6ae3da636aba", + "id": "e65876c2-c443-4161-ad58-6b7cbdad22bf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -28549,7 +28549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1c48c44-fb74-45e6-a089-11a8b0393d58", + "id": "bc7e185a-7f08-482c-8ed6-d0b4bfeebd54", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -28603,7 +28603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91df8175-cc91-4220-8a1a-3b698f4f4aef", + "id": "528e0fbf-d398-4e19-a124-cd941bf5161c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -28657,7 +28657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ac19b99-d42e-4da2-9a14-7639cbd25e3a", + "id": "f65a094f-01dd-45d0-bd08-f81e58dea83c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -28711,7 +28711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddbe9284-ed0a-448d-8e3e-7b9ab099989a", + "id": "ece4a2d5-57da-434a-82a9-8d202e673ff7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -28765,7 +28765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a3abc0c-901f-450b-bb55-ef1369e05c10", + "id": "bcdaf0f1-ac86-4edc-b3bb-62f54148a472", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -28825,7 +28825,7 @@ } }, { - "id": "28cf1af4-4965-4fb4-a70e-bdf8bae8865b", + "id": "9170b8e7-0f48-4fa6-b247-2a417d8d91a6", "name": "Update a Campaign", "request": { "name": "Update a Campaign", @@ -28879,7 +28879,7 @@ }, "response": [ { - "id": "5cf00fdd-7b0b-4fd6-ac68-1501c76b9506", + "id": "d25ba16a-e91d-4a97-a4a3-1f96edbedd52", "name": "Manager", "originalRequest": { "url": { @@ -28936,7 +28936,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f353c620-f990-45a7-a430-3f146dd0a35f", + "id": "6f88deeb-9589-4051-bf76-bbb131747827", "name": "Search", "originalRequest": { "url": { @@ -28993,7 +28993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e48997-7857-4d46-b3a3-21c13ea08ac8", + "id": "8d3ca700-45ee-4c1e-b680-840ce67166b9", "name": "Source Owner", "originalRequest": { "url": { @@ -29050,7 +29050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0289f724-7ff0-4b5d-9549-f8b7d9178766", + "id": "db5b1958-eb54-4ea7-8b4f-48e46f0eba77", "name": "RoleComposition", "originalRequest": { "url": { @@ -29107,7 +29107,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3e7ddf6-7fd0-4aa4-867d-9d1f0bbf2706", + "id": "cc6853a7-a87b-442c-be65-419e35f85fb7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29164,7 +29164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d1ef58e-263a-4fb9-b855-bc82f2824a79", + "id": "006faac8-c2c0-4917-b8b7-bf3617790e96", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29221,7 +29221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f28a22e9-8d8b-4521-8872-bfa14c87aa37", + "id": "748afeea-24ff-4f17-a6b7-6be0707ab945", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29278,7 +29278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a1aab51-fa68-4350-ad5a-fc1331d0b467", + "id": "d8eece98-64b7-4775-8687-33afc92e3601", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29335,7 +29335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1138e4d-5177-4621-b9a7-f60da5560d0a", + "id": "1577cb51-10d9-4d49-87b5-8055b63dd450", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29392,7 +29392,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef2fa066-88a5-490a-be9e-e07bbbfd4b90", + "id": "96a7be1d-5f4d-4f76-9cef-4cbabca4a906", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29455,7 +29455,7 @@ } }, { - "id": "53f9869c-343a-4945-ad93-c7529e71e13b", + "id": "516d3aa5-793a-4ede-bef6-f131513f5008", "name": "Reassign Certifications", "request": { "name": "Reassign Certifications", @@ -29510,7 +29510,7 @@ }, "response": [ { - "id": "e3985e4b-aa7f-4580-8cde-546d087dbf95", + "id": "06e91aee-1550-4993-8466-5e6e925143c3", "name": "The reassign task that has been submitted.", "originalRequest": { "url": { @@ -29568,7 +29568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6a1175-9486-4630-9c01-686e44035d2b", + "id": "4d4f2ad0-4732-45bd-afb6-58ab5969b00d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -29626,7 +29626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50cf2c09-1213-48ee-960b-0113e3b96b41", + "id": "5ce0e640-73d6-49e9-8536-d550f49173b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -29684,7 +29684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "307c11df-2836-4a2e-950d-a1dbd94a41b9", + "id": "353957f0-5b2e-4be8-b37b-b1bd2e12fd6e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -29742,7 +29742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bda5c769-2b43-4e39-9cf5-5a8106c2ce98", + "id": "681ff494-11c0-40ec-bfed-11bffc7007e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -29800,7 +29800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43dd7cd3-4a3f-417c-8696-29e06d721688", + "id": "9123bfbb-c80e-4edb-8262-4fd83e47fb13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -29858,7 +29858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c936fce-c99c-416e-9deb-2af47d0cfcb3", + "id": "2dea60e3-cd9f-4a2b-a11e-f3cfcea8d890", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -29922,7 +29922,7 @@ } }, { - "id": "a6536ef2-87e7-40a0-9191-2b0dd0f711e7", + "id": "c0114e47-364b-4fcc-aab0-572223bf0f05", "name": "Activate a Campaign", "request": { "name": "Activate a Campaign", @@ -29977,7 +29977,7 @@ }, "response": [ { - "id": "26e40a11-e0a1-4411-a541-c567ffc4efa8", + "id": "09484514-f849-40b3-9e94-f35442250abd", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -30035,7 +30035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e7ce0ca-edc9-467f-9a65-7bd6e8ae44ec", + "id": "5b56baa3-2cfd-42c7-ab81-ddf8534bb92c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30093,7 +30093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37f74a35-28c0-470c-a7a7-52590886149c", + "id": "900f5a54-725a-4f0d-8cd8-68761e3ed142", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30151,7 +30151,7 @@ "_postman_previewlanguage": "json" }, { - "id": "531f6d68-0514-40e0-8b54-c782cf11fe9e", + "id": "39c6af35-575e-4b32-923a-f6eea5a4f5f9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30209,7 +30209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9890ab2-0884-45b2-98eb-aa484396f574", + "id": "b34b969a-2530-4479-a651-5081b9d58991", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30267,7 +30267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d4b72a7-e560-4b1c-ae6f-257fe756e093", + "id": "65ec40c2-cce8-41b9-aa11-6d0f0bb84990", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30325,7 +30325,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc1fe241-513d-46c8-b48b-046e444e2a27", + "id": "977eb644-c153-48fb-bc6e-ebc32c92b53a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30389,7 +30389,7 @@ } }, { - "id": "fa250524-6dfa-43bc-b01d-6aecab353e2d", + "id": "86646e8d-a652-48da-b088-1d244d4dd1c5", "name": "Complete a Campaign", "request": { "name": "Complete a Campaign", @@ -30444,7 +30444,7 @@ }, "response": [ { - "id": "2864b605-1e4b-413b-9e4d-6f5c8c096adc", + "id": "66f2b7c6-4dcf-4f8f-9584-dfa268f4f754", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -30502,7 +30502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c2ecb9e-4aa1-474c-94ac-416a94935968", + "id": "b6b8eed0-4665-4052-abae-63f5388b7655", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -30560,7 +30560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6fff1010-233e-4aca-89f8-459dfba2138e", + "id": "68d5be85-bca7-40ff-bfa4-045b46f2b880", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -30618,7 +30618,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9551771b-f856-4b04-83f3-2f852f5a5c3c", + "id": "4f88876b-4f2f-44cc-b7e4-9795939dc073", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -30676,7 +30676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b38e931a-4dec-4100-9f87-95fe04376fba", + "id": "a2cb3b4d-0117-482c-8d3c-43652cec37b4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -30734,7 +30734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f9814eb-ea70-4f39-b07c-39ac55dfca7a", + "id": "ab7de342-9b0f-43a5-9853-0ab4cbdc9060", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -30792,7 +30792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1aa9293-4756-4652-96cc-a4489b1cd949", + "id": "e9371511-e8fe-4b4c-b84f-803e1e750e0c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -30856,7 +30856,7 @@ } }, { - "id": "e02f57a4-807b-4bc8-ad02-433087a529e4", + "id": "4d55cea2-bd86-454e-8050-a3e9cc16d08f", "name": "Delete Campaigns", "request": { "name": "Delete Campaigns", @@ -30899,7 +30899,7 @@ }, "response": [ { - "id": "20b2ae49-7ff3-4908-be77-4064a92456ca", + "id": "6b309fbc-7171-44f6-b8ae-6cd79425c8db", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -30956,7 +30956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88cb6004-c486-47ad-ae64-085e2ab1e181", + "id": "1a7fc4a2-b288-4561-b53b-01a69fba0818", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31013,7 +31013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3119bdc-0ac2-421c-a2e0-a2bf6154dcb1", + "id": "134f9e7f-4e0a-46c0-a89f-345c841985bc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31070,7 +31070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15b94070-319c-458e-9960-82b6998ff03c", + "id": "f3b3b114-d038-433f-9475-6104f2e14c82", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31127,7 +31127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8ee72ef-ceed-420a-9573-0545e7bca6ef", + "id": "3ab7ab02-47b7-4682-b267-5cfcf764a45d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31184,7 +31184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71738366-afce-4056-99f3-12258611edae", + "id": "089a4a2d-d84a-4c43-aa77-3384ee82ed2d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31241,7 +31241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68505cbe-340a-49b8-9976-4b83ce5162cd", + "id": "6ea42597-eb85-4868-810e-ff8ed3f21291", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31304,7 +31304,7 @@ } }, { - "id": "f867b916-4cad-432a-b0c4-b666c36e302e", + "id": "ea8ecdfe-bbea-4dc1-b093-4751e31ee520", "name": "Run Campaign Remediation Scan", "request": { "name": "Run Campaign Remediation Scan", @@ -31346,7 +31346,7 @@ }, "response": [ { - "id": "5913ee3a-a84d-43b8-bae6-ce511846d868", + "id": "5147498c-79e7-417c-9094-2b907b7ba6d9", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -31391,7 +31391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69362ff5-42f3-4d11-ba8e-f87994eaffac", + "id": "d34f6f9c-4efe-4f5f-8bc6-34576646c504", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31436,7 +31436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdf54708-0934-4315-88a8-cafe026598a9", + "id": "6fdbfc53-d9c7-491b-a200-ad10dca9e4ec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31481,7 +31481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30e9c727-9b6f-48b0-a3f6-85168481f533", + "id": "60d033c8-6d46-4512-bd69-903fc6d30edf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31526,7 +31526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8662f88e-2a6d-4c46-a94f-aa7df6f1ecc8", + "id": "42e0479b-e21c-4473-aae6-46f128e648bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31571,7 +31571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f8ca56a-0ebf-4492-ab60-23b72e810c98", + "id": "8dad139c-e537-4a26-8adb-643daf2c3db9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31616,7 +31616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea28a6ed-032b-4af6-999f-5fc3591c60e5", + "id": "81c1c196-638b-4538-a9e1-2700e190b204", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -31667,7 +31667,7 @@ } }, { - "id": "7aff2198-6e37-44e8-ba0e-81066edba42e", + "id": "49f1ca15-eb97-4669-8ec4-dd7b73186a68", "name": "Get Campaign Reports", "request": { "name": "Get Campaign Reports", @@ -31709,7 +31709,7 @@ }, "response": [ { - "id": "ede0eb77-1d6c-4946-90c0-8356d968597f", + "id": "446d0388-4071-4f7f-81be-2cfb23e6ad38", "name": "Array of campaign report objects.", "originalRequest": { "url": { @@ -31754,7 +31754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60d8b308-7aa6-4eaa-b9e7-076185483d64", + "id": "b0f05945-dc55-4b8b-b2f4-e60ed97eaffd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -31799,7 +31799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9161525-ccdc-48e9-a280-b09025f7ef30", + "id": "87ac7a05-4dff-4abc-8e8d-2e3ddff83f0d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -31844,7 +31844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59de0b8e-8d10-40e7-ba27-1a2541c520ac", + "id": "2c2cbba5-6ad8-403a-9211-af5283f7e1b5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -31889,7 +31889,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15dd311b-a3cb-4d1e-b1be-45a30c1b9f50", + "id": "4edc2994-939c-489c-b220-abfbadd5fac2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -31934,7 +31934,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daf6678e-2380-4505-bf0a-4bdc8b7c716b", + "id": "590c94a6-6744-4393-956c-a10928f38a08", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -31979,7 +31979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8303cf23-d864-4c18-a2de-312d3a32a67c", + "id": "b13c932d-5b5d-4f17-8bee-b6c673c34a3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32030,7 +32030,7 @@ } }, { - "id": "3f679bb9-6891-48d0-a770-f72fa35eaf69", + "id": "71cd4db9-ceb6-4871-8bc3-bea25f787996", "name": "Run Campaign Report", "request": { "name": "Run Campaign Report", @@ -32083,7 +32083,7 @@ }, "response": [ { - "id": "f7585be8-8b5f-42cd-a09d-81a9ff9a5c86", + "id": "b11945ba-dcbd-4b4d-b14c-7482a7cb6832", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -32129,7 +32129,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e7a31c4-71cb-4931-a9d3-3d7e56f1baa2", + "id": "9d71a8f8-13c4-4a8a-9f8c-aeee8700438f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32175,7 +32175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d37e4718-c8b4-4d5e-9923-a86ff91f5a86", + "id": "ccf3544f-13de-478a-927d-2a3169eb5762", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32221,7 +32221,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0861d573-088e-4b43-8027-f118dc21854d", + "id": "b5a7e5a3-276a-40a1-a8d1-a592992ee38d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32267,7 +32267,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fe79160-3ed5-43af-b83f-2748101d6acd", + "id": "c76dcaec-a3ee-48a9-8757-701e75037170", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -32313,7 +32313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9008b6df-53ba-4e4f-a8f5-e657b89ec1c5", + "id": "260c60de-c012-4c07-bf16-85378b0612f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32359,7 +32359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49ad5588-b05e-4458-8f59-e31fddf00610", + "id": "d4413bed-ba89-4b73-87d4-c4fb0e14fa47", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32411,7 +32411,7 @@ } }, { - "id": "4f32c654-2f80-4d31-be94-6916b4fbb68a", + "id": "11a0c629-4037-4e49-a9d0-7cf1cc2f4ccb", "name": "Get Campaign Reports Configuration", "request": { "name": "Get Campaign Reports Configuration", @@ -32441,7 +32441,7 @@ }, "response": [ { - "id": "8b958134-ab13-44bc-8990-91beb38e9e98", + "id": "553f4fe3-33cc-4f22-b242-8e81beddd993", "name": "Campaign report configuration.", "originalRequest": { "url": { @@ -32485,7 +32485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80bca4f0-91c8-4f64-8f82-a79ade260222", + "id": "d3af0f9a-4eaa-484a-a416-f942b47cfa21", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32529,7 +32529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "abadabd4-9a94-495e-801f-eb4effa57104", + "id": "205f42fe-ef02-4d96-876c-e73c8b7515de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32573,7 +32573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a0f4061-4b90-47e9-9ff0-87f9c2fb2971", + "id": "7e88957a-ba70-49bd-82fe-8dfd7e24178d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32617,7 +32617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b25204e3-9ca7-4501-9851-e53b53e812e4", + "id": "f057fa97-eb61-4bf1-a4bc-e83a35c01f01", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -32661,7 +32661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f53d9f21-c5a7-44ba-8693-f7e69d39d327", + "id": "17c99388-0958-4579-8cad-39f1b5a0176e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -32711,7 +32711,7 @@ } }, { - "id": "4039d1f2-7fd3-43c2-9f97-57b1d04c8092", + "id": "ff700818-cc46-42a6-811b-9fd5c6fc60bb", "name": "Set Campaign Reports Configuration", "request": { "name": "Set Campaign Reports Configuration", @@ -32754,7 +32754,7 @@ }, "response": [ { - "id": "a75ad22a-8602-4580-87aa-9753a1c82f78", + "id": "5a33471a-caa8-4ccb-935c-ba8ade79c9ff", "name": "The persisted campaign report configuration.", "originalRequest": { "url": { @@ -32811,7 +32811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "643e491f-3204-4a76-b994-339fc57d539a", + "id": "c13135e5-dbc8-4219-9280-9a815405a272", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -32868,7 +32868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddb7d4e1-20f8-4ec8-aa02-ead11b130e11", + "id": "08c96d1e-e36f-4a61-8d3f-fd5ac3002c5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -32925,7 +32925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff0638fb-f342-4457-ba87-0b51c01d7a72", + "id": "dc6ce1f3-d760-40ff-a046-e87fda927d78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -32982,7 +32982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b3df00e-f9b8-4267-89d5-124bc309ef7f", + "id": "c7f75754-19af-4797-b715-da88b21807aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -33039,7 +33039,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d93010d8-f57b-4742-bd9f-953c61c9a734", + "id": "0b15775a-0fde-43d1-a6b6-bcefa0bb0342", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -33102,7 +33102,7 @@ } }, { - "id": "fe9ab0d8-7c3a-4068-ae02-1fceed09f70b", + "id": "5f835371-a163-4dab-adeb-7a0f33d7b79d", "name": "Create a Campaign Template", "request": { "name": "Create a Campaign Template", @@ -33144,7 +33144,7 @@ }, "response": [ { - "id": "6d1aac6b-ea94-4d73-ada9-66db86a05ad0", + "id": "0ee0cc40-3d23-4ca1-85d3-c7022cee707c", "name": "Manager", "originalRequest": { "url": { @@ -33200,7 +33200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ede56127-1d8a-427d-bb40-9cae7576d485", + "id": "7629d459-7c8a-4f26-bbf9-b7c4d7138978", "name": "Search", "originalRequest": { "url": { @@ -33256,7 +33256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de9346a6-393d-40a3-bdcb-6aed49256b8f", + "id": "b0d9b3c0-4690-4898-97a4-fdb4f43850ad", "name": "Source Owner", "originalRequest": { "url": { @@ -33312,7 +33312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "882ad9bb-ffda-4428-a4fc-2d24193bafe1", + "id": "bedbadb2-41f1-4c6a-861b-4fea42c8f8a2", "name": "RoleComposition", "originalRequest": { "url": { @@ -33368,7 +33368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a43b845-e6de-4763-9740-ac3fbfab5851", + "id": "b0be701c-d1ca-46f3-beec-8b98c9f470d3", "name": "Manager", "originalRequest": { "url": { @@ -33424,7 +33424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca243c52-19d0-4176-a1fe-33858ed2148c", + "id": "4b2b686e-0678-4b26-972b-d11a27acedbc", "name": "Search", "originalRequest": { "url": { @@ -33480,7 +33480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21684702-a042-48dc-9fd3-ad681a679289", + "id": "3e843317-81fe-4712-8ec2-20e2d875a141", "name": "Source Owner", "originalRequest": { "url": { @@ -33536,7 +33536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e98d85f-e175-401c-9b04-105578e02bfe", + "id": "a3fb4e77-cefc-4e08-8d34-9fe2af847fef", "name": "RoleComposition", "originalRequest": { "url": { @@ -33592,7 +33592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "197bb872-ca35-43b1-86fd-566c08c6a3d9", + "id": "49a196ed-21a9-48d8-b35d-85194c4831fc", "name": "Manager", "originalRequest": { "url": { @@ -33648,7 +33648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20a27473-947a-4c36-adb2-f28d028bc0a5", + "id": "e0ef0a25-b3b1-4fd2-a75d-f3162eca5adf", "name": "Search", "originalRequest": { "url": { @@ -33704,7 +33704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9877f42a-a216-4b9c-a247-9d7f215d70fb", + "id": "b3e948bb-b932-410b-9158-36b723c88919", "name": "Source Owner", "originalRequest": { "url": { @@ -33760,7 +33760,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62de0daf-06ff-466d-957b-00d4cde29254", + "id": "5540cf6b-054c-4972-bf1c-4fd167eddb2b", "name": "RoleComposition", "originalRequest": { "url": { @@ -33816,7 +33816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdc66728-7625-4e84-94ba-138da38a0adb", + "id": "5ce3c602-6837-4c27-aa4f-5b13202bcd29", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -33872,7 +33872,7 @@ "_postman_previewlanguage": "json" }, { - "id": "938c5d2e-8bb8-49a8-a3ce-f5308a87ca6e", + "id": "c8480ae1-8201-409e-bbb9-33cc1526c5f4", "name": "Search", "originalRequest": { "url": { @@ -33928,7 +33928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e869eb02-c1cd-4120-bf64-f9b0b8ae0490", + "id": "3d223791-49bf-4003-b571-d8b178a314f4", "name": "Source Owner", "originalRequest": { "url": { @@ -33984,7 +33984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63f0a679-e77f-43db-8463-c59e8f57b1b5", + "id": "ca97ca41-337d-40c6-9ece-c5a12ae66441", "name": "RoleComposition", "originalRequest": { "url": { @@ -34040,7 +34040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ff3713b-b1a2-4b17-85de-ed4c975a5bcb", + "id": "ba3e3a45-f306-4ea3-a201-b69043f27197", "name": "Manager", "originalRequest": { "url": { @@ -34096,7 +34096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ade0d5ff-38c0-431f-806a-761587ad68bf", + "id": "103b4168-f7b3-4dba-b996-37fd4b73e54c", "name": "Search", "originalRequest": { "url": { @@ -34152,7 +34152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "675b2692-a08d-49c8-bc30-c4be68919e28", + "id": "8a34fea0-106e-4082-a688-7cf1b2c0b717", "name": "Source Owner", "originalRequest": { "url": { @@ -34208,7 +34208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0beeba38-506c-4195-84f2-ec2af83e316e", + "id": "1f45c0a4-f2eb-403a-b0e2-444cd7139441", "name": "RoleComposition", "originalRequest": { "url": { @@ -34264,7 +34264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a46962-f912-48fb-b45c-221bc4e77ad5", + "id": "0a081d7b-5c25-4f19-a2f9-b7ce44d7806a", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -34320,7 +34320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "512cbc32-d51e-4a14-9727-20608e36fcdd", + "id": "099cac9b-b148-4ab7-a9c6-9ca395f84326", "name": "Search", "originalRequest": { "url": { @@ -34376,7 +34376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6521d28f-a1a4-486a-be70-0cda0e030b24", + "id": "fdc01b17-cec3-4865-9288-3925c79876b9", "name": "Source Owner", "originalRequest": { "url": { @@ -34432,7 +34432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06642920-a707-47eb-b1f0-36cf03e400b1", + "id": "630ee3f4-063b-4030-9699-f800c1ba9d6f", "name": "RoleComposition", "originalRequest": { "url": { @@ -34494,7 +34494,7 @@ } }, { - "id": "2772b3cc-57ee-458b-8b8c-ddcf58beb899", + "id": "ee25c993-88cc-49b1-bdf0-96cd2b16c651", "name": "List Campaign Templates", "request": { "name": "List Campaign Templates", @@ -34569,7 +34569,7 @@ }, "response": [ { - "id": "16b7120a-446a-49b6-8ff4-cc722e2c735c", + "id": "f3543c9c-c20e-46f5-be28-59033d8c5cd6", "name": "List of campaign template objects.", "originalRequest": { "url": { @@ -34658,7 +34658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f28ef1e-8348-40bc-80b3-9444b271254c", + "id": "0c88fa5a-8d63-478d-95e6-3e98c815f539", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -34747,7 +34747,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09f8a480-2ea9-45cf-b6bd-1db1f14c58b0", + "id": "85aab581-a517-4c23-be19-f0be3566acec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -34836,7 +34836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3e5d7d5-3c77-4084-a647-28d06ab631be", + "id": "1ed7a9b8-3ec7-400d-bdf7-f20433afdaec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -34925,7 +34925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34cda414-b755-4fd6-b18d-63bcbd69c5c1", + "id": "13cf8760-a584-47f5-afc0-41f5f6ba35c7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35014,7 +35014,7 @@ "_postman_previewlanguage": "json" }, { - "id": "916617ac-e21a-4fa0-9275-3466c5ed223f", + "id": "25576ac5-2890-44c6-8c7a-3d96056b0370", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35109,7 +35109,7 @@ } }, { - "id": "a58fa272-f7a6-4897-b1ed-9c95e4a261c7", + "id": "ca9787c9-162d-47a8-8173-be3349e072c1", "name": "Update a Campaign Template", "request": { "name": "Update a Campaign Template", @@ -35163,7 +35163,7 @@ }, "response": [ { - "id": "83ab92c1-5c33-451c-9810-b711cea87f5e", + "id": "a2eaa8e2-9748-453d-985f-175a7aa7107e", "name": "Manager", "originalRequest": { "url": { @@ -35220,7 +35220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "251d34f4-6d4e-494a-9f88-c8f86b2a7983", + "id": "b8cdbf7a-ed89-4d8f-90e9-4ef933c8a388", "name": "Search", "originalRequest": { "url": { @@ -35277,7 +35277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "169f9653-6207-4c13-8f20-45127f99fc76", + "id": "cf65fee3-1447-4ade-b10a-18dcb6848585", "name": "Source Owner", "originalRequest": { "url": { @@ -35334,7 +35334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d0eacdc-e131-42a3-97af-5d8d4f74678a", + "id": "fd49991a-25fa-47c4-a30a-207e38732a80", "name": "RoleComposition", "originalRequest": { "url": { @@ -35391,7 +35391,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef153c97-2da5-49bf-b433-f22cd8fab107", + "id": "4a691baf-6a82-4a16-8b10-f60a7fda528c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -35448,7 +35448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cd18b66-4821-46b0-bf26-f1ba913f2ffa", + "id": "1aabc010-67ec-43b3-ad01-f0746407e3df", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -35505,7 +35505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8ed0634-144f-4463-9cba-bcdb11f4b38c", + "id": "20360559-f6e4-4cf5-b0ad-aeca2c18d77c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -35562,7 +35562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c55d456-a6f6-4738-a969-928293a2af39", + "id": "673e167a-3b2e-4393-a502-95ccba115d1e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -35619,7 +35619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e910f128-7d2b-4c7c-9daf-30bee11b83f3", + "id": "c9c4c336-b946-4fdf-a9e1-cccee02c0477", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -35676,7 +35676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "44ae2c28-b520-47f4-8ec7-ddd1755a68ce", + "id": "2705f30e-3968-45f3-b7d4-99df11cc3830", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -35739,7 +35739,7 @@ } }, { - "id": "c857df1a-b2d2-4060-80db-62d545787a3e", + "id": "9976c126-6e7e-43ba-8a16-e7c913011fd3", "name": "Get a Campaign Template", "request": { "name": "Get a Campaign Template", @@ -35780,7 +35780,7 @@ }, "response": [ { - "id": "dcb9ae4c-4fbb-437f-bcfa-0324fd784e41", + "id": "e1682401-2700-450f-a540-5b7bb7a759d5", "name": "Manager", "originalRequest": { "url": { @@ -35824,7 +35824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "808ace3d-8344-478b-8497-2ae51d1e47da", + "id": "0d3efe34-0dab-4ff6-af4c-8dc091e4431b", "name": "Search", "originalRequest": { "url": { @@ -35868,7 +35868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "916fdd64-dbe9-4eab-9891-c67a9df70611", + "id": "f6a39cd5-337f-476e-97b5-e9130ddb6a7c", "name": "Source Owner", "originalRequest": { "url": { @@ -35912,7 +35912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6830696-7ca3-4f90-af56-a92a54027245", + "id": "02b3bd8a-2cf9-4978-bed3-5449b9617db6", "name": "RoleComposition", "originalRequest": { "url": { @@ -35956,7 +35956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "561a8220-1cd8-4b68-8902-24b4e0ab5f35", + "id": "c4a6ace1-c0e6-47ae-b0f8-f4c12fb05e2c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36000,7 +36000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0b770dc-f02d-4c99-864e-529482ca5996", + "id": "dcb1f145-6e81-4dd9-a971-d330433896be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36044,7 +36044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a73fca4-9a5b-4528-ae79-ec725c34b9d3", + "id": "4ce1295e-7f7c-4da7-8d5b-d873a83cb48c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36088,7 +36088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccbff421-0d4b-4f0b-84a1-c794b1f7a53e", + "id": "ee6b308a-a5ce-40c3-8804-85eb7aaff1ef", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36132,7 +36132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7bdf31d-0e3c-4788-9388-a282a2420e89", + "id": "455e2f5c-b2a9-4556-8a2a-c7d51c982bff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36176,7 +36176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "106fccc3-1a11-4ff0-93bc-cd5805e495c2", + "id": "1a3e9432-b746-4b78-a802-5fd8b479af15", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36226,7 +36226,7 @@ } }, { - "id": "73895270-c130-48e8-8e42-f023b0af4ee0", + "id": "fa6e35b9-30a0-438f-915a-f2e86c84d695", "name": "Delete a Campaign Template", "request": { "name": "Delete a Campaign Template", @@ -36267,7 +36267,7 @@ }, "response": [ { - "id": "d74be467-7997-4bda-ab16-1b32605e995e", + "id": "2702a5b7-ae35-407b-8d78-e559075bedbf", "name": "The campaign template was successfully deleted.", "originalRequest": { "url": { @@ -36301,7 +36301,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b7141ace-a5ed-49fb-b502-6db8dddf5c45", + "id": "1a65090d-79bf-48f0-ae6a-a56fd5aacd73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36345,7 +36345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c34f17b-10a2-4025-9643-0a2677234d97", + "id": "37b80aac-9bb0-430d-b40f-e87fcf9e6336", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36389,7 +36389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27837137-b9f9-41f4-b93a-b54da1faf3e9", + "id": "becc8622-6906-460a-a594-11fcb2264027", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36433,7 +36433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c947595-12fe-4493-bd86-ff20d5bf5e1a", + "id": "263e0c53-8e61-4b89-9f1f-7ef6f3555a4c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36477,7 +36477,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05c17752-b6e2-4972-86fe-4e5c786c2896", + "id": "29644190-6f32-4431-bdc3-9afaa7c94764", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36521,7 +36521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5744fd-6ac0-4925-969d-d9d78245df77", + "id": "e68f3935-fa1c-4ba8-afc8-0b61a09f8ef4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36571,7 +36571,7 @@ } }, { - "id": "9b6ce82a-b2a2-4076-9966-87437a273886", + "id": "37b7fba6-4bae-48cd-9c43-b56b9faae919", "name": "Get Campaign Template Schedule", "request": { "name": "Get Campaign Template Schedule", @@ -36613,7 +36613,7 @@ }, "response": [ { - "id": "6be1f352-d20a-4d92-9f27-343a3293499b", + "id": "4dac9168-f330-423f-81c0-365c0cde8ad6", "name": "Current schedule for the campaign template. See the [Set Campaign Template Schedule endpoint documentation](https://developer.sailpoint.com/docs/api/v3/set-campaign-template-schedule) for more examples.", "originalRequest": { "url": { @@ -36658,7 +36658,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbd76145-062c-424a-9f53-be04f2d33812", + "id": "47097762-b8b9-44b1-a222-116e4dcc0c7d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -36703,7 +36703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79e3b02c-d058-4930-ac71-d2854d913607", + "id": "01e46b5b-11b6-4d9d-aac1-d889296dce8a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -36748,7 +36748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1511479f-b4bf-4094-b3bb-bbbcb1ed8ce4", + "id": "939a6d66-ed37-411f-8d7e-2ad659f840d4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -36793,7 +36793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09880ce8-6231-463b-b718-2992f07a2d15", + "id": "df46bb4d-772c-47c9-b850-d9b3de78a64f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -36838,7 +36838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b884f44-1f0d-4bc5-9e86-d91711ab96ce", + "id": "f266fa9b-87e6-4b82-93c1-2c814fa4d2d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -36883,7 +36883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08078f0e-1148-4a32-867f-457cd52d5150", + "id": "264aa943-8d93-4126-a86e-25316873143f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -36934,7 +36934,7 @@ } }, { - "id": "3941570b-07ea-4c58-9944-cc98fa5f5cd0", + "id": "907a8e15-1573-49bd-a866-7c1542793a11", "name": "Set Campaign Template Schedule", "request": { "name": "Set Campaign Template Schedule", @@ -36989,7 +36989,7 @@ }, "response": [ { - "id": "fd3748f6-1fc5-4a7b-9eab-54b6078ceaac", + "id": "41ce98d7-b079-442b-ac26-3060411e74f2", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -37037,7 +37037,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3b4baede-bd7a-4b85-a625-0c92346d439b", + "id": "b221d3ce-62a0-40a0-a705-794f03909fc0", "name": "Monthly", "originalRequest": { "url": { @@ -37095,7 +37095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eae23a0-bd5c-4d68-a000-119f446ff22f", + "id": "c3f776e3-555e-4699-b89b-fc8f79a9f845", "name": "Once a year", "originalRequest": { "url": { @@ -37153,7 +37153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04285e53-c6c3-43d5-b18f-11b39ca36610", + "id": "5a39d4ac-1d0b-4017-a644-19f2da351c50", "name": "Quarterly", "originalRequest": { "url": { @@ -37211,7 +37211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e99fab30-7d58-473b-8571-644af736b301", + "id": "01a7a8fe-bf60-4432-9f12-101869479682", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -37269,7 +37269,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69cd813d-ea21-4c85-af1f-41d8f25df251", + "id": "89259de3-3eba-49f3-8872-4debe8c7f877", "name": "On a Specific Date", "originalRequest": { "url": { @@ -37327,7 +37327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b57eb67c-d16a-443c-a216-1cc82e6a9959", + "id": "8b7618c7-5325-4dce-9d91-89b6b0ded759", "name": "Monthly", "originalRequest": { "url": { @@ -37385,7 +37385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba6be10e-f46d-4fea-84c4-fcbefe5c211e", + "id": "913d3e17-0513-4842-b741-9bce3fe1a8bd", "name": "Once a year", "originalRequest": { "url": { @@ -37443,7 +37443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c39a9b8-4e43-4b3a-9e9d-b98db0c27a32", + "id": "c8ca8fce-1a2b-4862-9dc0-07f792dce880", "name": "Quarterly", "originalRequest": { "url": { @@ -37501,7 +37501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "074d774c-ed9c-4afe-8e38-15cae2493a92", + "id": "e28e139f-0eb0-451b-b809-43958c8e0734", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -37559,7 +37559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc06fec-9b77-49d6-bf41-982b3b60723e", + "id": "685bf61c-ef15-4906-8aeb-427900a7cac7", "name": "On a Specific Date", "originalRequest": { "url": { @@ -37617,7 +37617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5a1b127-b15d-472c-adf2-75a35cbfb3d5", + "id": "524769e7-3520-4971-b526-8fe14a8e6bd0", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -37675,7 +37675,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b69f387-18ca-42d4-9861-6c25d59224f1", + "id": "2ff9e181-6c24-44ae-a345-206ba6d1a043", "name": "Once a year", "originalRequest": { "url": { @@ -37733,7 +37733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d89e5ec-5969-4fa2-945c-22218f587c2e", + "id": "c3d7c57d-c6e5-49f6-ba1c-f809947ac02b", "name": "Quarterly", "originalRequest": { "url": { @@ -37791,7 +37791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b6c7086-74ef-458e-a31a-3c782c7150ea", + "id": "e28d04a6-b67b-4985-b7c5-0dbf3d893e0a", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -37849,7 +37849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ddfe19-684a-4f91-ae6e-befa7bb07013", + "id": "fb3e39a5-fd45-4629-a957-c5cf9d0b4946", "name": "On a Specific Date", "originalRequest": { "url": { @@ -37907,7 +37907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37e54e0b-c3dd-40d7-b8cf-b5b821c4963a", + "id": "390a393c-6cd9-4d61-bae3-70619c0f1d2b", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -37965,7 +37965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e739ee6-0caa-4633-aba7-b7623746557b", + "id": "32dba4da-bdd5-467f-8607-3fc771529ea5", "name": "Once a year", "originalRequest": { "url": { @@ -38023,7 +38023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "358db68b-b70d-46c9-8d50-857c27bdf0dd", + "id": "e3bb1e12-c7a5-4be0-b34e-c1d9c4c6751e", "name": "Quarterly", "originalRequest": { "url": { @@ -38081,7 +38081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d48b828-9a1b-46b4-abe1-7405a93257cf", + "id": "e5beb4ea-43ba-4625-b711-4de73651c5ca", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -38139,7 +38139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77278dcf-3d9d-4efd-bce3-fc492432f048", + "id": "4f5691d5-7f73-4d5a-84ed-7871fdd47a50", "name": "On a Specific Date", "originalRequest": { "url": { @@ -38197,7 +38197,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a0ecf54-3a1e-46f8-8017-7d98daae6c50", + "id": "45b9b345-46ec-4a4a-9ff7-ccd2c0e0787a", "name": "Monthly", "originalRequest": { "url": { @@ -38255,7 +38255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5bd0fdf-8586-4edb-88d4-bed0b2aaee4a", + "id": "9979a863-04fa-4f0c-bba8-677665bd4b58", "name": "Once a year", "originalRequest": { "url": { @@ -38313,7 +38313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3ec3b8d-8769-4be4-af45-22017791f3ed", + "id": "6c708917-8ad1-4a02-8195-946286c2cf08", "name": "Quarterly", "originalRequest": { "url": { @@ -38371,7 +38371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a1050561-7809-4880-84d0-a85a19f448fc", + "id": "eaa4394f-caff-4ed2-9844-f3dbe2a976af", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -38429,7 +38429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac89c354-858b-4bd7-9815-91857a27b9ec", + "id": "4f136cff-9c77-4893-923b-43f514a7b8c2", "name": "On a Specific Date", "originalRequest": { "url": { @@ -38487,7 +38487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "421ff48d-408d-4613-8058-ed769e4554ad", + "id": "5f4feeb4-e14a-494b-8427-a4c22dd077ad", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -38545,7 +38545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af2ffab-ccb6-467d-a984-cae945f9b790", + "id": "352df25d-29f8-443c-b175-8030f8064e2c", "name": "Once a year", "originalRequest": { "url": { @@ -38603,7 +38603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f005702-bd8a-4052-b6e1-66c5a8e1180c", + "id": "8ca1df7f-e6dc-488d-a23a-aa932322a834", "name": "Quarterly", "originalRequest": { "url": { @@ -38661,7 +38661,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e9bb8f2-41f0-4a70-a220-1edd2079e618", + "id": "1c5ad7aa-e447-4c2c-9b32-71e7778f04e5", "name": "Yearly on Specific Days", "originalRequest": { "url": { @@ -38719,7 +38719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c1fdb89-5dcd-4cfe-82d8-a187354b06a0", + "id": "a34294aa-fe10-4cdf-900a-fdcf58da1fe4", "name": "On a Specific Date", "originalRequest": { "url": { @@ -38783,7 +38783,7 @@ } }, { - "id": "723571dd-132c-4fb7-8f03-bc32c3e2b4e9", + "id": "1be6cb65-cd4b-457c-8671-cec1751f7991", "name": "Delete Campaign Template Schedule", "request": { "name": "Delete Campaign Template Schedule", @@ -38825,7 +38825,7 @@ }, "response": [ { - "id": "0bb1a197-0b4d-47ef-86ec-4384e67bf5ff", + "id": "06177e28-09bb-4729-b01e-4fec3a3b43a3", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -38860,7 +38860,7 @@ "_postman_previewlanguage": "text" }, { - "id": "351492e6-d3f5-4a82-87d8-f863bc5457b5", + "id": "322b132e-408b-4b97-834c-bf8e6e85770a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -38905,7 +38905,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98411fa8-2e17-43db-9bc5-b5e1dbfdccbb", + "id": "c39e4e33-006a-45ce-9f03-40fa395f6033", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -38950,7 +38950,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d8ac336-41d2-4715-89db-f9ad88a05656", + "id": "a624f644-c247-44a6-bc56-d0dac4820fd7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -38995,7 +38995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd6725c7-66d9-4b25-af9d-c713a53e6ee2", + "id": "260e98eb-e12a-47cc-aabe-8a3d03c33a35", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39040,7 +39040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "312cc496-4087-4392-af35-32fca5dd7f5b", + "id": "3fb046cf-343d-4234-aeb4-a7cdf58a940f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39085,7 +39085,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c7ec4ae-ca9a-4abb-8af1-0964e133e934", + "id": "edb39521-04e1-4260-be65-7404fe2b6e8e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39136,7 +39136,7 @@ } }, { - "id": "1c9d24cc-13e8-45ec-9518-137403a47e55", + "id": "a0b42719-2d97-43bf-bee6-c549bd99059f", "name": "Generate a Campaign from Template", "request": { "name": "Generate a Campaign from Template", @@ -39178,7 +39178,7 @@ }, "response": [ { - "id": "259f785f-c3f0-44c5-a77d-46ee8f48582f", + "id": "5b17a682-366a-4e51-baef-ff3f8b0b38e0", "name": "This response indicates that a campaign was successfully generated from this template, and the API returns a reference to the new campaign.", "originalRequest": { "url": { @@ -39223,7 +39223,7 @@ "_postman_previewlanguage": "json" }, { - "id": "934743aa-79ee-4739-a45f-48e808ce9111", + "id": "f6c243c1-4969-4954-a6aa-1dd2bf8a5ac5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39268,7 +39268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce099625-d8b6-4b3d-bd67-a43dec7664b3", + "id": "c3f3d998-88c7-4bb2-a5aa-445433b52b44", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39313,7 +39313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f775f7da-3d65-4b62-95d3-a7e9a380f1b3", + "id": "982bfd36-9e47-458f-b801-8af834d517fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39358,7 +39358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11ec3853-af2b-49b5-af13-c412ddca1657", + "id": "3e427104-c091-453f-ba3d-8e37db790291", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39403,7 +39403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e71e05e-ab2c-41a6-9f1e-3249491f3c91", + "id": "5eeb22b8-f118-452b-8b97-c141146087c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39460,7 +39460,7 @@ "description": "Use this API to implement certification summary functionality. \nWith this functionality in place, administrators and designated certification reviewers can review summaries of identity certification campaigns and draw conclusions about the campaigns' scope, security, and effectiveness. \nImplementing certification summary functionality improves organizations' ability to review their [certifications](https://documentation.sailpoint.com/saas/user-help/certifications.html) and helps them satisfy audit and regulatory requirements by enabling them to trace access changes and the decisions made in their review processes. \n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese certifications serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign. \n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers. \nOnce this certification has been completed, Identity Security Cloud would provision all the access the user needs, nothing more. \n\nCertification summaries provide information about identity certification campaigns such as the identities involved, the number of decisions made, and the access changed. \nFor example, an administrator or designated certification reviewer can examine the Manager Certification campaign to get an overview of how many entitlement decisions are made in that campaign as opposed to role decisions, which identities would be affected by changes to the campaign, and how those identities' access would be affected.\n", "item": [ { - "id": "2467138f-4e81-4a78-bc23-b886eb784eac", + "id": "53e596aa-7d4a-44f7-bf9f-c26cd9cd2900", "name": "Summary of Certification Decisions", "request": { "name": "Summary of Certification Decisions", @@ -39512,7 +39512,7 @@ }, "response": [ { - "id": "b3f22d21-6ece-4c9d-8860-8f6b212c11c9", + "id": "592dbb82-c007-406b-8442-96c334533831", "name": "Summary of the decisions made", "originalRequest": { "url": { @@ -39567,7 +39567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95fc14bb-81b6-450a-adb2-12b4239ee6b7", + "id": "2df6bd2a-05f2-47d4-8933-d7f51c3f8717", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -39622,7 +39622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9f7fcca-ff72-452c-baf8-57f2778f7589", + "id": "d37f28c4-47d2-4ff1-b305-6789cd5e989d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -39677,7 +39677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba220a91-2a9f-4d47-882e-738dd8852642", + "id": "43341c40-a25b-427f-8cb9-d1327c0007e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -39732,7 +39732,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac4ba544-bb7d-4131-bc60-49866ed30bdd", + "id": "0d94c808-1cb1-48b9-879f-64865931b468", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -39787,7 +39787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bbcb84b-61fb-4666-994c-6a5b4079cfe7", + "id": "5807df6d-dc07-4336-8e5a-1346780ce7b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -39842,7 +39842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8713be5-50da-409d-bf00-c37d7ba2977f", + "id": "32dd4b98-6084-49be-84e5-e4747f5121b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -39903,7 +39903,7 @@ } }, { - "id": "74e65465-3a58-4647-bffe-7194d91f3f15", + "id": "29d51e96-c481-4609-a99e-45cae943eba7", "name": "Identity Summaries for Campaign Certification", "request": { "name": "Identity Summaries for Campaign Certification", @@ -39991,7 +39991,7 @@ }, "response": [ { - "id": "0b896ec2-f86e-4a64-a33e-fc317de5c2d6", + "id": "c27bae39-8e38-4e6e-932b-991df34bd57d", "name": "List of identity summaries", "originalRequest": { "url": { @@ -40082,7 +40082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43f57e4e-4b58-4613-a19b-d99402c4ab14", + "id": "dfee7655-7ebe-44f9-8086-48e4c6f02b1e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40173,7 +40173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c129e149-da6e-4cf6-9086-2bcff73f46ac", + "id": "d5388081-6e4e-41de-ba48-80b2d9e60cba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -40264,7 +40264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed180639-5199-47e9-9b3a-2d22cc5ee6e5", + "id": "7e55248d-a0c6-4c1e-a382-8bb2a2d215a1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -40355,7 +40355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cb832d5-6094-4773-8a6c-5516278f633b", + "id": "26ba80ea-6bef-41c7-a22d-37e72829478a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -40446,7 +40446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccb88875-dcb0-4c26-a485-861cec151245", + "id": "7b5c1389-662d-45b9-bda5-6d5c321af846", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -40537,7 +40537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "948b130f-bd87-45e6-9029-d6cf8c8c5047", + "id": "beed9106-0a9a-4c1a-8d2b-6ff4f446ae41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -40634,7 +40634,7 @@ } }, { - "id": "cb3af827-a1a8-4371-a121-0f8b83fe6903", + "id": "dafa92d0-b2d7-49dd-8be8-0cbcc2c8e592", "name": "Access Summaries", "request": { "name": "Access Summaries", @@ -40733,7 +40733,7 @@ }, "response": [ { - "id": "32b50f63-2700-495a-a696-c46cc00196ce", + "id": "9b4e6986-ad00-4cbf-adf1-768452ccbd87", "name": "List of access summaries", "originalRequest": { "url": { @@ -40825,7 +40825,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28ec51a2-7fa4-4a89-9e98-c84168fa8e7d", + "id": "5896b05d-7830-4037-9017-80803afd92a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -40917,7 +40917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b7b9530-8b3b-4a3c-8b7c-4288e67fd685", + "id": "877cc753-3842-4d12-ba4d-bb07e382c44b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41009,7 +41009,7 @@ "_postman_previewlanguage": "json" }, { - "id": "68f33f0d-cc7e-4424-a7fa-7821a7c572ac", + "id": "e0d433f7-5166-4528-b8cb-2278e4ed0268", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41101,7 +41101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e71c552-24c6-45eb-a29e-7434a121a263", + "id": "5f59baab-0718-4214-a226-bbf336981079", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41193,7 +41193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbc5caa2-4941-46f4-9a80-8de34dca9358", + "id": "417c771c-3262-46e5-b6d9-b87782a3c2e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41285,7 +41285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c4e229-c3de-4448-8a2c-174e67b3071c", + "id": "1274291e-5634-4e58-8d53-a1c15a70e936", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41383,7 +41383,7 @@ } }, { - "id": "b047ec7c-5e5c-4446-9112-824a4b15be30", + "id": "e274312d-49a8-429b-adad-33b39f8e56c9", "name": "Summary for Identity", "request": { "name": "Summary for Identity", @@ -41436,7 +41436,7 @@ }, "response": [ { - "id": "23b2d7d4-cc57-4103-a62a-bcf9a14f1101", + "id": "feb3dbdf-8b8d-47c8-a043-14654e61ab2a", "name": "An identity summary", "originalRequest": { "url": { @@ -41482,7 +41482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4d5693d-ddc7-4c80-bb4f-aca14aa0046b", + "id": "d48a013a-ca4e-400c-8b4d-f9bfdc1d5288", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -41528,7 +41528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0d40466-58ab-46c5-9245-254c21ad2ea9", + "id": "421b2e4e-1482-4fba-b0c6-d4d10daeed0b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -41574,7 +41574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9298e263-0e5a-495a-b0de-e07ea7a8571b", + "id": "292e97a1-1423-4d16-89cc-4ad6fa58c521", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -41620,7 +41620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "08293738-c408-4f45-8d3b-53a8c966067c", + "id": "059e3831-e277-4692-b3a7-5167f479058a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -41666,7 +41666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5fd66c9-91fb-48ad-a608-c9e98ce81225", + "id": "e79dd230-b781-484e-a06e-3870a7905209", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -41712,7 +41712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f84738e-0ba0-4cb2-952d-024af16ba819", + "id": "456a4d49-3b8c-4e3a-b4c1-3d95a8695142", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -41770,7 +41770,7 @@ "description": "Use this API to implement certification functionality. \nWith this functionality in place, administrators and designated certification reviewers can review users' access certifications and decide whether to approve access, revoke it, or reassign the review to another reviewer. \nImplementing certifications improves organizations' data security by reducing inappropriate access through a distributed review process and helping them satisfy audit and regulatory requirements. \n\nA certification refers to Identity Security Cloud's mechanism for reviewing a user's access to entitlements (sets of permissions) and approving or removing that access. \nThese serve as a way of showing that a user's access has been reviewed and approved. \nMultiple certifications by different reviewers are often required to approve a user's access. \nA set of multiple certifications is called a certification campaign.\n\nFor example, an organization may use a Manager Certification as a way of showing that a user's access has been reviewed and approved by their manager, or if the certification is part of a campaign, that the user's access has been reviewed and approved by multiple managers. \nOnce this certification has been completed, Identity Security Cloud would provision all the access the user needs, nothing more. \n\nOrganization administrators or certification administrators can designate other Identity Security Cloud users as certification reviewers. \nThose reviewers can select the 'Certifications' tab to view any of the certifications they either need to review or have already reviewed under the 'Active' and 'Completed' tabs, respectively. \n\nWhen a certification campaign is in progress, certification reviewers will see certifications listed under 'Active,' where they can review the involved identities. \nUnder the 'Decision' column on the right, next to each access item, reviewers can select the checkmark to approve access, select the 'X' to revoke access, or they can toggle the 'More Options' menu to reassign the certification to another reviewer and provide a reason for reassignment in the form of a comment. \n\nOnce a reviewer has made decisions on all the certification's involved access items, he or she must select 'Sign Off' to complete the review process.\nDoing so converts the certification into read-only status, preventing any further changes to the review decisions and deleting the work item (task) from the reviewer's list of work items. \n\nOnce all the reviewers have signed off, the certification campaign either completes or, if any reviewers decided to revoke access for any of the involved identities, it moves into a remediation phase. In the remediation phase, identities' entitlements are altered to remove any entitlements marked for revocation.\nIn this situation, the certification campaign completes once all the remediation requests are completed.\n", "item": [ { - "id": "311966f1-f498-415a-a061-21f7eb8ec02d", + "id": "7fa880bb-52bb-48b8-81a0-6a9b25b20d9d", "name": "List Identity Campaign Certifications", "request": { "name": "List Identity Campaign Certifications", @@ -41854,7 +41854,7 @@ }, "response": [ { - "id": "c2b67542-83fb-4867-a9ab-c369186efd73", + "id": "115962b6-1a26-439f-89f9-aa625d7a4800", "name": "List of identity campaign certifications.", "originalRequest": { "url": { @@ -41952,7 +41952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0992b461-f5f2-436a-88e9-cccc495c1a73", + "id": "fc281c5b-2937-4dbd-96c2-c8ddb5a82f84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42050,7 +42050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b96a3304-9d66-440f-a213-e7fae0c68559", + "id": "4a65460a-40f0-4f24-8610-8824c55abbb3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42148,7 +42148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fddaf206-8270-4294-bec1-628b583c9048", + "id": "89722cbd-cebb-4c22-b857-1a49c18da68a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42246,7 +42246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b15a083-ccdd-4b19-b75a-ea00279b4ad9", + "id": "f29e368c-0876-4ea8-a227-c615033dcd37", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42344,7 +42344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6469cd55-0ffe-47fb-be87-7a69fddd98aa", + "id": "9d321783-9c43-462a-ae08-f69480b6f2c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42448,7 +42448,7 @@ } }, { - "id": "e0428a77-1ee1-41cf-ad35-52bb31a79af8", + "id": "9c874f2f-02ce-4ce2-9059-97084444c153", "name": "Identity Certification by ID", "request": { "name": "Identity Certification by ID", @@ -42489,7 +42489,7 @@ }, "response": [ { - "id": "e6a5d113-a476-4950-a78f-5031f241b729", + "id": "d0f3af54-d9ff-49c7-a69d-2b719a170f4c", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -42533,7 +42533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a1f4749-c445-4ff5-bdc9-6c40056dcca7", + "id": "56c44568-caeb-4b17-9797-236dd41b54af", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -42577,7 +42577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec0e847c-45f5-4024-a8d6-2470512553a9", + "id": "f67f1550-a065-4eb4-ae2e-39df55f8aed3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -42621,7 +42621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d680010-5f37-4f20-b367-a2672cb17d3f", + "id": "6d54f7a9-346b-41fe-bd7e-c754babfb8a6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -42665,7 +42665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c08c3482-0823-40b9-8c8a-cfacb0e38aef", + "id": "716abf3d-1e67-4f2b-92bf-4aaffbcae189", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -42709,7 +42709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62dd3cd8-3f19-4f62-81d2-c8088b6d6514", + "id": "eb11c3c8-4e31-4dcf-a70b-cddbcfb59b3a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -42753,7 +42753,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26fc59df-dd20-4197-a0e0-86b53f09079d", + "id": "ca346e3e-9ac3-4e3a-8ddf-d884c2c12be9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -42803,7 +42803,7 @@ } }, { - "id": "fbb010ee-6b55-43e9-83f9-bf7dce760cd5", + "id": "efc9ac35-c7af-4071-9379-64c32e78a2db", "name": "List of Access Review Items", "request": { "name": "List of Access Review Items", @@ -42918,7 +42918,7 @@ }, "response": [ { - "id": "fbd327c0-9dd7-49ab-bb4a-83525545e9aa", + "id": "430e7f2e-8aa6-481d-8d96-5d36488727ba", "name": "A list of access review items", "originalRequest": { "url": { @@ -43036,7 +43036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a2aa02f-3167-4842-bdf7-dfe54df81af4", + "id": "011f250a-88d6-437c-a3c5-813c8b4b7c41", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43154,7 +43154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57f00eb8-7bc9-46d0-8299-9e1c6f77caf1", + "id": "a54b9daa-16b5-4c6c-bb50-432e4d0d40e0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43272,7 +43272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c4cbe2-051f-437b-9543-c8f7efef28ea", + "id": "8b4d36c8-37c6-45ba-a58a-e8648a9d3fea", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -43390,7 +43390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f46e8526-72cc-4bdf-8f50-7d08a5390894", + "id": "f54343ad-09f9-40f7-bcf7-a60cf7dc9b59", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -43508,7 +43508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a9e7b46-15ce-4765-bd8a-550d291059ff", + "id": "d67bc3e5-3b15-4eb4-ab48-d0ecb93c6882", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -43626,7 +43626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c3f802b-b956-491c-b232-358c27999056", + "id": "d0ed4bb9-47fe-4eb0-bc08-18d76ae56f08", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -43750,7 +43750,7 @@ } }, { - "id": "2afa3ffc-d28e-494c-9b96-e1b2092af971", + "id": "62b6d0b5-9ff4-4b30-a46c-14585d09b9d5", "name": "Decide on a Certification Item", "request": { "name": "Decide on a Certification Item", @@ -43805,7 +43805,7 @@ }, "response": [ { - "id": "a4a31d21-b6f5-4cab-a7d8-d6e396517d25", + "id": "7c0067ff-9567-4e34-9317-f7d630f89ba7", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -43863,7 +43863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "005f4870-909c-4e52-add3-c198b552cc57", + "id": "cf25f547-b3c7-4fc9-9bf6-c929662f65eb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -43921,7 +43921,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51a23d92-1a30-4601-9556-839e1a63e20c", + "id": "ddbbba2f-137d-4fce-87c5-444d05766388", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -43979,7 +43979,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57336406-534e-4d8a-aa1a-8a5a3191167d", + "id": "0cd7fdcf-6721-45f6-80fa-22b24fe0efc4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44037,7 +44037,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33c0d826-55dc-4651-8816-0e22f816c67b", + "id": "1c0ffb2c-d742-4c0e-a9d9-cee15455a254", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44095,7 +44095,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff9a9c35-de4c-4877-98c7-522afdc1c83a", + "id": "93fa771d-b497-4d82-aecc-33282821de27", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44153,7 +44153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7f74a75-bf4e-48dc-9ccb-ef23a8b549d4", + "id": "765a08f3-d5d5-43ac-aad2-d941704ccf31", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44217,7 +44217,7 @@ } }, { - "id": "4515b0a7-1e06-44e1-9014-61888fd67e37", + "id": "eff07b89-c7db-49ba-adba-1ecd9ca7bf5f", "name": "Reassign Identities or Items", "request": { "name": "Reassign Identities or Items", @@ -44272,7 +44272,7 @@ }, "response": [ { - "id": "cb143c54-d8a8-41a8-a597-185f6a37aac3", + "id": "af9faade-1b05-4e1d-a29c-4bbe540753d6", "name": "An identity campaign certification details after completing the reassignment.", "originalRequest": { "url": { @@ -44330,7 +44330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a363296e-93e6-45d7-b4ff-feae6d953323", + "id": "21a65399-39ec-42e1-a0b9-60f8925b2dba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44388,7 +44388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa70547a-b893-4f49-a514-0c3c5ba58caf", + "id": "d1b40bd0-f99d-4c8f-b965-75ddc7e8282c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44446,7 +44446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c59cefa3-cfc8-45ab-8f35-b5077a59d629", + "id": "98324cf4-bc32-4207-b827-97cfdc4bf098", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44504,7 +44504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "632095e3-636b-41e1-b275-855047730bb7", + "id": "8a2c3f4c-e6c0-4cb7-8002-6129a7e5d6e3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44562,7 +44562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b2b95c6-45bf-4bab-9a8a-d4493dab044a", + "id": "53d57862-8ca4-4dc8-9ad7-e3e3306aafd6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44620,7 +44620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03992b20-df74-4383-be01-9a43229cffc6", + "id": "ea824350-8e3b-44bc-bce1-0684f34a2b33", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -44684,7 +44684,7 @@ } }, { - "id": "10641759-fd9b-4b3f-adbe-a7c9daab8285", + "id": "3faa18af-eb49-433c-9d9d-8b81a1e29ab5", "name": "Finalize Identity Certification Decisions", "request": { "name": "Finalize Identity Certification Decisions", @@ -44726,7 +44726,7 @@ }, "response": [ { - "id": "0c4db626-a1bd-457b-a7aa-d3c39c1b4f4f", + "id": "dd8cfd1b-3009-4759-b6c6-cca508ab8694", "name": "An identity campaign certification object", "originalRequest": { "url": { @@ -44771,7 +44771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a63d18a-1b92-48fe-b1ae-3aacd5d5c70a", + "id": "1403fb4b-ad81-45cc-b316-353bd5fe8438", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -44816,7 +44816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0ecf00d-58b7-4228-9100-3d3a48b174fb", + "id": "81d506cf-7761-4404-b9b3-35450256d420", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -44861,7 +44861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09e26434-6817-4172-99eb-ce4fd0f4a6cf", + "id": "0ece78eb-33cb-46ff-9cca-f036142be183", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -44906,7 +44906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1aa28902-cb73-45dc-8912-afc4d54cb149", + "id": "b58f8b85-3701-4e92-90d4-0ddcb2acfbbb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -44951,7 +44951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec231861-e1f5-44a9-8bb0-12f3ede245ab", + "id": "565bf5d5-b73c-4fa4-9027-5de990a10a53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -44996,7 +44996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdff13a1-b05a-474d-9253-c97041b699cb", + "id": "c5808e64-6adb-4563-8679-67f8a98db963", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45047,7 +45047,7 @@ } }, { - "id": "fdd97cfc-29f3-463b-b9aa-98368495d98e", + "id": "1f13e0d4-e474-460b-b02c-4f9243b30b33", "name": "Permissions for Entitlement Certification Item", "request": { "name": "Permissions for Entitlement Certification Item", @@ -45138,7 +45138,7 @@ }, "response": [ { - "id": "b00e6e1f-6c5f-4bf9-8b9c-4eb5ffd72f1b", + "id": "16b2a00c-223b-438c-9c6c-349342b5645f", "name": "A list of permissions associated with the given itemId", "originalRequest": { "url": { @@ -45222,7 +45222,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61e4b6c5-4489-47c9-b29f-8fcdd94b841c", + "id": "07cd56f1-7af2-494c-a28e-b00a4de9882c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -45306,7 +45306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a87532d-3580-4fa8-a92b-cdaeb4b313aa", + "id": "71f3bc1f-1beb-4335-95d3-56c0014c43b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -45390,7 +45390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95707e7c-3b43-45fa-851e-452d45419c1a", + "id": "d4ce1eba-883b-4633-91e1-145528bad249", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -45474,7 +45474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "543a28b7-9ebd-4749-848c-60a9ea49f03e", + "id": "150e49d7-87b5-4022-83c2-6aa1892b7688", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -45558,7 +45558,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d252d5e-159a-478a-9822-2b58a0322bcd", + "id": "2fe9c348-4241-4860-ac06-424bf75211ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -45642,7 +45642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fa51915-79ae-4082-ac96-7c19049e4de3", + "id": "27979fe4-b30c-4145-a31f-4919fecad121", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -45732,7 +45732,7 @@ } }, { - "id": "7ba7a114-25e4-40e2-a4f8-a4696ad3d6d5", + "id": "2eb0d606-18a3-425d-9e5f-1d3cb9422965", "name": "List of Reviewers for certification", "request": { "name": "List of Reviewers for certification", @@ -45820,7 +45820,7 @@ }, "response": [ { - "id": "5b5f3f36-1a5f-47aa-8f0d-caeb732f3132", + "id": "3bc4c223-83ed-4537-b8ed-87de80f5a3d8", "name": "A list of reviewers", "originalRequest": { "url": { @@ -45911,7 +45911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c61537f-5033-4c81-a705-1228851eb658", + "id": "e0f0885c-06d3-4a91-9d62-443a28a59752", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46002,7 +46002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f20375e-7071-4277-9972-e06e7997749e", + "id": "d0e69306-415b-46a2-8703-25e67234f722", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46093,7 +46093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "531f8c21-8a0d-459e-ad63-13eea0ebff48", + "id": "e0908949-b591-482a-854f-0aafb284c150", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46184,7 +46184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d52fa4c-0fd6-417c-9425-cf5596b07d72", + "id": "b376fad7-d1ad-4393-9e5b-32bd22be934d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46275,7 +46275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a596ddd7-c339-4c0f-b22f-0a3c6ff95bb0", + "id": "3f414645-e97f-47e2-a576-97af9ae931aa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46366,7 +46366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be263acd-af8d-4729-8aeb-5c69b6339317", + "id": "e00607e7-2f0a-4253-890a-f8577278bf29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46463,7 +46463,7 @@ } }, { - "id": "0a83c467-2b26-45ee-9d01-cacc87959c16", + "id": "b98543bb-e6bf-4b08-b351-d5c52cb9c246", "name": "Reassign Certifications Asynchronously", "request": { "name": "Reassign Certifications Asynchronously", @@ -46518,7 +46518,7 @@ }, "response": [ { - "id": "6795d503-3cbe-4c6a-8984-3642aa55ddc5", + "id": "39ef296f-c524-491d-9324-dd951f1480ad", "name": "A certification task object for the reassignment which can be queried for status.", "originalRequest": { "url": { @@ -46576,7 +46576,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ccb5898-5d21-49a2-a464-8f4e9b45ae1d", + "id": "555a03e9-3a30-470d-baaa-ce89ffb6ac51", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -46634,7 +46634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90ea291c-37d6-410f-b691-3febf7deeea1", + "id": "d8306776-1846-49c8-b224-4ac105c9a4a3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -46692,7 +46692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "199efab0-4893-4367-9e7f-7ec4dc4ee8c1", + "id": "9b87d4cb-5f7d-485d-a1b5-692dc6af3c20", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -46750,7 +46750,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ccf018f-a7d2-4a32-871c-a70e461ab341", + "id": "2d490bf2-e8ee-4372-96a2-36682422c9a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -46808,7 +46808,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d19bc3b3-a756-44cd-823e-b8d080422b08", + "id": "47b35e50-e693-41f4-b8ba-a367b0de6bac", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -46866,7 +46866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4a1131d-5076-4efe-9251-89102802c3eb", + "id": "5ca85651-cb39-497e-9d2b-a56cca882bf5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -46930,7 +46930,7 @@ } }, { - "id": "4c515a1c-b765-43d0-8197-0a73ea2c37f3", + "id": "b608d95f-a627-4699-81c5-206737752f79", "name": "Certification Task by ID", "request": { "name": "Certification Task by ID", @@ -46971,7 +46971,7 @@ }, "response": [ { - "id": "3ac0a7d0-a1df-4385-9890-fc386769df06", + "id": "7503342c-b56a-441b-90db-94da7cd2c203", "name": "A certification task", "originalRequest": { "url": { @@ -47015,7 +47015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80fc9373-cb28-45c0-8732-abd916551a7b", + "id": "fb64d4c0-d392-432a-b35e-51f1654cfb98", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47059,7 +47059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "309d4e3a-d5da-4583-b061-6fcfd5f7eb53", + "id": "745f41ee-507a-40f2-af8b-750423708a28", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47103,7 +47103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4cc62869-0266-4a84-8c89-f52a32406808", + "id": "874c5b01-3a3b-4995-8e77-1e8302767fd1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47147,7 +47147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47898094-74b0-4952-bb39-4c95f2f02b64", + "id": "e4d69cff-c14c-4945-b71a-f181c519f607", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47191,7 +47191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "290a2d29-45a7-4ed5-9063-5c157dfd0cdc", + "id": "430023fd-2ef3-4486-8235-a22c33699735", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47235,7 +47235,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd8aee4c-a86f-489e-95be-ab62be00b68e", + "id": "f4a07a8b-b5e7-4590-a17c-fc73395b5e86", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47285,7 +47285,7 @@ } }, { - "id": "61167ff6-0d40-404b-a532-61688d59372f", + "id": "1dc3a97b-5934-44f6-9649-3d7ef9c7f078", "name": "List of Pending Certification Tasks", "request": { "name": "List of Pending Certification Tasks", @@ -47360,7 +47360,7 @@ }, "response": [ { - "id": "20f8aba8-5561-4c39-8f65-a55165a882d3", + "id": "725942c5-af5f-42d3-af0b-af0f5d7b8f81", "name": "A list of pending certification tasks", "originalRequest": { "url": { @@ -47449,7 +47449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61867a0a-2555-4117-ad85-73e46a5678db", + "id": "f925bfee-57ce-4d52-9dc4-412acde94a28", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -47538,7 +47538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99a99926-8a83-4b65-a075-40c87699c34d", + "id": "7f1139df-b55f-47cb-aa0e-7aa0bb1a03ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -47627,7 +47627,7 @@ "_postman_previewlanguage": "json" }, { - "id": "686e73de-8fcd-48cb-afcd-bf214a566550", + "id": "35879a16-3d68-400b-855a-f30a19307f80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -47716,7 +47716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f95b334-c5f5-4697-9e3a-0b68521fe3da", + "id": "6a67182c-1e4e-49e7-a363-fed2a39b49c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -47805,7 +47805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73d246f1-6474-484b-a2ac-36ba5321269a", + "id": "918d8ce1-399f-4ad2-8fb2-0bc3c72c35f5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -47894,7 +47894,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e6b2724-51f9-442e-985b-bcf6346eba45", + "id": "ea6659ad-49e6-4b03-8260-168f65b642c3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -47995,7 +47995,7 @@ "description": "Upload configurations and manage object mappings between tenants.\n\nConfiguration files can be managed and deployed using Configuration Hub by uploading a JSON file which contains configuration data.\n\nThe function of object mapping allows objects with varying names and IDs to be compared. While objects are compared, a user can replace a value in the source tenant with a new value. Object mapping also helps in locating referenced objects to the source object during the drafting process.\n\nRefer to [Uploading a Configuration File](https://documentation.sailpoint.com/saas/help/confighub/config_hub.html#uploading-a-configuration-file) for more information about uploading Configuration Files\n\nRefer to [Mapping Objects](https://documentation.sailpoint.com/saas/help/confighub/config_hub.html#mapping-objects) for more information about object mappings.\n", "item": [ { - "id": "a447a31d-9995-46e5-8c48-9f720e5348b4", + "id": "0d770f8a-8e8e-4986-82c8-3070a2caa884", "name": "Gets list of object mappings", "request": { "name": "Gets list of object mappings", @@ -48037,7 +48037,7 @@ }, "response": [ { - "id": "15e88fc4-0395-4f80-b84d-607de5de241d", + "id": "8baa7ab9-5dca-41cc-a487-322a67f62f75", "name": "List of existing object mappings between current org and source org.", "originalRequest": { "url": { @@ -48082,7 +48082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8f43813-6d81-48ac-a495-8f7460e81c14", + "id": "ad2965c8-cd8b-4a0d-9ace-571cf731b4b1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48127,7 +48127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "627a8d98-a6a6-49ff-80cd-838c2c3ff295", + "id": "00b2dca8-7cf5-4799-8bdd-f0b91607eb58", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48172,7 +48172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "981273d9-93d3-41b5-8bb3-09a151f83737", + "id": "171a7e8b-f34c-4414-8cce-0c818f85c45a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48217,7 +48217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7eb2289e-a283-4f50-935d-40c2fb849687", + "id": "9a980432-282a-4eec-a4ee-a9deb66be038", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48262,7 +48262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "473350e1-c50b-4e57-b877-e7337bb9bc7c", + "id": "09e2e410-03aa-4d82-b620-3afbb81e1b53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48307,7 +48307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9d9f2b9-85a3-4328-88fe-39f969d052ee", + "id": "b87950fd-8339-45d8-a197-6ee5ae0fedc8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48358,7 +48358,7 @@ } }, { - "id": "1568de60-20fb-49a6-acad-8a392c62858b", + "id": "fb68806b-ab10-48c3-8f78-914a2d4a112d", "name": "Creates an object mapping", "request": { "name": "Creates an object mapping", @@ -48413,7 +48413,7 @@ }, "response": [ { - "id": "d4ae9050-2717-4c4b-89ec-3a23bdf4de87", + "id": "29988807-0d82-4b7b-b534-910f139b3201", "name": "The created object mapping between current org and source org.", "originalRequest": { "url": { @@ -48471,7 +48471,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fb1921d-5f2e-4444-a8b1-5cd6e3affefc", + "id": "ad63ec4f-67ab-4dca-99c5-f16798a74d5c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48529,7 +48529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a358a1e-114e-4151-9f9c-fd36d0e7f14b", + "id": "2ce317a6-ef72-4410-ae8c-01256d10ea90", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -48587,7 +48587,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2666296f-e2c8-41d9-b116-11533aa68867", + "id": "ae8d49a3-6991-4006-8325-a1c32c7fb987", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -48645,7 +48645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "262bf605-50c8-40a5-b252-071b75b97bff", + "id": "2f8be62e-b7f6-46e1-be7f-43b84641320b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -48703,7 +48703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "977e5cfc-590c-49e8-a7b7-59af4fdd3aaa", + "id": "7d1b3a39-e485-40ba-838d-43cc24534db2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -48761,7 +48761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60ced0ca-0204-455f-ab4d-b2e11698bbfe", + "id": "712b378d-be4b-40ac-9c25-ad753ea02a48", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -48825,7 +48825,7 @@ } }, { - "id": "1a651738-2d94-4d50-baff-bbe614a7fc3a", + "id": "a851bd3b-c4dc-4ea8-8b78-b154d2964ea9", "name": "Deletes an object mapping", "request": { "name": "Deletes an object mapping", @@ -48878,7 +48878,7 @@ }, "response": [ { - "id": "35d7c618-4535-4c12-bf59-d5ef874141f7", + "id": "c55482d0-fd50-4963-9835-dcde0971725b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -48914,7 +48914,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bddf0383-586c-4c69-b080-a0cfd22768c8", + "id": "fb3dbccd-acd1-4506-80a5-ec9bb1a0b717", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -48960,7 +48960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b971e78-3256-43c3-b54b-014fbbe25cfe", + "id": "a83579fc-c448-47ed-a06f-63c36a73efec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49006,7 +49006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f9846a2-f01f-47f0-81cf-ff78c6ea75ae", + "id": "9b6a7fe2-ff98-4f1c-946b-03287a491611", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49052,7 +49052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8694f47b-92b4-44d6-96ff-f80f7e4dcb38", + "id": "40d9eff3-3710-4bcc-836c-1efdf76e06ed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49098,7 +49098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82ff1eb1-7f62-482b-a317-74ec982e7e43", + "id": "84972a92-2dfb-4c4e-8970-dcd6fc26e893", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49144,7 +49144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9b44954-09cd-4b7d-99a9-65d31696c1ae", + "id": "4b94aac1-a82c-4daf-be01-0db5726f5af6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49196,7 +49196,7 @@ } }, { - "id": "0d545611-7f6a-4076-ad6b-1a385c4bb0c5", + "id": "b895d878-c842-4429-a206-7b761f531f4f", "name": "Bulk creates object mappings", "request": { "name": "Bulk creates object mappings", @@ -49252,7 +49252,7 @@ }, "response": [ { - "id": "a376cc6a-ac9d-4c8e-9927-84842228bfb1", + "id": "e98233f0-5e5f-4759-8118-8b3ae2d010c6", "name": "The created object mapping between current org and source org.", "originalRequest": { "url": { @@ -49311,7 +49311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11de623b-05b9-4296-9d14-206db56d8e13", + "id": "dad47740-485a-4148-9591-180b33ac8364", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49370,7 +49370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4768d8d3-27b1-4484-a7f8-dc8d6b4864f7", + "id": "2b5c3d2a-9228-4214-8ea7-e0faacb2c9ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49429,7 +49429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "887a308d-86e2-40cb-855e-c4187948b868", + "id": "009102fc-fa64-4def-8516-9b5603e04240", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49488,7 +49488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bab28b5-9dfd-4998-824b-0b6db3202012", + "id": "41413084-d94e-4846-8d2a-0b950f18d74a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -49547,7 +49547,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7988be01-b71a-4669-bb51-62caa2925aae", + "id": "115b8db4-de71-4e95-b32e-bdd4e9e9359e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -49606,7 +49606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c74fb354-386c-41a9-a2cb-91e922f5c220", + "id": "9beb3d99-db81-4d3a-a162-52127e3628b2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -49671,7 +49671,7 @@ } }, { - "id": "c08a3b16-9baf-4d11-9775-43eddea2a1ec", + "id": "0f74fd7b-4a8f-47ca-b2ab-bb85713d66d7", "name": "Bulk updates object mappings", "request": { "name": "Bulk updates object mappings", @@ -49727,7 +49727,7 @@ }, "response": [ { - "id": "f2a7173f-c0ad-4c75-8aac-1e567548d87f", + "id": "563b9fd7-c5cc-46cb-bcc8-81d5eaf463ce", "name": "The updated object mappings.", "originalRequest": { "url": { @@ -49786,7 +49786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "733e1e17-cacb-4322-a206-1fb110bb5830", + "id": "1cd4c78a-f8f9-4a3d-a54d-e65faf00c0ec", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -49845,7 +49845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e99b0dd-a7a2-4bec-82dc-857245e6ae85", + "id": "06f5e3f1-9f27-4b62-b883-3a1ce502e220", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -49904,7 +49904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f9bc86c-a502-4523-9921-c29cd1f3ec39", + "id": "3ac435df-5ea1-42e6-8075-f7079158d9f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -49963,7 +49963,7 @@ "_postman_previewlanguage": "json" }, { - "id": "982f1b01-23c3-4dad-a2f9-a8c06d2614f2", + "id": "3c397771-3873-49c1-915f-3b5781e29dfd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50022,7 +50022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55a38cd8-19db-4d7b-b512-db87c84f2457", + "id": "8ae1eba9-005c-4022-8165-d4c0d0842fbf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50081,7 +50081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40f0236b-9841-45b7-9f8b-1cbc42270ad0", + "id": "01d087d8-dfb4-4934-8103-8777800711a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50146,7 +50146,7 @@ } }, { - "id": "8c43c125-4b06-41c5-8c84-762510a25049", + "id": "8da0f7aa-08f6-45c1-8fd3-93907396dc09", "name": "List Uploaded Configurations", "request": { "name": "List Uploaded Configurations", @@ -50187,7 +50187,7 @@ }, "response": [ { - "id": "e0a23685-7fc4-4ffa-8ec0-f2821ace1956", + "id": "bc17b575-3ab4-4286-b95f-dda40ba55823", "name": "List of existing uploaded configurations.", "originalRequest": { "url": { @@ -50242,7 +50242,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a1cd5cf-d5f8-4bed-b928-b2b40f7a395c", + "id": "980c5ed5-1dbe-408d-9039-7086b45604c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50297,7 +50297,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a600beb-3f73-4e24-b54e-5422f74534a3", + "id": "64a14f92-c787-4728-aaff-bbd3cd3773c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50352,7 +50352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df02f16-81f4-4001-af59-6b52f1c8079d", + "id": "c42f35fc-b6bf-438c-b1ce-4a1beebb49ae", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50407,7 +50407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f6d530a-cbfd-47f8-8ded-f5994ca32ab3", + "id": "d5a14caa-73db-4413-a46a-fa3054e5253d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -50462,7 +50462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeae4188-080e-440a-873b-0a8dc130b04c", + "id": "5cd811f9-e893-4ebd-acca-9ebeb1c82ea2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50517,7 +50517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7af68c1f-49a1-4d37-b738-f56af3c5f10c", + "id": "9d6c5444-d9eb-4505-be18-6185778e76e2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -50578,7 +50578,7 @@ } }, { - "id": "f3b1a5d3-a0c6-492f-86b7-48dbe29f8f9a", + "id": "91575d6d-a302-4507-94d3-3af37a69c743", "name": "Upload a Configuration", "request": { "name": "Upload a Configuration", @@ -50626,7 +50626,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -50634,7 +50634,7 @@ }, "response": [ { - "id": "2dffa1c1-4edd-42a6-82e8-6d1868b65cf2", + "id": "5c9e955e-9a44-4456-a499-7ca8f3e44ab5", "name": "Upload job accepted and queued for processing.", "originalRequest": { "url": { @@ -50685,7 +50685,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -50704,7 +50704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60c93f94-5242-4c3f-add9-f637532e1907", + "id": "dd4b84e3-2c14-4502-9a69-1373f87a5032", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -50755,7 +50755,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -50774,7 +50774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c815aaf3-75a5-4ea1-b8bb-21e34492caad", + "id": "f267bd7f-2a5e-4c53-9bfe-f42afab19890", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -50825,7 +50825,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -50844,7 +50844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fd32bb5-d91f-498d-981b-90350900a119", + "id": "aae61472-6e36-4c7c-a1b2-68d0009632a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -50895,7 +50895,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -50914,7 +50914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afaf3061-f70b-4244-892b-c5ac7b547a7b", + "id": "46161b1c-02b4-4c40-8c90-fb5af69332b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -50965,7 +50965,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -50984,7 +50984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3799aa69-2e54-4a8e-904e-37b0e83f9fc7", + "id": "4c1978a6-44e2-43c1-8819-eda6cff659ce", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51035,7 +51035,7 @@ "type": "text/plain" }, "key": "name", - "value": "proide", + "value": "commodo Ut", "type": "text" } ] @@ -51060,7 +51060,7 @@ } }, { - "id": "21a92f24-0651-4032-92a0-073285e44110", + "id": "e8724224-43a1-4a2f-a0fc-285f8481c7dd", "name": "Get an Uploaded Configuration", "request": { "name": "Get an Uploaded Configuration", @@ -51103,7 +51103,7 @@ }, "response": [ { - "id": "b012b881-9feb-4327-9098-8ed09e1d89bc", + "id": "837b604e-b60b-4225-8ee2-0373ab155b5c", "name": "Gets an uploaded configuration details.", "originalRequest": { "url": { @@ -51149,7 +51149,7 @@ "_postman_previewlanguage": "json" }, { - "id": "610482a4-5023-48e0-b8f5-92c23b784a5e", + "id": "3f7a22c5-4eef-4bad-a841-fade05fba0f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51195,7 +51195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "130b9c01-76a5-41ae-a1bb-35dc4fca0735", + "id": "83d923cc-5dc3-49c9-848f-123342c63052", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51241,7 +51241,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d39a8fe7-65f6-4881-8b1e-49e3b798ea56", + "id": "5fc4d400-207f-4820-b376-0ae5c1cb4fed", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51287,7 +51287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f11730a6-922a-48b3-9a5b-fc86e56c98a3", + "id": "9f895b35-7dfc-4686-b729-7140952cfee2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51333,7 +51333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40b4d62a-0b8b-4647-b90b-b7f042a5f40a", + "id": "4bd68268-1575-43d1-b948-651c31819179", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51379,7 +51379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e233b1f3-8c02-4847-988c-59fddaee275c", + "id": "779170eb-d2f4-486d-b9e1-7861284ccfb1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51431,7 +51431,7 @@ } }, { - "id": "a01ed806-4717-4ffd-a6a4-8401d8761fc6", + "id": "2b714cc7-c38c-4dae-bb13-c805f8bc4bbc", "name": "Delete an Uploaded Configuration", "request": { "name": "Delete an Uploaded Configuration", @@ -51474,7 +51474,7 @@ }, "response": [ { - "id": "abdbb5f5-c6fb-44d1-99fa-235d23a5b8bd", + "id": "3fc09b0d-6a72-4dcf-a74e-bd819e3c2ca5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -51510,7 +51510,7 @@ "_postman_previewlanguage": "text" }, { - "id": "7a7d4dee-9bbc-44b5-9c73-ff63fc151224", + "id": "8d31fcba-019b-451c-bc73-641ac4a3fd54", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51556,7 +51556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7989a6-f215-488e-85d8-1b5c89ba547b", + "id": "7c8e7aa2-1fcb-4588-93a5-29b11f28c13c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -51602,7 +51602,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33f568c2-135f-407a-adeb-269210992656", + "id": "dd75e50a-12ed-4659-b13f-fb33d5ed9d48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -51648,7 +51648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61eec0e2-d773-4e4d-8a95-f00b80f0612f", + "id": "b5f9a195-1d12-41fc-98a8-c27983273630", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -51694,7 +51694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d74dc1c-2513-490a-a20c-9ac7256f87e9", + "id": "682e5b5e-c7eb-4aa5-9e39-8cb7d627226a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -51740,7 +51740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09dc34ee-5e12-454f-b3de-4547fe04cdbf", + "id": "21778eec-efb3-49ac-a3a0-d33e142829c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -51798,7 +51798,7 @@ "description": "Use this API to implement connector functionality.\nWith this functionality in place, administrators can view available connectors.\n\nConnectors are the bridges Identity Security Cloud uses to communicate with and aggregate data from sources.\nFor example, if it is necessary to set up a connection between Identity Security Cloud and the Active Directory source, a connector can bridge the two and enable Identity Security Cloud to synchronize data between the systems.\nThis ensures account entitlements and states are correct throughout the organization.\n\nIn Identity Security Cloud, administrators can use the Connections drop-down menu and select Sources to view the available source connectors.\n\nRefer to [Identity Security Cloud Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about the connectors available in Identity Security Cloud.\n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/docs/connectivity/saas-connectivity/) for more information about the SaaS custom connectors that do not need VAs (virtual appliances) to communicate with their sources.\n\nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about using connectors in Identity Security Cloud.\n", "item": [ { - "id": "9eddfddf-e710-4db1-a2ff-47c8dcf615b3", + "id": "c822d46b-c498-45d9-b142-3e4d58fd13c5", "name": "Gets connector by script name", "request": { "name": "Gets connector by script name", @@ -51849,7 +51849,7 @@ }, "response": [ { - "id": "72f73662-596f-4472-85c7-91c6b6dc27c9", + "id": "776d32ab-0a27-4cd7-bbe0-c6eeadd125c6", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -51903,7 +51903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50c0a376-795f-4da3-8dc1-dc73fa92d87d", + "id": "8a1d7d7c-d574-4d3b-848e-ab7543fbc7f6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -51957,7 +51957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc370567-5f5f-4655-92c7-b69f14e26438", + "id": "d2506378-e2a9-4e72-8411-e27e89cd0f66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52011,7 +52011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e668d3e7-1f94-45c0-89c6-8d5210be6ebb", + "id": "8eaf0618-15dc-4d22-8787-425a6add46fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52065,7 +52065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3de3b02-675f-477b-aa33-c620c152c14d", + "id": "28d2b4fd-9ce7-4de3-b19a-5d6f2d54370c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52119,7 +52119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3374881b-7661-4b6f-9f47-f239371c806d", + "id": "682bd077-ccb6-4242-9a8b-a7516d74a867", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52173,7 +52173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d67de02d-a64c-45e6-9a12-028247415cc2", + "id": "98f57e5c-73fe-487c-96f2-0568a8298388", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52233,7 +52233,7 @@ } }, { - "id": "bec1ce13-14ac-4ca3-989d-cdcba8f838f7", + "id": "e1b4542b-1b40-4551-ae08-f0bf46bfce6d", "name": "Deletes connector by script name", "request": { "name": "Deletes connector by script name", @@ -52274,7 +52274,7 @@ }, "response": [ { - "id": "3db1a4e1-4e24-4f09-a611-04e3be430e71", + "id": "87994efa-fc95-452c-baf7-aa35f5dd2ee7", "name": "The custom connector was successfully deleted.", "originalRequest": { "url": { @@ -52308,7 +52308,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b42965cb-8962-4b26-b65d-b4f0e3f73bc0", + "id": "168b9377-df60-480f-b817-fd01e90645df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52352,7 +52352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "437966e7-e2f8-4c2f-86c4-45e0821d0790", + "id": "09a007e7-c53e-47a5-b85b-779f4c18ce09", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52396,7 +52396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b6232f8-048f-482f-8139-e231d81fbca0", + "id": "4430d5e8-9df0-40da-8128-6d335245a438", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52440,7 +52440,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0146fd3b-9269-4190-a044-ad42c6b3f7d5", + "id": "caf48525-9a9f-4713-bb88-47ecc338dae5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52484,7 +52484,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc76e1bd-acf8-476b-b554-b6d3bf7e30ee", + "id": "12ebe755-c90a-4ad1-96eb-e541325f7871", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52528,7 +52528,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01392f6b-3f08-4921-bd78-f7fba17a6d7c", + "id": "586057e2-443a-4a2b-a695-7523601906a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -52578,7 +52578,7 @@ } }, { - "id": "cbc7774d-9bda-46db-ab1b-dbbcd15d0874", + "id": "d0c1bb5a-c568-41e3-b420-86f0b6d82f71", "name": "Update connector by script name", "request": { "name": "Update connector by script name", @@ -52632,7 +52632,7 @@ }, "response": [ { - "id": "2513dbd4-4d25-4d53-a5b0-d3c3f145926c", + "id": "40aced6d-3d61-4bce-9006-782e88ebb990", "name": "A updated Connector Dto object", "originalRequest": { "url": { @@ -52689,7 +52689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62b7196b-c051-48aa-b8cf-3247fb15481c", + "id": "c9ad6f8c-1e78-48ce-ae52-005e8f6b5aac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -52746,7 +52746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16f5f024-5e30-4000-b385-efa0a0121fb8", + "id": "e0a2c943-84b8-45ff-883c-7437c253110e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -52803,7 +52803,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc6b59e3-9113-4fad-9499-dd06180bffc9", + "id": "97b37807-eed5-42f1-88a1-42855926e3ac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -52860,7 +52860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ba7a0f9-c3ab-4ba4-aafc-41932674c675", + "id": "da3f52fa-407b-4fee-b68e-fed381ca91d1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -52917,7 +52917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3651a9ca-1276-4d69-baa2-941eec41dcf2", + "id": "7a4506d1-edf4-480c-a1db-7da91fe66498", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -52974,7 +52974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba9b5ea9-d973-4be0-b7e0-9ff350aa1267", + "id": "4de1e1ec-d6fd-40ad-ab49-a5666590ba75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53037,7 +53037,7 @@ } }, { - "id": "c6398064-f7de-459f-abc7-4ee79fcea396", + "id": "f172ac02-4775-49f6-a70c-4956390acf83", "name": "Gets connector list", "request": { "name": "Gets connector list", @@ -53112,7 +53112,7 @@ }, "response": [ { - "id": "81d0bce3-7bba-4cf0-b52b-0a6cc16d2485", + "id": "3c01bfe3-c6d9-45f1-a725-fd3b95dadf37", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -53201,7 +53201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3196a0e5-b2ee-4d5b-b47d-996572e1a8f3", + "id": "6395125d-da01-4465-9733-824b587fec05", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53290,7 +53290,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6e2f9de-4ffc-4d4a-a84d-9a04be3939e6", + "id": "185fdc28-f7d5-4cb5-a15b-69d433685f2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53379,7 +53379,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bae63617-2ee9-4930-b0b9-00bccfd6b3f1", + "id": "4ca30701-a991-4c73-94e1-0be242e2c750", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -53468,7 +53468,7 @@ "_postman_previewlanguage": "json" }, { - "id": "541ea4ee-b71c-4cfa-a57e-bed0a608dbd8", + "id": "f797585f-0a27-4044-8070-bbe8212837bd", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -53557,7 +53557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d912c10-1f04-45d4-be46-d1896d832792", + "id": "c1ac4d7c-9719-49ca-b92d-bd06c04a8bfb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -53646,7 +53646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "882eb6b6-b322-494d-9b01-5b21fa63f534", + "id": "95b72501-1658-4af3-adc5-8fc1e89b85c7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -53741,7 +53741,7 @@ } }, { - "id": "13d0b6ba-184e-4e97-ac46-641eb3894ce6", + "id": "dcc4b255-ece7-46c9-839d-6fe884a28169", "name": "Create custom connector", "request": { "name": "Create custom connector", @@ -53783,7 +53783,7 @@ }, "response": [ { - "id": "4c2292e3-0a4b-4d16-826a-9110a069972c", + "id": "e5aa88c5-aa1b-44ba-a821-e1381d398952", "name": "A Connector Dto object", "originalRequest": { "url": { @@ -53839,7 +53839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f15d437e-8971-45dc-91c5-98b3cad1d4c9", + "id": "0be29556-227f-470a-ae87-5cfa974be81f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -53895,7 +53895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f929830-54f4-4ec4-874d-054255f8132a", + "id": "8851481a-b19f-429f-b989-63eb0409bfd7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -53951,7 +53951,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b1f35b1-b7c4-4279-a387-edc84f71773b", + "id": "1c631072-5ee6-492b-85c3-191fefc781b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54007,7 +54007,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d9e3062-4b80-4d30-a52f-bc7197b54cfd", + "id": "ad184618-fe20-43ee-a41c-739eefe51179", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54063,7 +54063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "545ae9f2-3852-466b-8909-33401aee298a", + "id": "d903960c-72b3-4566-9d83-45284d36f332", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54119,7 +54119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82c4dc37-01a3-40c9-b3e9-8a4fbfa4e2cd", + "id": "39dd7a9e-50d1-401f-9d5d-91634a1b1d5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54181,7 +54181,7 @@ } }, { - "id": "52d46efb-74bf-4b71-ac80-eae90e8873c8", + "id": "6bb71f84-c4b7-47ca-8e78-ca98729737cf", "name": "get Connector Source Config", "request": { "name": "get Connector Source Config", @@ -54223,7 +54223,7 @@ }, "response": [ { - "id": "a6b4ae0b-1307-4097-92f1-52bf545b8b28", + "id": "f183ccb8-7c49-49ea-b25f-751235818daa", "name": "The connector's source template", "originalRequest": { "url": { @@ -54268,7 +54268,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "f51ca7f7-857c-41b1-a762-5c729b145b6e", + "id": "09e03ec5-3a5e-4395-8407-2878231504ac", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54313,7 +54313,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45a291a4-eb81-4267-9cd0-91772d664b5f", + "id": "2ca170bc-5957-413f-b57b-7005c48ef249", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54358,7 +54358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d70d20d-c348-4bd6-9dff-22e0c09cf9c6", + "id": "94fcad53-34fd-4dee-91bc-98142730547d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54403,7 +54403,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fa2445b-504b-4cc1-bbbb-2634f474a86b", + "id": "955ad50a-8f88-4c3f-96e0-6b9aa9ed7aad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54448,7 +54448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6b5e937-63fa-4832-99cc-94a0a3d2c845", + "id": "f825d4c0-031c-4ba9-ae3c-6b7c3f6a343c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54493,7 +54493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71c240a6-b6a1-44ab-96f1-bcd2d39345c8", + "id": "90b060f2-7aea-4570-b292-044b0472e967", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -54544,7 +54544,7 @@ } }, { - "id": "4091ebdc-a250-4e86-ba07-19ebca20b1dc", + "id": "94396de4-872f-4203-806f-d1f1dffcd84e", "name": "put Source Config", "request": { "name": "put Source Config", @@ -54602,7 +54602,7 @@ }, "response": [ { - "id": "c6ce5186-4cc1-46da-83ce-f99c9ee40d5b", + "id": "b0f9b527-7d9e-40dd-b9ec-58ff49361cdb", "name": "The connector's update detail", "originalRequest": { "url": { @@ -54663,7 +54663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81452fa4-3ab6-49b7-b78e-f371f99cfcce", + "id": "6be5e48c-6d2f-46ef-bd6c-fc45dfe49b1d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -54724,7 +54724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72e5cc0a-0637-4275-814a-e3155b595fb7", + "id": "7558f467-562c-4320-9427-77c6cdaa9224", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -54785,7 +54785,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c5a3966-1f72-482a-91a7-23422300a93e", + "id": "f59cdc93-4307-4de7-87ae-f008361f074c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -54846,7 +54846,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f61033d1-5f89-42fd-9e84-9fbeb15c9891", + "id": "08f7455d-092a-4edd-a9ec-5184dcf35faa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -54907,7 +54907,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a8e2276-6e5f-492a-b5fc-420874033276", + "id": "9e7223f9-ec6e-4434-b9e2-118ecd18e14a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -54968,7 +54968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7a44f6a-c782-47ed-aad3-2acba03fd8b5", + "id": "f67e6821-fad7-4cfe-adc0-137d63b05719", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55035,7 +55035,7 @@ } }, { - "id": "6702feee-d317-41a9-93ad-58e65662c772", + "id": "237a9bec-0237-42ce-8807-2bf52122bfe0", "name": "get Connector Translations", "request": { "name": "get Connector Translations", @@ -55088,7 +55088,7 @@ }, "response": [ { - "id": "f7ca8bd7-aa7e-45d5-b83f-f3c569409451", + "id": "b5b9c858-f5c9-4fd4-8b9d-66ad7c32d762", "name": "The connector's translations", "originalRequest": { "url": { @@ -55129,12 +55129,12 @@ "value": "text/plain" } ], - "body": "sunt cupidatat ut", + "body": "consectetur consequat adipisicing eiusmod", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "7514b718-14a4-4df8-af1d-bcc477a337a5", + "id": "c3d487fe-f088-48e2-a6d9-79b7b5f761a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55180,7 +55180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee3dbbb0-7b7e-44a9-9035-c26cde9d472b", + "id": "e182b297-b67f-412c-a049-7f235ea52357", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55226,7 +55226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ebdd4e09-1d5e-4620-ae50-c943013bb9bd", + "id": "bbce8051-7b37-45ef-8b7b-ccdd902c5fe1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55272,7 +55272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b483c13f-7bee-417a-9a83-243ec49d7b48", + "id": "e749b43f-837e-4688-92be-12dd5ae96911", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55318,7 +55318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bae28d1-1a7b-4c81-ac4a-3ca268624d32", + "id": "67e08642-4e03-4cfd-bd86-53cb42ecde90", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55364,7 +55364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de3e0883-a728-482b-ac64-69fe31e6121e", + "id": "759f0849-fddf-4abd-a7f6-5302e72195e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55416,7 +55416,7 @@ } }, { - "id": "eb2eacb6-328a-4f9b-ab25-cd8772d5caea", + "id": "230411d3-83ed-4832-85ae-09b82105e9c4", "name": "put Translations", "request": { "name": "put Translations", @@ -55476,7 +55476,7 @@ }, "response": [ { - "id": "c9a13e34-fd9d-4d42-bb0b-ea87b2a633de", + "id": "9d8cbb82-1417-4186-b346-9736f81da524", "name": "The connector's update detail", "originalRequest": { "url": { @@ -55529,7 +55529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "744d5624-7ab8-41d1-b97c-424aba44cef9", + "id": "77b02f6a-9809-4a62-8755-e277d8e26a44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55582,7 +55582,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f050e3be-3449-43f3-a187-7be256d69ce5", + "id": "1d4ead1a-a31d-4901-b1d7-614fa3f35f49", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -55635,7 +55635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af0b7d4d-3d13-4abf-ad17-b54b00353e06", + "id": "4f886f51-d368-4400-bcb5-f1cd13d783d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -55688,7 +55688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d93ff11-3c07-4dbd-902c-217dbd33f70a", + "id": "91760fb0-a8fb-4d8a-a6f7-1b4931c52095", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -55741,7 +55741,7 @@ "_postman_previewlanguage": "json" }, { - "id": "970da4d2-8a36-4479-be97-ba1c9d5d4f8c", + "id": "92e93098-4e1f-42e5-9286-a5a629de5cbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -55794,7 +55794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae527b7d-df1a-4bbc-8963-c5cf7fe7a662", + "id": "350acddd-7985-4c6a-89af-df5263fd2589", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -55853,7 +55853,7 @@ } }, { - "id": "07787970-574a-48ec-9de6-ccd12c4efb5f", + "id": "da7c8248-fd16-4f9a-960e-903bd1c8ece1", "name": "get Connector Source Template", "request": { "name": "get Connector Source Template", @@ -55895,7 +55895,7 @@ }, "response": [ { - "id": "9fae4f06-6f91-4afc-a1ce-91bb160bb3f2", + "id": "19fd50f4-31b4-46b4-86b4-c61cee629b9d", "name": "The connector's source template", "originalRequest": { "url": { @@ -55940,7 +55940,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "d30c7076-4535-45b0-bc8f-781001fd0979", + "id": "4b463273-a4eb-4141-a372-d8927e0cb9dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -55985,7 +55985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "796d0913-1b7d-4ea7-a7bf-093a8e7fc9aa", + "id": "6867d027-1c57-415b-8877-cc2e822575ae", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56030,7 +56030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dd52443-fda6-4e20-a4bd-27854ce31007", + "id": "6563ee15-cb3b-4514-b5a1-8d8d5595c308", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56075,7 +56075,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54b8413e-693f-459c-867d-78798033ab57", + "id": "6da88c4a-fddf-4fd0-b6b5-087a9ac2ef48", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56120,7 +56120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31013207-ddcf-436f-9715-d98ddd1d3156", + "id": "40f34df2-b296-4d37-b3eb-830683361620", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56165,7 +56165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b9ed9eb-a3a4-4727-b72d-84b0d0e1c9b7", + "id": "7a991b79-719c-4776-b744-3e870fc2872f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56216,7 +56216,7 @@ } }, { - "id": "1f7b139d-a2cb-470e-b351-1a37b19edc6b", + "id": "bdae4c75-92cb-4a3f-b689-6a78845434ac", "name": "put Source Template", "request": { "name": "put Source Template", @@ -56274,7 +56274,7 @@ }, "response": [ { - "id": "d5cb8e31-6963-4c64-9891-ec4185a26b4c", + "id": "a0b7085f-4d2f-423c-be1f-7eb07fcaad53", "name": "The connector's update detail", "originalRequest": { "url": { @@ -56335,7 +56335,7 @@ "_postman_previewlanguage": "json" }, { - "id": "051ac91b-bdbf-41bf-9b2d-da00108015ee", + "id": "eaad272c-78c1-4033-88e9-88d388cf3dfe", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56396,7 +56396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47a80d48-017b-47cf-8f8c-a5a296eb057d", + "id": "785f6756-2ef7-4d16-a83b-802828adbef5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56457,7 +56457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cb38ac1-6347-4398-94b4-989b131c0526", + "id": "ea1c459d-2b91-4aa8-9235-24ba4a217e4f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56518,7 +56518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49636e3d-46c5-4824-98b1-19b17ce675b3", + "id": "daf746e6-d4ba-48b6-bdea-f175c01251b2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56579,7 +56579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb3f4538-bd6e-41c7-99a9-6df35acc4147", + "id": "b7db4748-726a-417f-957e-16a0c05f5094", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -56640,7 +56640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "754b5836-7690-4094-b9ab-a67edfeb90c2", + "id": "9f3f4e36-3d34-43d3-9345-17264b749627", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -56707,7 +56707,7 @@ } }, { - "id": "b9bc204d-26a4-43be-acd2-ba37db3580f6", + "id": "7c04c796-7df1-423e-8c6f-a6320630ae55", "name": "get Connector Correlation Config", "request": { "name": "get Connector Correlation Config", @@ -56749,7 +56749,7 @@ }, "response": [ { - "id": "65592788-fb20-41a1-bd90-ae1ea801d59f", + "id": "18cdb2c4-1ec4-4203-b3fa-1be2076c548c", "name": "The connector's correlation config", "originalRequest": { "url": { @@ -56794,7 +56794,7 @@ "_postman_previewlanguage": "xml" }, { - "id": "47bdffcd-3a5f-4cd7-9bb8-245c0991f29a", + "id": "68213a2d-c4bc-441f-aec9-2e5eaa8c9743", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -56839,7 +56839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f668bf09-b2b3-49c0-9ac7-6918baec3c35", + "id": "986cfb77-2239-4cfd-9b4e-30381a6a9275", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -56884,7 +56884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e75b3ca-7a29-4656-be32-f6b373bb01c7", + "id": "89873225-16c8-43df-aef8-4ed7794f9b60", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -56929,7 +56929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d6e5147-aa62-451b-8ee4-7d0550fbe684", + "id": "b7955714-7023-4cd5-bb6f-6190a44fcc69", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -56974,7 +56974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce68d32-42ca-4eae-a6d9-8ed87f88b24b", + "id": "a13de025-7222-46bc-81cb-b03be03b2f9d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57019,7 +57019,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc79d873-7755-42c0-a20b-3c887ea1cb61", + "id": "4dd53881-6819-4af3-9229-dec1962f893f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57070,7 +57070,7 @@ } }, { - "id": "b601079e-59bd-4350-8003-ee1eb237a876", + "id": "d6183f22-1bee-41f7-98b5-49c154690f38", "name": "put Correlation Config", "request": { "name": "put Correlation Config", @@ -57128,7 +57128,7 @@ }, "response": [ { - "id": "05cfe03a-d67a-4684-9785-be82fc538104", + "id": "629f9aaa-fa59-4d62-9b96-0a146fee426a", "name": "The connector's update detail", "originalRequest": { "url": { @@ -57189,7 +57189,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b19ced9e-b313-4b13-b1e6-7b16630af3ed", + "id": "73f73732-c2b9-4cb1-9a83-2f5c7a037822", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57250,7 +57250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a18da39-9e21-41bf-8e3b-009923e7c2c0", + "id": "d6329695-2138-417f-b073-3bdc6f7649dc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57311,7 +57311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c207fd5-5079-4790-9e0e-b580e27872cc", + "id": "b8479ba8-8eae-482b-b942-fa368db1c8ef", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57372,7 +57372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b6bcd13-506c-4a80-b6f1-f3ef64bb7cce", + "id": "23416086-0c79-430b-8935-41a30d27ccb5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57433,7 +57433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7cd685e2-c6b5-465d-83c9-ab9bc371be7f", + "id": "2c6b7c5c-1151-4427-8ba3-024d68fca857", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57494,7 +57494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c107b78-88d0-4038-bfb6-175c9a54f4bf", + "id": "642226d6-e5c2-4f10-9dfe-1ec4a23202b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57567,7 +57567,7 @@ "description": "Use this API to implement and customize global tenant security settings.\nWith this functionality in place, administrators can manage the global security settings that a tenant/org has.\nThis API can be used to configure the networks and Geographies allowed to access Identity Security Cloud URLs.\n", "item": [ { - "id": "dbcd8779-3e38-4ad3-809d-d45947896e42", + "id": "921984ff-40bc-428a-bd58-f6be67253480", "name": "Get security network configuration.", "request": { "name": "Get security network configuration.", @@ -57597,7 +57597,7 @@ }, "response": [ { - "id": "ce026de1-f0c6-49f5-826e-7b8bc2f2357e", + "id": "20e4f6ac-d2fb-40f2-bd4f-b262f4553463", "name": "Network configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -57641,7 +57641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9a620b2-926f-4403-8830-3ad8f09c2d66", + "id": "e31ede69-f382-405e-92cd-3610a21cc036", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -57685,7 +57685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9bf6018f-f5d4-4e01-96a3-8bd190d10824", + "id": "6c7db501-4440-4a6b-821e-750021e62222", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -57729,7 +57729,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7806600-a367-426c-abf5-390cd6fe44b3", + "id": "9309ada0-a868-46d5-911d-49f992037946", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -57773,7 +57773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3e915c7-c065-4e9d-9c24-251852731188", + "id": "8effde07-4e4a-4ee9-befa-101f4e3626d6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -57817,7 +57817,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0030fdff-f414-4154-9016-f442bc50388c", + "id": "c2b5353f-7da7-4c53-b9a6-45be7fc1f837", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -57861,7 +57861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c11529ac-69bc-44ce-9017-735490ea49b1", + "id": "e4515aec-44b4-4db9-8f51-3f2a8b4b09a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -57911,7 +57911,7 @@ } }, { - "id": "70ad9693-1592-4ddd-a06a-688c4565e1b8", + "id": "43ad198f-6dc7-4dc4-9f8b-e1efdc3f2a23", "name": "Create security network configuration.", "request": { "name": "Create security network configuration.", @@ -57954,7 +57954,7 @@ }, "response": [ { - "id": "f9b7a2a0-db19-4eb6-9d5e-56dc96bcd31c", + "id": "89a30f99-8e99-4684-926d-229ab2d17bd8", "name": "Network configuration for the tenant.", "originalRequest": { "url": { @@ -58011,7 +58011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1cfb3d49-16dd-4176-8b97-ca5a2f331773", + "id": "395c937d-91ea-4b06-93e1-221e7c171b5f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58068,7 +58068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0e7031-cfd7-460e-9e9e-3d0548fc4e5a", + "id": "281b48ad-d6fc-4117-a60e-27cba3ca3c4e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58125,7 +58125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72e6a8fb-c77b-444b-87be-805daf972e42", + "id": "fecf814b-1d55-4316-9e52-a75bf830ba7e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58182,7 +58182,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00bfa982-2be3-41fb-ae42-5866e7692491", + "id": "f6ea9f80-503b-431c-9d1c-8e05fc8f22a6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58239,7 +58239,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb9d201e-7594-4c03-9d46-dd742943b0a7", + "id": "e754b1ac-94b5-416b-a87d-eed76f521ac0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58296,7 +58296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a772866a-8124-466d-baf0-8edd307c5007", + "id": "4ae15910-fc29-4870-a667-b70409466782", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58359,7 +58359,7 @@ } }, { - "id": "ecf22baf-c922-48ab-b704-7dd1c34daf08", + "id": "61be3609-7c36-4ead-940d-aa742cd8b1e0", "name": "Update security network configuration.", "request": { "name": "Update security network configuration.", @@ -58402,7 +58402,7 @@ }, "response": [ { - "id": "e18e188b-e64f-4200-8b0d-3a30301f9c51", + "id": "ca696e55-06d1-44b4-82a8-dad4586a1d15", "name": "Updated Auth Org network configuration.", "originalRequest": { "url": { @@ -58459,7 +58459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "504282e5-1ffb-48da-bf7e-00186d01720d", + "id": "75cacbf4-29ce-439b-9b66-3a4db7f1fb3d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58516,7 +58516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a59ba93b-0c08-4bbc-8255-663e171239ce", + "id": "c573d0bc-cf83-4f36-8379-7eee01a27dbe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58573,7 +58573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f4fdf9d-781f-435e-9ff0-47f4163bca1f", + "id": "21cc3f0f-981e-4e78-92a6-9ce3b3de5130", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -58630,7 +58630,7 @@ "_postman_previewlanguage": "json" }, { - "id": "314d520f-4af5-41ae-ba54-d7b113672e4b", + "id": "b9834408-774f-42f8-b74a-172ecabc76ed", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -58687,7 +58687,7 @@ "_postman_previewlanguage": "json" }, { - "id": "229e1ce0-66ec-49b8-952e-53d8d0d2e6b5", + "id": "8ba7d3a1-4f32-4793-93d8-9f5575d5c0df", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -58744,7 +58744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf100a45-3eb6-4aa1-b273-fa56ec0db4fb", + "id": "fcadb7da-6e51-4888-b802-6390a6a7ad30", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -58807,7 +58807,7 @@ } }, { - "id": "2523cc67-aa2d-49c0-b2c8-e25f6cd29cdb", + "id": "b7ca7e35-06ed-4722-bf5c-39476f1915c4", "name": "Get Auth Org Lockout Configuration.", "request": { "name": "Get Auth Org Lockout Configuration.", @@ -58837,7 +58837,7 @@ }, "response": [ { - "id": "5d6b09f0-00fb-4579-bc4f-292b1f33becf", + "id": "1a4d871f-a98e-413f-8a89-8ceb9a078957", "name": "Lockout configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -58881,7 +58881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e95bbc7-1b95-4329-bdf3-3676eddd96de", + "id": "713fc3d4-074d-43ba-a668-8b64d4c3af2d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -58925,7 +58925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fb817b1-6e95-415f-850d-caf2c3c0efa2", + "id": "56bffb50-e6f9-45a8-b48d-495eaaa19b22", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -58969,7 +58969,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cf81a65-d9e0-422c-8bd2-06ddcb1e580f", + "id": "64983ccf-7314-48dd-b418-a60ee6b841ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59013,7 +59013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e80aadad-6c2e-4f84-92d5-90edbf6f4034", + "id": "dbf1bc67-065f-43c9-afbf-19bbc6861231", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59057,7 +59057,7 @@ "_postman_previewlanguage": "json" }, { - "id": "635aeb19-e640-4ef3-ad78-ae8effb75249", + "id": "5c658978-414d-42a3-b7d8-3ae6d4cfb568", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59101,7 +59101,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d4cdf1-8feb-4dd6-8ab0-288673dae4b1", + "id": "5fff96d0-9f41-44b9-9fb0-7d0e209c843a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59151,7 +59151,7 @@ } }, { - "id": "4016613a-0bf8-4170-8655-31a7bd811bf8", + "id": "6b1ef79d-19e0-47a2-badd-fee6338d457b", "name": "Update Auth Org Lockout Configuration", "request": { "name": "Update Auth Org Lockout Configuration", @@ -59194,7 +59194,7 @@ }, "response": [ { - "id": "52fdbc00-fdd5-420b-9186-871398742510", + "id": "4a6918c6-bb21-456f-b37a-fd841ee95a07", "name": "Updated Auth Org lockout configuration.", "originalRequest": { "url": { @@ -59251,7 +59251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4581543-8578-423b-816f-71db366be4ee", + "id": "8bb0f8a8-edd5-4cc9-88b3-010c9bbac79b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59308,7 +59308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ba0fe38-1038-4e3b-b613-d071513de3ce", + "id": "841f0b30-9b76-4264-b402-f53dbbd03cc6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59365,7 +59365,7 @@ "_postman_previewlanguage": "json" }, { - "id": "857be7eb-176e-4b80-a3b3-5593a6b2e393", + "id": "01bea895-247e-458f-90d6-4773238a2fdb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59422,7 +59422,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aebeb98a-2f06-41f8-bbe7-508fce2266a3", + "id": "23aca1c8-4215-4545-8a8f-c6585532b5c2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59479,7 +59479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df308996-2d0b-4548-abf4-c4c7a3135caa", + "id": "2373dded-8566-408e-8bf0-6d8a304c6d41", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59536,7 +59536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fddd8cde-bbae-461a-9457-ebd1d493baa3", + "id": "99cf8c77-2300-4093-a98e-05327111e76b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59599,7 +59599,7 @@ } }, { - "id": "73734811-0d11-4065-b124-f673ea8b25e9", + "id": "2533a3d3-24a6-43f8-be47-6ed660f76209", "name": "Get Service Provider Configuration.", "request": { "name": "Get Service Provider Configuration.", @@ -59629,7 +59629,7 @@ }, "response": [ { - "id": "72b3969b-5253-4899-b4fc-338da44a6b72", + "id": "60817562-f7dd-4c60-8358-9c253c5d9b1d", "name": "Service provider configuration for the tenant.", "originalRequest": { "url": { @@ -59673,7 +59673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96df92bb-c417-4d5c-8d54-fccb161c7ec3", + "id": "4b1dd13c-ba57-447e-b0b2-7c9192243901", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -59717,7 +59717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5fb596c-9b91-41df-a6c2-719ddf25b523", + "id": "f454ce4a-f1da-4e0b-9c07-32aa6690d9be", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -59761,7 +59761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f9ff78d-493c-458c-8872-c2b2db6b5766", + "id": "a0b1d308-8f28-457b-b603-08d45d13c127", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -59805,7 +59805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c2c647d-3ab8-4bc4-a893-1c65f3f91c65", + "id": "ca4608a0-e70d-481b-a522-d1256a6a496c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -59849,7 +59849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce5b6eb7-5138-4bd4-ae18-cf0d292e12c6", + "id": "dc6abf5f-0df6-4e9e-95c1-a7956ebc2042", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -59893,7 +59893,7 @@ "_postman_previewlanguage": "json" }, { - "id": "337bd92c-ffa3-4e68-bd32-b1c56d8b4578", + "id": "4b6f25ac-1c87-4778-98f5-68333e7807f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -59943,7 +59943,7 @@ } }, { - "id": "72b5cf48-e497-41f1-b2f8-be067b7dbf85", + "id": "46359eec-2a6f-4124-b347-10696290ca19", "name": "Update Service Provider Configuration", "request": { "name": "Update Service Provider Configuration", @@ -59986,7 +59986,7 @@ }, "response": [ { - "id": "f7ec37b7-d2a8-41b1-865f-df336191182d", + "id": "307bd428-08bc-42bc-93f9-58fc1e64b972", "name": "Auth Org Service Provider configuration updated.", "originalRequest": { "url": { @@ -60043,7 +60043,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2746598-a024-4330-ab09-bc3082775c0a", + "id": "b75b1a00-2557-44de-be86-5b11e35b601e", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -60100,7 +60100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a36f15b2-06d3-417a-ac46-0d057e6db379", + "id": "ef060a8f-5494-4ae6-ac13-3e4e12e70cd6", "name": "400.1.3 Illegal value", "originalRequest": { "url": { @@ -60157,7 +60157,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c43270c9-55ad-4abd-832b-1d00f1b45d71", + "id": "239bc229-8e04-4493-af65-9db29dd00e7c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60214,7 +60214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "987dcf0c-5ab6-47d6-8322-5c2d244b6b1f", + "id": "d4c14ef5-8629-4e0f-b426-1cf157731edf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60271,7 +60271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba513da9-2379-4181-853b-58b411ee7672", + "id": "4ea72f65-c1d6-478f-ab4b-db90cfdfcb7e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60328,7 +60328,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c17a0ada-599f-4ad9-8399-cf0d8ba7308b", + "id": "c1bcebe8-ceee-4840-bdfd-4438d4ed1d4d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60385,7 +60385,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fb88ec1-57ad-4ce8-86e2-2c783122c397", + "id": "72fcc031-93e8-4a5b-a774-b1e0ae69449c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60448,7 +60448,7 @@ } }, { - "id": "c4b853cd-0313-4560-a81a-601279409794", + "id": "bd5dc5ef-227f-47b3-accf-31917b212d0a", "name": "Get Auth Org Session Configuration.", "request": { "name": "Get Auth Org Session Configuration.", @@ -60478,7 +60478,7 @@ }, "response": [ { - "id": "56652dbc-fb6c-4160-9591-93a185cea89d", + "id": "9ad67206-c21d-451d-a573-1ac8522594a1", "name": "Session configuration for the tenant's auth org.", "originalRequest": { "url": { @@ -60522,7 +60522,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80ddd736-dbc2-4606-80c9-cf26f7885d90", + "id": "119c457d-e519-4a88-98c7-32789245e404", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60566,7 +60566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb28fb53-0517-4dfc-b22f-79d8d889db83", + "id": "0670382b-3c4a-4d80-807a-7135cc29a517", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -60610,7 +60610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f97c6e22-ea1f-4805-89a6-7b6d33aad953", + "id": "ae530fa4-8712-4b65-a212-e7f78fb6f2be", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -60654,7 +60654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d80eea8-58b4-4a72-82b1-d2f410acd88d", + "id": "8b1a169c-7c59-4f55-ab87-4a2a16703839", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -60698,7 +60698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "471bef38-cbc5-41f4-9e59-19e80b90f01e", + "id": "b13eb59d-d6e0-4c8e-984f-721ba73b9730", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -60742,7 +60742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d8310f6-50ef-4be6-be51-37e0d9300b27", + "id": "c16d405e-f89a-4b52-805b-25219d1e14f8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -60792,7 +60792,7 @@ } }, { - "id": "cf73f67a-c842-4d52-8ccf-8cc7f241887c", + "id": "644284a5-6ce3-46a6-9e2d-892e01ad93df", "name": "Update Auth Org Session Configuration", "request": { "name": "Update Auth Org Session Configuration", @@ -60835,7 +60835,7 @@ }, "response": [ { - "id": "ea6bef60-331e-4fe9-9de1-cfc2cce2769c", + "id": "b2441134-279c-4775-8d43-383b5a2f4d85", "name": "Updated Auth Org session configuration.", "originalRequest": { "url": { @@ -60892,7 +60892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29e2185c-dcf5-425f-8cdb-c6064311118e", + "id": "88fb0100-9784-4feb-ba67-80030944113d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -60949,7 +60949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4552905c-433c-468f-89ae-15adff07cd75", + "id": "b982767b-bf35-4a4e-9ac1-b2dbf55af83a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61006,7 +61006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a801818-05c4-492c-91f9-5efc49d2240b", + "id": "4a2e85f4-b2fe-41bd-81ca-9f7d28911f56", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61063,7 +61063,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd093893-a6a7-4519-b8af-564eacb8d5a7", + "id": "7f7fd0e3-7797-48c5-a23b-73b095f64c38", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -61120,7 +61120,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ed9d1b8-3243-4d20-8c16-611d169aa400", + "id": "42c67772-8774-4f7a-9099-7b793f65eaad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61177,7 +61177,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6d2f220-0264-4eae-9429-25349894699d", + "id": "4d8de125-bfb8-42c9-ae24-469887ad58a1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61246,7 +61246,7 @@ "description": "Use this API to implement identity profile functionality. \nWith this functionality in place, administrators can view identity profiles and their configurations. \n\nIdentity profiles represent the configurations that can be applied to identities as a way of granting them a set of security and access, as well as defining the mappings between their identity attributes and their source attributes. \n\nIn Identity Security Cloud, administrators can use the Identities drop-down menu and select Identity Profiles to view the list of identity profiles. \nThis list shows some details about each identity profile, along with its status. \nThey can select an identity profile to view its settings, its mappings between identity attributes and correlating source account attributes, and its provisioning settings. \n\nRefer to [Creating Identity Profiles](https://documentation.sailpoint.com/saas/help/setup/identity_profiles.html) for more information about identity profiles.\n", "item": [ { - "id": "46b3870f-febf-4618-9fca-a1ed55f01bfd", + "id": "6ee38b91-9806-46e3-a696-b064fb8267df", "name": "Identity Profiles List", "request": { "name": "Identity Profiles List", @@ -61321,7 +61321,7 @@ }, "response": [ { - "id": "6f7810b0-7f53-4248-a651-f5db59d94b3c", + "id": "bdd089bd-2abe-4987-8d96-b89a1dc933d2", "name": "List of identityProfiles.", "originalRequest": { "url": { @@ -61410,7 +61410,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb7ee638-6d04-495b-a1dc-e222b67bcac5", + "id": "d3834975-42b9-41cd-b4c7-24c606dd2478", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -61499,7 +61499,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88a6216c-f66c-44a4-b2a3-0c329050b10b", + "id": "b8f92384-6904-4963-a387-d8016a17f8f2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -61588,7 +61588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8abb687d-da4a-4948-9376-099ca031b767", + "id": "d9978234-637c-497d-a8f3-d20fce0d2563", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -61677,7 +61677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70fdf35e-2347-4d94-9c7f-7d5f589f129e", + "id": "3f42d1af-2393-483d-8842-a39138e75d62", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -61766,7 +61766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66c6d50e-aa91-4eb0-b703-a740d9b9b32d", + "id": "cd57baef-b032-48b1-aedb-5dda4d892354", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -61861,7 +61861,7 @@ } }, { - "id": "93d3da67-38d7-4bd1-8a69-66d5d33a8f6e", + "id": "9fd65605-09c1-45c8-9f58-0b819e95f337", "name": "Create an Identity Profile", "request": { "name": "Create an Identity Profile", @@ -61903,7 +61903,7 @@ }, "response": [ { - "id": "8e0a0885-a691-448e-8e0c-cb870becd388", + "id": "d568879b-a816-40a6-9f30-ea4b9c88e7af", "name": "The created Identity Profile", "originalRequest": { "url": { @@ -61959,7 +61959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "661d9aff-b961-4357-b0b1-fa6a30c086c0", + "id": "05dae5e1-283d-4cb0-8ff7-9fd4dcb7424f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62015,7 +62015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d18f051-22c1-4b8f-87f2-d8706d5101ad", + "id": "19ab6512-59c0-41d5-887f-827b555cc592", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62071,7 +62071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "111244a7-df72-4c34-a7ed-f30e9c0e822a", + "id": "f8c77028-cd4d-4c40-bb90-976835981658", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62127,7 +62127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c52363a2-10df-4465-8f74-8111cdf05179", + "id": "385de18f-e118-42eb-9db9-dc427f597f70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62183,7 +62183,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8009dd32-2fb2-4ce7-b426-fc13edcde3db", + "id": "bd4cf149-6293-49a2-a2b5-4726e157abba", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62245,7 +62245,7 @@ } }, { - "id": "9c861f47-3d53-48aa-8aeb-746c317fcd74", + "id": "80120f0d-17c3-4db8-b01d-d9a162ff0563", "name": "Delete Identity Profiles", "request": { "name": "Delete Identity Profiles", @@ -62288,7 +62288,7 @@ }, "response": [ { - "id": "934e2f70-649b-42f5-907f-2a56dcc09dcc", + "id": "af9d9324-5e77-4569-8b1a-936d051c2d33", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -62340,12 +62340,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1969-09-11T03:19:11.321Z\",\n \"launched\": \"1956-01-05T06:02:27.662Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1971-01-18T02:52:05.642Z\",\n \"launched\": \"2015-12-21T17:01:20.222Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "90337a30-a046-4d60-815e-8e5331824040", + "id": "5b2c5498-0aa1-4d63-9d85-fe7c5f99ffee", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62402,7 +62402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "01e3e0b1-0976-4d41-8a20-8e2815c696a2", + "id": "9d8b51ae-a4f0-4437-a3f9-30b99a4239ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62459,7 +62459,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09eba8fe-70a4-491e-9b3c-f9c266ac68f0", + "id": "02e7fcf6-27eb-44e1-aaee-bdcfa5d32892", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -62516,7 +62516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "296becee-800c-40e2-93c4-33c9e3c1b3ad", + "id": "79ce613c-f867-4c98-bd6f-51794dcc593b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -62573,7 +62573,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48c00f18-60e2-4940-8b5a-dcde5cb9b20e", + "id": "0e05740b-db82-4f4e-bf6c-6486f1f62908", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -62636,7 +62636,7 @@ } }, { - "id": "e2e50380-16dd-499c-bd4f-969753496a0c", + "id": "26374d53-1647-4423-be69-db7295e5945f", "name": "Export Identity Profiles", "request": { "name": "Export Identity Profiles", @@ -62712,7 +62712,7 @@ }, "response": [ { - "id": "439a59e7-5e00-47c5-9496-9077f09d462e", + "id": "912698ad-9687-48a4-b9bd-cb0fe6fbd444", "name": "List of export objects with identity profiles.", "originalRequest": { "url": { @@ -62802,7 +62802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3be30e8-508e-4e76-b3f7-128129c2497f", + "id": "4d92df3b-1d52-4ffb-96ee-037f321137e8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -62892,7 +62892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6558412-e393-4bbd-a74c-faa38f311369", + "id": "879027af-30c0-4f4d-adea-82c13b6cbcf4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -62982,7 +62982,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb479e9b-d203-4efd-bceb-571759bba24d", + "id": "b9b806b9-8e30-413d-a703-de9cdf29af36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63072,7 +63072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f0201d0-abd4-4e50-828f-27178d9cfb6d", + "id": "2906900a-264c-402f-be5f-17818d3b65af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63162,7 +63162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6d448503-90fc-4daa-9f9b-d34b2a382dfb", + "id": "ba98af02-3e53-4716-8298-3be703585661", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63258,7 +63258,7 @@ } }, { - "id": "6849fdf8-8485-423d-8711-22ce66c550c1", + "id": "96c3bd93-403f-4f5a-aed9-9e162bd3cace", "name": "Import Identity Profiles", "request": { "name": "Import Identity Profiles", @@ -63301,7 +63301,7 @@ }, "response": [ { - "id": "72379ab4-d5dd-4845-b787-3ec50b72c4e4", + "id": "e842d0dc-b86b-4aeb-b999-21061a4cd578", "name": "The result of importing Identity Profiles.", "originalRequest": { "url": { @@ -63358,7 +63358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32369d39-4b06-4976-9497-96eaea4e80f8", + "id": "4ed59a7b-053c-4565-9629-aa76a51d98d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63415,7 +63415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1c18394-dea0-4bb5-95c2-6ee86bb32999", + "id": "1526f6c4-07f1-4a14-94d7-3371b1946cfd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63472,7 +63472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1674df77-9bf3-439e-8eea-9ab913422917", + "id": "62962905-4bb0-436f-9777-0d12a9b1dd6d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63529,7 +63529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "712a7c18-70a6-49d5-b571-36e84609dcf9", + "id": "a0e89aee-19ef-4045-b3cc-cc00a24863ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63586,7 +63586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b34852fb-e45c-47e1-86ec-e0611d1aa20e", + "id": "4f4828a9-378a-41a2-9588-a53d97e5800c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -63649,7 +63649,7 @@ } }, { - "id": "8f4fa7e4-7b3b-4670-9d37-7caae8792276", + "id": "b95da16c-0b98-444d-90e0-58b887db8b25", "name": "Generate Identity Profile Preview", "request": { "name": "Generate Identity Profile Preview", @@ -63681,7 +63681,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -63692,7 +63692,7 @@ }, "response": [ { - "id": "2219e604-1b75-4828-8651-64d5779c474d", + "id": "69f08ae0-18f2-479b-9356-1beed7c0bb78", "name": "A preview of the identity attributes after applying identity attributes config sent in request body.", "originalRequest": { "url": { @@ -63727,7 +63727,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -63749,7 +63749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4f8344a-1c88-4ee6-999b-50cde19d39d9", + "id": "6b3303b3-e806-4353-9c4d-e1c63e0b15f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -63784,7 +63784,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -63806,7 +63806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60ebd9d8-d0ab-4161-b870-28e3c0cb92ab", + "id": "34570653-8750-4ef1-9e9c-c1183242e8f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -63841,7 +63841,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -63863,7 +63863,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b054a89-efa2-4cd2-87ef-357d35f51f15", + "id": "bba89f17-6491-47e7-8564-8060347630f0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -63898,7 +63898,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -63920,7 +63920,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e4cedab-cdce-4427-b1e3-e532f9487555", + "id": "b20c4782-60a3-4424-b536-0d7e44c3e0ab", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -63955,7 +63955,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -63977,7 +63977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa1b5495-e04d-4b3f-adaf-a7f3fa2d8f72", + "id": "977f0b62-e1a3-4a42-af5a-02829b85d22f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64012,7 +64012,7 @@ "method": "POST", "body": { "mode": "raw", - "raw": "{\n \"identityId\": \"urn:uuid:05845630-e769-0e8c-176a-a16b936f5f60\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", + "raw": "{\n \"identityId\": \"00906996-f1b0-89e3-d072-23a80eeb194f\",\n \"identityAttributeConfig\": {\n \"enabled\": true,\n \"attributeTransforms\": [\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n },\n {\n \"identityAttributeName\": \"email\",\n \"transformDefinition\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"e-mail\",\n \"sourceName\": \"MySource\",\n \"sourceId\": \"2c9180877a826e68017a8c0b03da1a53\"\n }\n }\n }\n ]\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -64040,7 +64040,7 @@ } }, { - "id": "1148a9bb-8472-41ec-8f2e-b60b93f69bb2", + "id": "cb3e0fdc-3859-47b4-a92f-6cc2bcdb4d05", "name": "Get single Identity Profile", "request": { "name": "Get single Identity Profile", @@ -64081,7 +64081,7 @@ }, "response": [ { - "id": "15960e5a-f251-4aca-87f3-461631177519", + "id": "717e07f4-4068-46b8-a2d1-4ae41fd60a8c", "name": "An Identity Profile object.", "originalRequest": { "url": { @@ -64125,7 +64125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc04eec3-bf44-4ce6-827b-10919010ca7b", + "id": "8371e18d-cec4-41e5-a0d0-c62c61b5d2de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64169,7 +64169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6649f57-8e92-4353-be60-93d6dda3d75c", + "id": "da27abd3-66a6-4be6-afac-f471af01904c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64213,7 +64213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48a380b5-868f-4bb4-b0e5-5e162814c359", + "id": "5bd343c3-6d41-4226-93bd-c875969413bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64257,7 +64257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50b4818e-2947-473d-a8a4-e78591a4c1d6", + "id": "a9d222b7-79d0-4dcf-abd3-d6b17b067212", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64301,7 +64301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b275f93a-6fd3-4af5-8c50-07fd8b8d4d8d", + "id": "93516cc1-8304-44bb-992e-e54e8790e1bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64345,7 +64345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe50e1ce-9c07-40ca-a7fc-9a9e73ce5e89", + "id": "fe3b16cc-14a6-4bd7-8b21-48db509187b9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64395,7 +64395,7 @@ } }, { - "id": "25d5e572-a369-4395-b4cc-d8d7be0ae462", + "id": "8c0c6ab1-e2a2-46f4-a2c6-25ac9f2e5684", "name": "Delete an Identity Profile", "request": { "name": "Delete an Identity Profile", @@ -64436,7 +64436,7 @@ }, "response": [ { - "id": "43116269-dc20-4562-bd02-3d336cdff08e", + "id": "33a88f13-0f4a-48e2-8539-bfca6284b15f", "name": "Accepted - Returns a TaskResult object referencing the bulk delete job created.", "originalRequest": { "url": { @@ -64475,12 +64475,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1984-03-10T07:55:22.628Z\",\n \"launched\": \"1984-12-10T12:33:54.106Z\",\n \"completionStatus\": \"Success\"\n}", + "body": "{\n \"id\": \"ff8081814d977c21014da056804a0af3\",\n \"name\": \"Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d\",\n \"description\": \"Generic task for terminating data in the overlay, used by the TerminationService.\",\n \"launcher\": \"support\",\n \"completed\": \"1970-12-08T03:05:37.559Z\",\n \"launched\": \"1978-03-25T01:57:47.270Z\",\n \"completionStatus\": \"Success\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e374eb9f-7dc1-4c3c-b330-2a9e0af5c7d6", + "id": "cf839a50-ad6d-4a28-b0ec-7d7d38bda340", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64524,7 +64524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38b3fb45-a3e8-4315-8ec8-9d78204c3207", + "id": "c08ba6d5-d659-46aa-9006-6df0426520ba", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64568,7 +64568,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cd7ffdf-1dcb-4671-bb55-022506b25b14", + "id": "5099ccfb-e86e-4876-b168-603806bc052c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -64612,7 +64612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6847ae11-ca30-4604-809f-1d66cc186b29", + "id": "cc9f832b-35b2-47e9-bc0c-50df66a82203", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -64656,7 +64656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3087d2a-6cad-42ba-9063-0fd996b4b64f", + "id": "4d340e70-8f05-4e03-8ea4-eb5264cfd8fe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -64700,7 +64700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db5d7062-073a-4fd6-932e-46409ee584ad", + "id": "67637671-4f12-4868-8998-fc3355459fc0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -64750,7 +64750,7 @@ } }, { - "id": "a3b4926e-4d1b-4d98-a730-450265548a3f", + "id": "995df2a3-9ba3-48af-bed4-5c90063a5dc5", "name": "Update the Identity Profile", "request": { "name": "Update the Identity Profile", @@ -64804,7 +64804,7 @@ }, "response": [ { - "id": "5199009a-fb6b-43e1-9221-1388900c9f13", + "id": "3ea935a1-4d76-4d9c-ab44-9808391e0c38", "name": "The updated Identity Profile.", "originalRequest": { "url": { @@ -64861,7 +64861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2b57889-a027-42c2-85b8-34b0e499dc6e", + "id": "bbb14e1f-225e-46cf-8459-700d6de93919", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -64918,7 +64918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "996c145f-d90c-4f44-8a57-5ba6b1aad072", + "id": "639931b5-4a40-4a05-8ea7-d04129db95b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -64975,7 +64975,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1633b36a-7a05-4b71-bc9e-7ceb78723f37", + "id": "7d3a4880-269e-4f97-8a4e-d72b3986b99d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65032,7 +65032,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2abb8a3-06d4-4a36-b78f-95c085c8f544", + "id": "d0e65acb-4ca8-4985-a2c8-29cd6e7e5b7a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65089,7 +65089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43766043-6cc5-4b36-bd96-459d84287b4f", + "id": "05598681-c7d4-482d-812a-70bdef8a5f48", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65146,7 +65146,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcc38ac5-92f5-425e-9206-1d0996ea00eb", + "id": "cc1e681f-a505-436b-8729-e5a4a58c4e63", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65209,7 +65209,7 @@ } }, { - "id": "f4830a14-81d7-45dc-a1e8-89da0384df16", + "id": "3f8b3c14-4df0-46b3-b4bb-e5cde79a1b61", "name": "Get default Identity Attribute Config", "request": { "name": "Get default Identity Attribute Config", @@ -65251,7 +65251,7 @@ }, "response": [ { - "id": "ae295955-60a9-4d46-81be-f8c7483a94b4", + "id": "4e4a5955-3dac-4313-990f-ba24e7266fac", "name": "An Identity Attribute Config object.", "originalRequest": { "url": { @@ -65296,7 +65296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdc33af6-cb47-4c32-a741-77405c3afd37", + "id": "5c5a2236-1afa-40d9-b166-7968f8b1d03a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65341,7 +65341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bf3b5218-25bd-4127-bbb3-03049679f460", + "id": "4c87fd8e-9595-49ca-b4ea-72dd17ddc646", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65386,7 +65386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6bb569d-93d9-4651-8ede-95781615dd5f", + "id": "14c8b8dd-5e4e-4bb6-a532-4edb86cd3f80", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65431,7 +65431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ed66ade-1e5f-4208-84fa-386c4caca0ef", + "id": "6b34eae6-40d1-460b-b458-975bf48b233d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65476,7 +65476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5beced00-4e52-4875-ba07-d04c7b284188", + "id": "26d7ff16-b8dc-41fe-8c2e-1de5d554af13", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65521,7 +65521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7966fb38-ae33-4bf7-af26-9fe91cc754ac", + "id": "78ea8e85-e082-4665-a490-475100c93d69", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65572,7 +65572,7 @@ } }, { - "id": "54aa592d-0274-43ef-b703-3f43951a78f2", + "id": "8111fe60-afe9-43b1-879a-256744adc7d4", "name": "Process identities under profile", "request": { "name": "Process identities under profile", @@ -65614,7 +65614,7 @@ }, "response": [ { - "id": "c85a9b6c-688d-4090-92d7-846398ef9125", + "id": "067f882e-3042-4d07-a4f8-fb5fd3d3b666", "name": "Accepted status after refresh has launched", "originalRequest": { "url": { @@ -65659,7 +65659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e4c8a4fe-c2bf-4659-b9c8-3557853cf98c", + "id": "cc63db45-7a29-4cf7-8bcb-15c73d1489a1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -65704,7 +65704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05daa887-898c-442c-bed7-ddaedd0d81fd", + "id": "ec12dc61-3551-4930-bd34-5d2017d43d4b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -65749,7 +65749,7 @@ "_postman_previewlanguage": "json" }, { - "id": "934492fc-a36c-44d2-9964-ea9ef78c5cf7", + "id": "a6876b4d-9c17-4749-a385-4f3c005956fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -65794,7 +65794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4bc5763-2784-46ec-bb36-72c5c770abcd", + "id": "916f3307-ac98-46b3-9cf9-3ee169492218", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -65839,7 +65839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66677146-09b0-4eb8-8d61-e9c78f3ebdeb", + "id": "129663c5-6e41-4449-a418-8c25ff567c73", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -65884,7 +65884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b50ff87-6e0a-41dc-a83e-11cbd702bf8b", + "id": "1eb20e46-0ea2-4bb9-978a-1e908d990645", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -65941,7 +65941,7 @@ "description": "Use this API to implement and customize lifecycle state functionality.\nWith this functionality in place, administrators can create and configure custom lifecycle states for use across their organizations, which is key to controlling which users have access, when they have access, and the access they have.\n\nA lifecycle state describes a user's status in a company. For example, two lifecycle states come by default with Identity Security Cloud: 'Active' and 'Inactive.' \nWhen an active employee takes an extended leave of absence from a company, his or her lifecycle state may change to 'Inactive,' for security purposes. \nThe inactive employee would lose access to all the applications, sources, and sensitive data during the leave of absence, but when the employee returns and becomes active again, all that access would be restored. \nThis saves administrators the time that would otherwise be spent provisioning the employee's access to each individual tool, reviewing the employee's certification history, etc. \n\nAdministrators can create a variety of custom lifecycle states. Refer to [Planning New Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#planning-new-lifecycle-states) for some custom lifecycle state ideas.\n\nAdministrators must define the criteria for being in each lifecycle state, and they must define how Identity Security Cloud manages users' access to apps and sources for each lifecycle state.\n\nIn Identity Security Cloud, administrators can manage lifecycle states by going to Admin > Identities > Identity Profile, selecting the identity profile whose lifecycle states they want to manage, selecting the 'Provisioning' tab, and using the left panel to either select the lifecycle state they want to modify or create a new lifecycle state. \n\nIn the 'Provisioning' tab, administrators can make the following access changes to an identity profile's lifecycle state: \n\n- Enable/disable the lifecycle state for the identity profile.\n\n- Enable/disable source accounts for the identity profile's lifecycle state.\n\n- Add existing access profiles to grant to the identity profiles in that lifecycle state.\n\n- Create a new access profile to grant to the identity profile in that lifecycle state.\n\nAccess profiles granted in a previous lifecycle state are automatically revoked when the identity moves to a new lifecycle state. \nTo maintain access across multiple lifecycle states, administrators must grant the access profiles in each lifecycle state. \nFor example, if an administrator wants users with the 'HR Employee' identity profile to maintain their building access in both the 'Active' and 'Leave of Absence' lifecycle states, the administrator must grant the access profile for that building access to both lifecycle states.\n\nDuring scheduled refreshes, Identity Security Cloud evaluates lifecycle states to determine whether their assigned identities have the access defined in the lifecycle states' access profiles. \nIf the identities are missing access, Identity Security Cloud provisions that access. \n\nAdministrators can also use the 'Provisioning' tab to configure email notifications for Identity Security Cloud to send whenever an identity with that identity profile has a lifecycle state change. \nRefer to [Configuring Lifecycle State Notifications](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#configuring-lifecycle-state-notifications) for more information on how to do so.\n\nAn identity's lifecycle state can have four different statuses: the lifecycle state's status can be 'Active,' it can be 'Not Set,' it can be 'Not Valid,' or it 'Does Not Match Technical Name Case.' \nRefer to [Moving Identities into Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html#moving-identities-into-lifecycle-states) for more information about these different lifecycle state statuses. \n\nRefer to [Setting Up Lifecycle States](https://documentation.sailpoint.com/saas/help/provisioning/lifecycle.html) for more information about lifecycle states.\n", "item": [ { - "id": "67708914-e99a-449d-9515-49356f07c191", + "id": "dfa0332d-ec4c-47ef-97a2-bfb60e93c602", "name": "Set Lifecycle State", "request": { "name": "Set Lifecycle State", @@ -65996,7 +65996,7 @@ }, "response": [ { - "id": "130e8441-dd53-4aec-b34f-c63bd6dc2c7b", + "id": "35fdaf40-8ac7-4415-8253-6274e9c766fa", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -66054,7 +66054,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d89d1ab6-af89-4813-8ad0-905e1dd654f1", + "id": "5ffc0aab-8fdc-41f2-9a0a-04369cec32e0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66112,7 +66112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b364a3d-f80b-4a09-82bf-af1669978a30", + "id": "c78cf4e6-bdf9-468e-aa72-69bebcc79556", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66170,7 +66170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be6a550b-1b0a-4e4f-a4a7-1e20cbe43646", + "id": "5805bc7f-f4f5-4c57-93c9-0965cafdf039", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66228,7 +66228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e5e3b0e-aa8b-4793-9dd8-f9c22f520737", + "id": "c9d20474-1d8d-4194-a0ee-f1123d4b6e94", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -66286,7 +66286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e52b425-1b64-45cb-9e3b-3f77f8c13514", + "id": "0f2ff764-afe5-4d4b-8439-f3797860de1a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66344,7 +66344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fa9992d-5e45-4a82-a12a-f0645958fa12", + "id": "988287e7-9412-4b16-b4ac-c922b51192e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66408,7 +66408,7 @@ } }, { - "id": "44d82a7a-1d5a-40e5-970a-7a51e212b2ae", + "id": "8bdbb7aa-30d6-4bc1-b9e0-37e011ff0937", "name": "Lists LifecycleStates", "request": { "name": "Lists LifecycleStates", @@ -66487,7 +66487,7 @@ }, "response": [ { - "id": "f187b5a0-21d8-4f38-8e1c-45eaa97ea0fb", + "id": "4b65f70a-560b-4ed9-a6a2-fd4acc23d7ba", "name": "List of LifecycleState objects.", "originalRequest": { "url": { @@ -66569,7 +66569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c23227f-6434-4b90-ae71-1b93735fed97", + "id": "7fbb4a2d-b9ca-4d9c-b298-51abc658a293", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -66651,7 +66651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95d23f61-510c-4838-a527-f7c6810cbe8a", + "id": "626e656a-cea9-4d7d-abde-0b5236a91c3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -66733,7 +66733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c7f8edf-88c7-4f30-8505-2ce63b4d1201", + "id": "b789e9a2-f89f-4eb9-a408-7d276825e770", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -66815,7 +66815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "84672211-99be-4bc6-89d4-ad01cafe6adc", + "id": "552740a5-090d-4d2d-b81f-2a501d9d88a7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -66897,7 +66897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d467ab9-6f95-4bda-ae14-129bfd5efa86", + "id": "91ca622d-16bf-4900-8d6d-3ae0b3dcb5b4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -66985,7 +66985,7 @@ } }, { - "id": "a6416314-1493-406b-bc77-abfbb5bca211", + "id": "c9d28f6d-6617-417a-98a4-7442087ab29c", "name": "Create Lifecycle State", "request": { "name": "Create Lifecycle State", @@ -67040,7 +67040,7 @@ }, "response": [ { - "id": "f20007f3-7ab4-4b61-ad77-2474ae7d1ac4", + "id": "fd79228b-1226-4804-8624-e93c2b2b1b78", "name": "Created LifecycleState object.", "originalRequest": { "url": { @@ -67098,7 +67098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "543239bd-3b85-4012-a6a8-28334cdd546e", + "id": "983eb91f-05d8-416c-98ec-581c10ca0883", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67156,7 +67156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "798e828b-2e83-4bac-aed8-79ed0044c238", + "id": "1d9fc8b0-8b5a-4c42-bae3-b89349509696", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67214,7 +67214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd5fd6e7-2bb6-4989-aedc-28c11f8bc123", + "id": "bbf84c7e-2d6e-4653-be3f-4e70850f433f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67272,7 +67272,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3df5739f-a397-4f21-986c-9895064645a1", + "id": "391c7bd5-10d9-4eaf-ad66-c6e051db2de1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67330,7 +67330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51d10c91-e595-48d3-87c4-d95f03365499", + "id": "607a216b-0cc9-476c-aec2-dc347ba44d62", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67394,7 +67394,7 @@ } }, { - "id": "66eeab98-b8d2-4013-b9c4-2a3ab1b9ff16", + "id": "4a9ff7c1-4d97-47b9-aa5a-d64d29e8208d", "name": "Get Lifecycle State", "request": { "name": "Get Lifecycle State", @@ -67447,7 +67447,7 @@ }, "response": [ { - "id": "344829bd-21b3-483d-b445-5b1a7ce7a46a", + "id": "f53008c7-31cf-466b-8c1e-056e03b54316", "name": "The requested LifecycleState was successfully retrieved.", "originalRequest": { "url": { @@ -67493,7 +67493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c3ab95e-e096-47b1-8cb0-667ec3fc415e", + "id": "938dc4d7-6199-44ed-9486-12d36cfddf4a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67539,7 +67539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10b3163a-39b1-48a3-ad73-8c233a056444", + "id": "3ec9347a-5152-426a-8580-2bc365987d1a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -67585,7 +67585,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b13c992-5826-433d-bef6-0ac3ccbce43b", + "id": "f9f30e77-0642-4520-aac3-d33023760eec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -67631,7 +67631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "386bf318-c822-4f63-806f-3a9b19d144bb", + "id": "84d77f66-b8a5-41b7-93c7-e5317dc7931c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -67677,7 +67677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e846dbe-d9c5-4763-8023-619fbe2c1447", + "id": "4dfa0d94-3841-47bf-b2ff-8b5e4358d393", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -67723,7 +67723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62910288-ad2a-4163-b25f-8a7b2ffa6e2d", + "id": "447cfa99-d604-4137-b079-fc88b48985b0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -67775,7 +67775,7 @@ } }, { - "id": "c544e8f8-5dc3-457d-81cb-687631b03233", + "id": "fc9bfde8-ee23-4687-a8fe-3478dcf94b35", "name": "Update Lifecycle State", "request": { "name": "Update Lifecycle State", @@ -67841,7 +67841,7 @@ }, "response": [ { - "id": "3eda9821-31bb-4668-bfd8-0d7a136c8aac", + "id": "be8ddc9c-d8fd-45da-810d-54bb67925c21", "name": "The LifecycleState was successfully updated.", "originalRequest": { "url": { @@ -67900,7 +67900,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27f604d4-c740-4a22-8d25-c14e264a8ae0", + "id": "06201663-5b3a-41c6-9bfd-522ba724fac3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -67959,7 +67959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e5fcd5e-81e1-4949-a434-6d71825acc69", + "id": "aa0b23f3-e24d-43a6-86ce-b305c4a5bd0e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68018,7 +68018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d713bcb-6910-4c9a-a3b3-d110478dbf99", + "id": "1f14da98-ea45-4f46-84a6-a4eeb10cc5b7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68077,7 +68077,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc560d4e-f577-4e39-973e-baa3857b414a", + "id": "bfe2048c-0495-4e66-af95-57fafbca4114", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68136,7 +68136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b4a5dc7-7935-4f27-8dbd-13c744be7419", + "id": "c22e9f37-19e8-4778-9f29-c85f4d78ae97", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68195,7 +68195,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8793ecac-3b1e-4983-8894-508167125be8", + "id": "c89b6798-8683-482f-b9ce-7b6071e6350a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68260,7 +68260,7 @@ } }, { - "id": "57bbd4ec-2431-44bb-bd83-20d619cde752", + "id": "cc04c4c0-e8ce-4a23-8f50-481d770d1f7a", "name": "Delete Lifecycle State", "request": { "name": "Delete Lifecycle State", @@ -68313,7 +68313,7 @@ }, "response": [ { - "id": "ec04ae39-8901-4929-af45-c728960ba36e", + "id": "e1887e05-8365-42b6-b2ef-f7a16963c756", "name": "The request was successfully accepted into the system.", "originalRequest": { "url": { @@ -68354,12 +68354,12 @@ "value": "application/json" } ], - "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"exercitation quis dolor\",\n \"name\": \"Contractor Lifecycle\"\n}", + "body": "{\n \"type\": \"LIFECYCLE_STATE\",\n \"id\": \"in ut\",\n \"name\": \"Contractor Lifecycle\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "a3e0b266-3acd-4f1c-9873-63bb28b693ad", + "id": "f894c0a1-96d9-40c2-ba74-5be636250eba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68405,7 +68405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3869d10b-7504-480c-ae64-98579533e87c", + "id": "8c460216-b297-4220-95bb-554d768e1ef3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68451,7 +68451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d5888e1-d1ae-4de2-9815-37a0a485fe16", + "id": "e53efafa-e7bd-4d2e-807e-d93b542fc042", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -68497,7 +68497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b846d4c-2126-442b-aaad-4fe5de347be3", + "id": "2016d951-2f3a-4e1f-99e9-863c08a3cf36", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -68543,7 +68543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85046ef2-eac5-4dfe-b099-4865043de2b3", + "id": "124ba411-e8aa-472a-9300-c96d481b2808", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -68589,7 +68589,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fea93111-0e58-42ab-9331-0b8014b048e8", + "id": "dcd3de77-a6bc-49a1-8e91-605e4e093523", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -68647,7 +68647,7 @@ "description": "Read and create operations for client data and statuses", "item": [ { - "id": "9913b2a6-97a2-4a8a-8574-9db97b094f49", + "id": "e98dc973-f05f-480b-a771-59a630a5674e", "name": "Get Managed Clients", "request": { "name": "Get Managed Clients", @@ -68713,7 +68713,7 @@ }, "response": [ { - "id": "a17aad1d-85ad-4056-bfb0-8469d48d44a9", + "id": "9d96297c-6f81-43dd-bf40-8ba9b0c69ae9", "name": "Responds with a list of ManagedClient based on the query params provided", "originalRequest": { "url": { @@ -68788,12 +68788,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"adipisicing fugiat dolore\",\n \"cookbook\": \"commodo consequat irure\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"ipsum aliq\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n },\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"aute esse qui proident\",\n \"cookbook\": \"qui cupidatat velit ut cillum\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"minim sed consequat\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n }\n]", + "body": "[\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"\",\n \"cookbook\": \"amet quis cillum id\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"cillum Duis fugiat Excepteur\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n },\n {\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"et Excepteur consectetur irure\",\n \"cookbook\": \"deserunt laborum\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"dolore veniam\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "4f4752fe-9f32-41c5-b6bc-0cda3b9ee6c0", + "id": "8b53dae5-1911-4375-aa21-98eac1e6d383", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -68873,7 +68873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "599f5c09-9a02-4e61-9bc3-38bd8bc2377f", + "id": "ea7013ee-5073-428e-be69-20d7788e8931", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -68953,7 +68953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19f7ae36-e417-4d0d-aab3-4176dc3d5fa4", + "id": "0364b0a7-c559-4d09-879e-aa786ec038ec", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69033,7 +69033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d55f703-0f9f-4829-ae07-3c8ef5f1778d", + "id": "cf72cd05-c424-4fb5-81b0-3dd370c44d16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69113,7 +69113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41682541-ac8c-4364-a23b-e10e801a9e22", + "id": "0028c09f-e13d-4417-86f0-13638d079bde", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69199,7 +69199,7 @@ } }, { - "id": "3ee2bde6-c01c-476d-abb2-5d323acdddba", + "id": "23bb9771-ad78-404f-b2f5-539327405790", "name": "Create a new Managed Client", "request": { "name": "Create a new Managed Client", @@ -69241,7 +69241,7 @@ }, "response": [ { - "id": "36df3c5c-5788-44ed-9d86-61927cb2389e", + "id": "b911438d-36f6-4fbb-b40e-6af2873005c6", "name": "The created ManagedClient", "originalRequest": { "url": { @@ -69292,12 +69292,12 @@ "value": "application/json" } ], - "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"sit\",\n \"cookbook\": \"Lorem reprehenderit aliqua ipsum\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"esse in sint voluptate\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", + "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"ut\",\n \"cookbook\": \"et\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"nostrud magna\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "dbf61534-077d-43e9-be3c-9b935332e897", + "id": "ddc4ac2b-4b64-4c42-a051-531c719da315", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69353,7 +69353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "738235fc-0f97-4ac1-8276-0015ac13774a", + "id": "b609836a-8951-4812-92e5-f101b6cf50f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69409,7 +69409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c79c4c5e-0dd2-4c26-b7b8-d7aef2446366", + "id": "c06422a2-fbd9-41f2-a4ac-92b9596e2711", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69465,7 +69465,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5551e0eb-632b-4f1c-9919-961dee7fa431", + "id": "bb5d2d78-8a2a-423a-a3d6-6ddfd93d546c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69521,7 +69521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5aec6245-b0f9-4384-8920-6aa5a675d593", + "id": "ae7bbc98-d194-408f-af22-4942aaa5b267", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69583,7 +69583,7 @@ } }, { - "id": "ce0cbccb-89d4-4f51-9bf1-d936392e3ba4", + "id": "bdf05cb2-99a7-467b-98eb-d986bdf96d3f", "name": "Get a Managed Client", "request": { "name": "Get a Managed Client", @@ -69624,7 +69624,7 @@ }, "response": [ { - "id": "b796f61b-6656-4a16-8f8a-514299ba551d", + "id": "f95fb0db-02fd-4186-9881-d126026ea2f1", "name": "Responds with a Managed Client", "originalRequest": { "url": { @@ -69663,12 +69663,12 @@ "value": "application/json" } ], - "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"sit\",\n \"cookbook\": \"Lorem reprehenderit aliqua ipsum\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"esse in sint voluptate\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", + "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"ut\",\n \"cookbook\": \"et\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"nostrud magna\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d7171986-ce8c-457f-b3e0-8dcc1a0773e5", + "id": "34cedfba-9311-4c72-a727-feb8da683935", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -69712,7 +69712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e3900b6-c110-4461-9cfd-3d26e6ac0ecc", + "id": "5c2ee861-61f7-4017-be3a-ad74a0bf7ae2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -69756,7 +69756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "018ae9e8-b3df-4d29-8b0f-5210624474bd", + "id": "9c2a3f9d-3f48-4526-a461-7ad16b8b0af7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -69800,7 +69800,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f8bc014-43bb-479e-9a8c-46021c5ff370", + "id": "afa68238-828a-4dc6-966b-42a1e8c10ce5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -69844,7 +69844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34c6eaed-e2c3-436c-a245-eedd3c139797", + "id": "af27b53c-f366-4b1f-b0b8-06f0fe6bfee7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -69888,7 +69888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0bd690ad-07a4-4393-ad92-7f1e83e5180a", + "id": "954d83e2-21cc-4dd6-99be-4c3e65626236", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -69938,7 +69938,7 @@ } }, { - "id": "8ac82d22-718b-4464-86ac-0e85c6b8675f", + "id": "29b40cda-6bad-47f1-9837-c3dea55bc80b", "name": "Update a Managed Client", "request": { "name": "Update a Managed Client", @@ -69992,7 +69992,7 @@ }, "response": [ { - "id": "74760597-436c-4a85-b0fa-ad5911cf58be", + "id": "41b8d4ca-f89b-452e-a94a-6a99af255e51", "name": "The updated Managed Client", "originalRequest": { "url": { @@ -70044,12 +70044,12 @@ "value": "application/json" } ], - "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"sit\",\n \"cookbook\": \"Lorem reprehenderit aliqua ipsum\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"esse in sint voluptate\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", + "body": "{\n \"clientId\": \"00be54a2-bb6d-402f-9159-beb2d5319347\",\n \"clusterId\": \"e1ff7bb24c934240bbf55e1aa39e41c5\",\n \"description\": \"A short description of the ManagedClient\",\n \"type\": \"VA\",\n \"id\": \"2c9180878eaf4204018eb019c3570003\",\n \"alertKey\": \"CLIENT_STATUS_NOT_CONFIGURED\",\n \"apiGatewayBaseUrl\": \"ut\",\n \"cookbook\": \"et\",\n \"ccId\": 2248,\n \"ipAddress\": \"123.456.78.90\",\n \"lastSeen\": \"2020-01-01T00:00:00.000000Z\",\n \"name\": \"aName\",\n \"sinceLastSeen\": \"nostrud magna\",\n \"status\": \"NORMAL\",\n \"clusterType\": \"idn\",\n \"vaDownloadUrl\": \"aUrl\",\n \"vaVersion\": \"va-megapod-useast1-610-1621372012\",\n \"secret\": \"ef878e15eaa8c8d3e2fa52f41125e2a0eeadadc6a14f931a33ad3e1b62d56381\",\n \"createdAt\": \"2023-08-04T20:48:01.865Z\",\n \"updatedAt\": \"2023-08-04T20:48:01.865Z\",\n \"provisionStatus\": \"PROVISIONED\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "10783b02-ed34-4efc-82a7-0002d28eb5de", + "id": "06f820b8-e961-45eb-82fa-a26947afe1b2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70106,7 +70106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4efb5b84-6541-42c4-8532-03380771d73b", + "id": "d7193d95-cbd2-49da-9a12-d79513085a49", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70163,7 +70163,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d4fc781-4ac5-4d68-8a92-90671c3d0349", + "id": "d9813c3f-812a-401e-a394-1b7f8f1ba9eb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70220,7 +70220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ad0c24d-ca62-402c-907b-6bb6d44f0719", + "id": "ce937ca0-14ce-47d6-b986-1b904e5a4ebc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -70277,7 +70277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdd5af13-6642-435f-bf32-e41ff4931290", + "id": "afe59d54-fbc1-41e5-bf72-95d801ad161b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70334,7 +70334,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4e0a363-26d8-41fe-b0cf-a98e5a25fa87", + "id": "91bc288f-ebd2-4a27-ae8b-5121fd03e41b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70397,7 +70397,7 @@ } }, { - "id": "30b0e563-7586-45fa-aeb4-78b7385d7add", + "id": "afa57792-6fdd-42df-96a5-bd0a20e15e91", "name": "Delete a Managed Client", "request": { "name": "Delete a Managed Client", @@ -70438,7 +70438,7 @@ }, "response": [ { - "id": "d1dda61e-11c7-4007-a7d9-8057d7f2c703", + "id": "3925d685-6f54-4d98-ab94-534c6536f2ae", "name": "The Managed Client was successfully deleted.", "originalRequest": { "url": { @@ -70472,7 +70472,7 @@ "_postman_previewlanguage": "text" }, { - "id": "242f5573-436b-4c9b-959a-44fcaa5c5942", + "id": "dafc4b75-5f35-4dab-bd67-2b3f8b68e206", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70516,7 +70516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ecb84601-7520-41e0-8594-7fd16828e143", + "id": "17281a4b-6db2-4955-bbe0-17597f2eba04", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70560,7 +70560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e82bda7-aec5-4242-b768-9ab537e68ab6", + "id": "da6e963e-6eca-4207-a4bd-49f2d3da7177", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70604,7 +70604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5239a7b2-9593-499e-9818-5836f679e96e", + "id": "f793dc22-fa4f-4fc2-8132-3c638739473f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -70648,7 +70648,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c85a7b28-5575-49b7-a787-3b73cc52fbd7", + "id": "416e74e3-e5a9-4e66-9d02-e23cdf94862f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -70698,7 +70698,7 @@ } }, { - "id": "0d43e9dc-a976-4e5c-923f-a30eab12f279", + "id": "01f7775e-6edc-4041-977c-50aa0055b1ec", "name": "Get Managed Client Status.", "request": { "name": "Get Managed Client Status.", @@ -70750,7 +70750,7 @@ }, "response": [ { - "id": "6cf68cd6-ebe6-4234-8e74-4b4da28e4420", + "id": "7ec678ff-bca0-4c5a-8866-0d000578480d", "name": "Responds with the Status of the Managed Client with the given ID and Type.", "originalRequest": { "url": { @@ -70805,7 +70805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc2c06da-be49-4b53-bbe9-b75fbf91269a", + "id": "7f15a379-7df6-4425-bb50-a4e2d48ff2a7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -70860,7 +70860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb7bb339-3164-452a-9470-595a58a36cc4", + "id": "4ca74325-cedd-4bbb-b562-c0877ec53099", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -70915,7 +70915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ffbd68-a56e-4220-82d0-6528c19b7b73", + "id": "db374904-7970-4bc5-8d78-98070fa6af5d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -70970,7 +70970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f45896ad-5a3b-4e92-971a-196f257bcbce", + "id": "b1fba957-d991-4cbd-8600-a00291990ec1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -71025,7 +71025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99d2d7a6-fcb2-483c-baf6-74f1ffdae244", + "id": "8a457954-72a5-4106-ba5f-40d0a9e79dfd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71080,7 +71080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f088e1e-e986-4c94-8027-7568b172fceb", + "id": "3dacec13-e44b-4fc2-9ed5-22bf86237fb0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71147,7 +71147,7 @@ "description": "Read and create pperations for client Clusters, including Log Configuration", "item": [ { - "id": "54c430e8-8ad2-4898-b864-a69b5a9073bf", + "id": "8b2f98a6-2441-44b4-9229-76bedb1f9628", "name": "Retrieve all Managed Clusters.", "request": { "name": "Retrieve all Managed Clusters.", @@ -71213,7 +71213,7 @@ }, "response": [ { - "id": "a7b51b0c-f425-4f44-94bd-e613a56ee51d", + "id": "0b798c11-380e-4318-bc1a-da4dfd106464", "name": "Responds with a list of ManagedCluster.", "originalRequest": { "url": { @@ -71293,7 +71293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e52b4f9c-cf12-4487-9607-8dd399c7e5e7", + "id": "c014edbb-abbd-481b-90fd-19574b3571bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71373,7 +71373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "477d9a89-5503-42d1-aa3e-8f093389f637", + "id": "bd0c865c-4556-418e-83f6-de26498286b8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71453,7 +71453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9854e560-f101-4397-9339-7ebbfa297e7b", + "id": "ee1dae24-5a2d-4984-86f1-b4c25426c427", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71533,7 +71533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4235e57f-43e9-474b-b13e-f1b83ecfe99a", + "id": "4f8254d5-72b3-4114-a796-aa38a00c3d2f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -71613,7 +71613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7082e3-857e-4b10-90d5-5bdaea9d324e", + "id": "0ee5cb93-e5b1-4a23-8c12-782d019e4a5c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -71699,7 +71699,7 @@ } }, { - "id": "ac310130-0e1b-4b11-8e11-6c39dcd0a414", + "id": "819918a7-74a0-4bc5-a665-7fa377b3a83f", "name": "Create a new Managed Cluster", "request": { "name": "Create a new Managed Cluster", @@ -71741,7 +71741,7 @@ }, "response": [ { - "id": "6bddb4f0-adc7-424e-b483-b32a144beea8", + "id": "ba121554-93e0-4f6b-9b19-47d327c711b7", "name": "The created ManagedClient", "originalRequest": { "url": { @@ -71797,7 +71797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b60b676-7925-43cb-ade3-792efe3ac527", + "id": "849fb1f9-5454-4d8e-8fca-d52a824fa1a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -71853,7 +71853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4800dffa-a841-4e73-96e2-a166ebde9cb1", + "id": "fd730d4b-01e6-4a9f-9c5b-9300fdb2a5c2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -71909,7 +71909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b48be3de-f251-4448-8872-b1c9cfb71c5b", + "id": "41e0fd7b-f5ce-43bf-80ec-d449a0cb3c79", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -71965,7 +71965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b0c553f-b207-450a-a43e-9dccb3520d6b", + "id": "8d51a3ff-dbe1-4eda-ba0c-469f35a5a154", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72021,7 +72021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4afe9660-c496-496a-a879-8d91933f62d5", + "id": "ca0fd4ab-dafb-44e6-a0ef-cea0a431fb78", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72083,7 +72083,7 @@ } }, { - "id": "d3f1e51c-4c01-4f4f-a1c9-d6bd67faf3a5", + "id": "42fe9d8d-7c41-46d0-ae0e-56f102828c6f", "name": "Get a specified Managed Cluster.", "request": { "name": "Get a specified Managed Cluster.", @@ -72124,7 +72124,7 @@ }, "response": [ { - "id": "564dfefc-c732-424e-8bb7-c94838b2185e", + "id": "65df5a28-414c-4903-9584-7a9a75f5a03c", "name": "Responds with ManagedCluster having the given ID.", "originalRequest": { "url": { @@ -72168,7 +72168,7 @@ "_postman_previewlanguage": "json" }, { - "id": "348cee9e-71ca-42d6-a3e6-fb2788da1fe8", + "id": "6933bebc-0e8a-4e3e-83d6-071079890e4c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72212,7 +72212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "714d964d-1a9e-409a-bb95-670f5ed2c674", + "id": "626c24e8-8c64-4dfb-b2fd-a43b62fb8dec", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72256,7 +72256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeaaff18-cc38-4f57-8d1b-49e73d9c260a", + "id": "816b06ef-52e3-4022-b25d-fb220dbe07f1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72300,7 +72300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46503017-178e-4158-95d0-2e2ecce3c3e7", + "id": "e4a31c2f-8b73-49c5-b60e-863b29e08bd3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72344,7 +72344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3f11524-2557-40c7-ac5e-5d0762e17157", + "id": "30a909c1-5f65-40fc-abd8-d14014436c5a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72388,7 +72388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bb189424-58df-4144-98e0-a137bef3a950", + "id": "7f73e728-2e92-4723-bfdd-d36b47494c02", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72438,7 +72438,7 @@ } }, { - "id": "34128426-b464-4c79-8cc4-353bf785f83e", + "id": "169669e1-54c8-4159-b498-19f46dc8f25c", "name": "Update a Managed Cluster", "request": { "name": "Update a Managed Cluster", @@ -72492,7 +72492,7 @@ }, "response": [ { - "id": "2b2277a3-c254-4b6c-ace7-f4d6131dbe9c", + "id": "b720f7c2-e966-448d-b4ef-4c8691bec7bd", "name": "The updated Managed Cluster", "originalRequest": { "url": { @@ -72549,7 +72549,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a270350-968e-44fe-bef9-24a66188b6d5", + "id": "e3a4ead6-c6b6-4b74-90b7-4491bcf0830a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -72606,7 +72606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac9b8b1d-d2e4-4cc3-87d2-7b900ab6c335", + "id": "e0d4b640-9db2-4d92-ae24-683afcd22b11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -72663,7 +72663,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff3eecf4-3804-446a-8938-082bb77d97f5", + "id": "88bee07f-37ac-42ce-9bc8-e9c7f4f4f2fb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -72720,7 +72720,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb1748c8-e44a-4513-b5a9-251a4d4a9613", + "id": "6ca0784c-883a-4742-9246-cbe95d258745", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -72777,7 +72777,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bafabb8-8b20-4d4c-9e4b-b3f9eb3b6a0d", + "id": "25251e00-b88a-4e45-8972-8f401f5c1622", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -72834,7 +72834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c9dd9a-f30f-44a9-91e1-5dfada331b75", + "id": "e19ac03f-1693-45c8-9ea2-841abc0d8662", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -72897,7 +72897,7 @@ } }, { - "id": "a3a271d1-dedb-49e6-9886-c9d2b53ebf26", + "id": "95b3eccc-6318-4b39-ada8-18fb50890c7e", "name": "Delete a Managed Cluster", "request": { "name": "Delete a Managed Cluster", @@ -72948,7 +72948,7 @@ }, "response": [ { - "id": "e432be9c-ad91-4d17-9629-5da2a6e6d7a9", + "id": "bc2aef40-37c0-46dc-a740-649c3f704f43", "name": "The Managed Cluster was successfully deleted.", "originalRequest": { "url": { @@ -72992,7 +72992,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5f0c0a79-5c71-4a13-a8ce-d4815960fc2c", + "id": "2cb56f33-0b7f-4dc6-9b73-23971055905b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73046,7 +73046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "174ff055-520c-4420-9d5e-02d361b7ced5", + "id": "ee4cc4e9-ebe8-430f-a2fd-8709f3623598", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73100,7 +73100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb3ab9c8-6b9f-4f46-819a-cd3da883aee5", + "id": "09b571ff-9c6d-4a40-961f-79d609227889", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73154,7 +73154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41245f9f-9672-4f41-b63c-c3618d479204", + "id": "b6c2e9a6-e613-4e86-8c9c-dcc694caa4f4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73208,7 +73208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4924a634-6ded-40d7-98f6-f3d1d9a3dccf", + "id": "1585aa8f-f429-4563-bae2-9f36b293e625", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73268,7 +73268,7 @@ } }, { - "id": "c02bd4d6-1c8b-4065-8f08-d5559bb6aa51", + "id": "edc768df-cc52-499a-84bc-dd318e04d5d7", "name": "Get Managed Cluster's log configuration", "request": { "name": "Get Managed Cluster's log configuration", @@ -73310,7 +73310,7 @@ }, "response": [ { - "id": "b1ac76e7-8b6c-41a0-bd4a-0be831aff980", + "id": "c982ed84-bba3-4e43-bbe0-01fe5ba8194a", "name": "Log configuration of ManagedCluster matching given cluster ID", "originalRequest": { "url": { @@ -73355,7 +73355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "325e5df8-3149-4c0f-b82d-ddaf7cf43a51", + "id": "56033c60-c044-49b6-b349-d150309c0d2f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -73390,7 +73390,7 @@ "_postman_previewlanguage": "text" }, { - "id": "1b56422d-97ad-4a00-ae50-2379a651dc3a", + "id": "9d614e78-8963-4712-84fb-0cddde3ad20d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -73435,7 +73435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "307cd232-4082-48f1-aaff-0076bbfd97eb", + "id": "ba3768f9-f5fb-4cfc-900b-b0ed3d8c9182", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -73480,7 +73480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49c237c3-a8fd-439b-9862-fa734d2cf5a4", + "id": "7ce707f5-8396-48ab-a375-2076d416c661", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -73525,7 +73525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b98445d-cd3f-428e-ab98-0f1e688f1f17", + "id": "983811ff-3c72-436b-b849-85e241363aae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -73570,7 +73570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d3a9702-8967-4b93-90e5-150fc9bd73cb", + "id": "5eca2537-2c9f-4673-82d0-50c38a6b288d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -73615,7 +73615,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbcea182-6921-4704-836e-3a724c8ee3e3", + "id": "c7d9cab1-bef9-4142-aee8-071b1af8388a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -73666,7 +73666,7 @@ } }, { - "id": "6afa635a-a645-428a-aef4-d1a7634ca189", + "id": "6c8cc7bb-7c9f-4de2-aef4-1f85c575d2ff", "name": "Update Managed Cluster's log configuration", "request": { "name": "Update Managed Cluster's log configuration", @@ -73721,7 +73721,7 @@ }, "response": [ { - "id": "9b954c07-c909-4818-a2fe-091a8c43e5da", + "id": "cc7b10fc-8c74-45ea-9b3c-06508ab28fd7", "name": "Duration Minutes", "originalRequest": { "url": { @@ -73779,7 +73779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03328b6a-e5d3-4135-9203-06c5f2313715", + "id": "068af86a-62d5-4abe-b85a-87a4452a190b", "name": "Expiration", "originalRequest": { "url": { @@ -73837,7 +73837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fce8ead3-cd8a-4211-8a4d-ae560a2a8c1d", + "id": "01f86817-5738-46a9-801a-6a65d74af829", "name": "Duration Minutes", "originalRequest": { "url": { @@ -73895,7 +73895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcd1f00d-f72e-4a64-b6da-87a207fe47e2", + "id": "7e5847b5-f172-4766-9379-c7612597247d", "name": "Expiration", "originalRequest": { "url": { @@ -73953,7 +73953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e15fbc2a-7544-439d-bda0-7036245bd0ce", + "id": "a2f17a76-e680-49d0-85c2-8be8ee0754f6", "name": "Duration Minutes", "originalRequest": { "url": { @@ -74011,7 +74011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da4bdbed-f0cd-4ced-b016-920245eeee46", + "id": "76ccde47-27c9-4518-81d2-0aec67ce744c", "name": "Expiration", "originalRequest": { "url": { @@ -74069,7 +74069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e1cf49f-a634-4798-9a3d-5988185f3459", + "id": "fe7642c3-d3b7-4f65-9e80-59de17846946", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -74127,7 +74127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d607337-ed6e-465b-819f-8766b4b82312", + "id": "5ad59a87-9d37-46f0-ad59-591c3eee05c2", "name": "Expiration", "originalRequest": { "url": { @@ -74185,7 +74185,7 @@ "_postman_previewlanguage": "json" }, { - "id": "678839f8-a71f-4404-8ffa-468c1c8ced36", + "id": "dcc7d9b9-612a-4f2e-82bc-d12f05a75e88", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -74243,7 +74243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "761f512c-a775-4d14-8ee5-3797b0073e61", + "id": "3e007ee7-ca32-4ce9-81f6-ab8e448789fa", "name": "Expiration", "originalRequest": { "url": { @@ -74301,7 +74301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f43ff637-38cf-4197-8a78-b91511afd847", + "id": "3e1fa0f9-c323-4c03-8f58-a9b636d7cbe0", "name": "Duration Minutes", "originalRequest": { "url": { @@ -74359,7 +74359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e1cd18e-3719-4d5c-aac1-15edd7024b3d", + "id": "99c0a057-8563-4a9c-9ce6-bdf6ba6950df", "name": "Expiration", "originalRequest": { "url": { @@ -74417,7 +74417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c58d22-57af-498a-aba2-a38cc5bd5a5e", + "id": "49e176ab-880f-463f-b808-02634370c6bb", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -74475,7 +74475,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20f44386-ac42-4954-bb09-719f9c468e56", + "id": "d10cf59d-2693-498d-8694-035cffb5852f", "name": "Expiration", "originalRequest": { "url": { @@ -74545,7 +74545,7 @@ "description": "Configure and test multifactor authentication (MFA) methods", "item": [ { - "id": "03978d06-7d9f-4e59-adaf-997685ad2b11", + "id": "515ae5f3-d0ad-44d7-9162-b9440a0f4efb", "name": "Configuration of Okta MFA method", "request": { "name": "Configuration of Okta MFA method", @@ -74576,7 +74576,7 @@ }, "response": [ { - "id": "42059e8f-4d99-4518-829b-e42051924ecb", + "id": "3477564e-aa17-43d2-a019-fdd1f3eecd73", "name": "The configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -74621,7 +74621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21038771-10c2-4840-8db2-615baaf66da5", + "id": "aab092a8-7fe1-4d06-befe-19d60b3fcbc4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -74666,7 +74666,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9593d788-4818-4de4-99ff-ded987e08a9b", + "id": "72fa5d9c-4cb8-4d3e-b09d-641c020e5b74", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -74711,7 +74711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2ab69c6-bf66-4bf0-a8f4-7b281c83c6d4", + "id": "46088dff-727f-4650-8083-36848c85b631", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -74756,7 +74756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aaeb6f29-33c8-4134-8580-2114ea2cff8f", + "id": "4f4ab887-5b44-493a-bbcc-d300bb5dda53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -74801,7 +74801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1b3f5fa3-4713-4737-84b0-c29d91bf6ef9", + "id": "1bfa000c-319f-44fb-9a26-609e8dfdd660", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -74852,7 +74852,7 @@ } }, { - "id": "3d1422ed-62d6-4cce-b083-98d8b483057c", + "id": "ba1eae75-bfff-45e4-8471-61bf02f74d52", "name": "Set Okta MFA configuration", "request": { "name": "Set Okta MFA configuration", @@ -74896,7 +74896,7 @@ }, "response": [ { - "id": "88018842-ff22-4478-9bf5-d884acd37430", + "id": "6c45e8c6-06f0-4011-b4ba-199b3c603f9f", "name": "MFA configuration of an Okta MFA method.", "originalRequest": { "url": { @@ -74954,7 +74954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a36c9234-9718-4dcd-8781-fabf1c124eb7", + "id": "8785fb13-158f-4b57-81b6-d6ec2593a1c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75012,7 +75012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8851124-7eaa-48a6-9917-13f632780ae0", + "id": "93bedff8-d678-4f9e-be4a-fcbd52fc4237", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75070,7 +75070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c811c9f-bee6-4afb-927f-8a60c678f85e", + "id": "79a08884-bf58-4cbf-acda-d23cb2d834e9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75128,7 +75128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab8c8455-96b8-426b-b69b-082a8ca6e604", + "id": "f481a9c6-1045-4459-9fa0-2951dc15e1e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75186,7 +75186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "408a5134-8130-40c4-b407-49adf0222fd5", + "id": "43bce93c-fde0-4920-a34a-48700c2c11ec", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75250,7 +75250,7 @@ } }, { - "id": "fcf568ff-14c8-41cb-9949-1c8a96242f25", + "id": "987b706f-82c5-4ff6-a204-c01db14d1f28", "name": "Configuration of Duo MFA method", "request": { "name": "Configuration of Duo MFA method", @@ -75281,7 +75281,7 @@ }, "response": [ { - "id": "28a5b7c0-5db2-4a79-a51d-cedd3c1c6957", + "id": "ea47b9ea-2e59-4cfc-a04a-4f241594d977", "name": "The configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -75326,7 +75326,7 @@ "_postman_previewlanguage": "json" }, { - "id": "333ca7ee-1ceb-40ba-944b-2ac116390170", + "id": "b901bf5a-51af-46e1-94df-cfd7eddc8453", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75371,7 +75371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21137e35-e4a7-4ac8-a07a-29a5db9e9d4e", + "id": "1fc3e313-78f6-4a4a-8d06-59adbe33a152", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75416,7 +75416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "32418b87-3b3a-4baf-ac16-9bc6678039b9", + "id": "3c807893-70e5-4d71-be63-9a8058279437", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75461,7 +75461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "877a680e-4a41-469e-9853-ae8a19a64a15", + "id": "f262a63f-9fed-4d14-aa47-4a659d82a472", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75506,7 +75506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c567793-506c-42cf-b53d-24d36ca94a7d", + "id": "574698f2-d0a0-41fb-b4d4-ed9d398be0e4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75557,7 +75557,7 @@ } }, { - "id": "cf769cf2-a193-4481-abc6-38b2c23e9e71", + "id": "94cfa338-e099-4ed1-8d68-56b2d2345e41", "name": "Set Duo MFA configuration", "request": { "name": "Set Duo MFA configuration", @@ -75601,7 +75601,7 @@ }, "response": [ { - "id": "a1fa9e82-4cef-46d8-968f-a9d14b089a03", + "id": "85d8fbc8-049f-43d3-ac3d-24c337ec33c7", "name": "MFA configuration of an Duo MFA method.", "originalRequest": { "url": { @@ -75659,7 +75659,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e8aa9ed-0860-4db9-b576-e60f422c9ba0", + "id": "0c41c9c7-c4c0-4778-863d-ff429d08885a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -75717,7 +75717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "020de4f1-ad69-4104-9ad4-18c8769cc5f8", + "id": "a1050316-194f-4281-ac4f-a1b7a73bdd78", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -75775,7 +75775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f2eef33-78fe-45f3-a120-592dff3c9cb8", + "id": "15ce9df3-debc-44ee-8d69-345107d26243", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -75833,7 +75833,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7200642f-a51b-4629-84b5-6bd89ecfbaeb", + "id": "2fc03e6f-77b2-47b6-b2e5-93cfb202777b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -75891,7 +75891,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38d6bed0-9f0b-4994-8244-b232c2f212d1", + "id": "9295332a-cc01-4bbf-a6a1-4795596891ad", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -75955,7 +75955,7 @@ } }, { - "id": "ebadb656-43c8-4853-b62c-20185163c45f", + "id": "0b65145a-360e-464f-947e-b99916eed4d4", "name": "Configuration of KBA MFA method", "request": { "name": "Configuration of KBA MFA method", @@ -75996,7 +75996,7 @@ }, "response": [ { - "id": "4be39d83-e21f-44e0-afa4-4667eb8f5a56", + "id": "4f5e021e-7001-4eba-8cc1-eff2db4ae94d", "name": "The configuration for KBA MFA method.", "originalRequest": { "url": { @@ -76051,7 +76051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8232eb9f-0eed-449e-8257-3afa7be7fbbf", + "id": "d59ab706-395d-45de-a8bb-70c148078a96", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76106,7 +76106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a8b5e55-c5c5-432a-80b3-7651eb580946", + "id": "6925d4d1-0c59-4ca6-ba08-6668a4efb9c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76161,7 +76161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2ed3ced-eccb-44a7-84b9-fae48c019dba", + "id": "2e18d14b-5c50-455b-8f0d-fb5d6c579f83", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76216,7 +76216,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05fa43e3-0d15-4460-a254-dde6cd95816b", + "id": "5d72ead0-8309-4107-9f8e-2aa277733b99", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76271,7 +76271,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9660b479-f319-4025-9f87-fd00a38146b6", + "id": "0914ba44-a450-49c4-8557-8aeee8d08296", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76332,7 +76332,7 @@ } }, { - "id": "a99f00f7-85f0-48a9-a956-28da6edcd2a6", + "id": "fe0405a2-5827-4e70-8f88-6dfc6697333c", "name": "Set MFA KBA configuration", "request": { "name": "Set MFA KBA configuration", @@ -76377,7 +76377,7 @@ }, "response": [ { - "id": "3e1b7700-2924-41bf-a074-663d9e962458", + "id": "4ad6df67-7c25-446c-a70e-772972eac9f0", "name": "The new KBA configuration for the user.", "originalRequest": { "url": { @@ -76436,7 +76436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "423937f3-3cb9-4d32-a58a-52b6ee172e19", + "id": "d2bc68ae-e315-4040-843d-01e62c9b700c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76495,7 +76495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed1db186-13d4-4b3d-bd31-f377e7295843", + "id": "81561e11-79f6-44ea-b3e9-68c2d77a4d01", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76554,7 +76554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d6a8c29-e6d2-4028-ba09-09839e490fbd", + "id": "af37eb39-d2b6-4c10-8b13-b687fa28d419", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76613,7 +76613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "881011bf-0ae1-4e82-b5ab-20be6c0014fc", + "id": "de5aae93-9bc3-4c3e-95f1-95af4bb87fed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -76672,7 +76672,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61ae26d8-370e-471a-985d-20db86926c88", + "id": "d25a02b0-43fe-4144-9761-854a62754f2e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -76737,7 +76737,7 @@ } }, { - "id": "ea44ed52-0925-43bb-ab83-75755a654edb", + "id": "c04a3297-f25c-4f85-8e9c-7b644d2fa694", "name": "MFA method's test configuration", "request": { "name": "MFA method's test configuration", @@ -76779,7 +76779,7 @@ }, "response": [ { - "id": "55b40d9f-3c41-46d2-b7da-bc0875ad7320", + "id": "f8b385ce-e2ed-4fde-a416-8bc08d82a445", "name": "The result of configuration test for the MFA provider.", "originalRequest": { "url": { @@ -76824,7 +76824,7 @@ "_postman_previewlanguage": "json" }, { - "id": "550c87aa-afd7-4bd2-947c-ca341d2d2215", + "id": "7358cedf-8f38-480f-866e-20ed7aaf48cc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -76869,7 +76869,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd4aeca1-0dfd-48de-bdc0-9fd547358438", + "id": "e0fff34e-cc32-4bde-a93e-0ee3225b1fb9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -76914,7 +76914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d31122c-5038-4528-ac65-8e139ccb7d7d", + "id": "b81dfa22-d781-4616-b1ea-b396d2678b0b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -76959,7 +76959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35eb854e-0192-4446-a82b-03bad21db3ad", + "id": "a8afdff8-68db-4b63-82f1-898274c1be66", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77004,7 +77004,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66b9aadf-7f8c-4fef-a268-21567cdc6869", + "id": "edcdee43-de94-4ccc-ba6f-228c92d5874c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77055,7 +77055,7 @@ } }, { - "id": "de842f3d-9255-48fa-9255-e32796f659ac", + "id": "cf88af85-936e-4195-987d-8dda922675be", "name": "Delete MFA method configuration", "request": { "name": "Delete MFA method configuration", @@ -77097,7 +77097,7 @@ }, "response": [ { - "id": "6c1e31d4-1257-495d-80ff-4dfbe0f893b9", + "id": "cde93a29-ec70-48fe-a156-75337ad0c7dc", "name": "MFA configuration of an MFA method.", "originalRequest": { "url": { @@ -77142,7 +77142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5867cd10-daef-4567-8b82-bca021851842", + "id": "e9e5de6d-1f87-46b2-bdfc-7e72ee525875", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77187,7 +77187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a29a9ee6-ac31-4ecf-a0da-2b72cfe49be1", + "id": "5c75cb0b-a682-4db8-897c-f330795ed60c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77232,7 +77232,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d885955-5f1e-40a8-a107-47b82aec7d81", + "id": "2a586174-0fbc-4c88-80bc-98ebdd477a35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77277,7 +77277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "464db9f6-f1ea-47f8-b3c1-88810b5a9b9f", + "id": "5a46d220-4b18-4b40-af28-111db186542e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77322,7 +77322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d690ffb-e6b6-49c4-a14b-d55c02ffef78", + "id": "6487aa41-f10e-4dd4-b06c-5c3382e6996c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77379,7 +77379,7 @@ "description": "This API used for multifactor authentication functionality belong to gov-multi-auth service. This controller allow you to verify authentication by specified method", "item": [ { - "id": "e8bac026-e6ae-4efc-a608-2c30b348bfe8", + "id": "ff94e6b6-6889-4939-a838-8aeff522e8f4", "name": "Verifying authentication via Okta method", "request": { "name": "Verifying authentication via Okta method", @@ -77423,7 +77423,7 @@ }, "response": [ { - "id": "fedc65ab-099d-4392-bf18-bc33bb3bdc36", + "id": "0b153c02-763f-40ed-8616-31659afbb664", "name": "The status of verification request.", "originalRequest": { "url": { @@ -77481,7 +77481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b11ae999-b3f2-4525-8d80-266fb1584a24", + "id": "e09dcf92-2945-427e-9b3a-83b83e0cf935", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77539,7 +77539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05f5ba1b-02d5-4a6a-a28d-f68ca7a241ac", + "id": "c8610aec-b875-422c-aed1-9b2d8798dabb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77597,7 +77597,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf5c4a26-08f8-4abf-93d8-81a57ec695b8", + "id": "ad127516-dd42-43f7-9bf9-fc197fe40ecd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -77655,7 +77655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "799ff5c6-9fba-4fbc-88d4-c9b367ab8240", + "id": "b038e15a-d3c3-4522-8b15-cac166682ff0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -77713,7 +77713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f711490-3f0c-4d5a-b28a-5f45258a479d", + "id": "eb326d3d-e2d5-4013-a5dd-038523393666", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -77777,7 +77777,7 @@ } }, { - "id": "02cd6cab-8f2e-497c-b776-8ae9abe05e0d", + "id": "4dfac42a-c479-44db-b268-46c4b6b564a4", "name": "Verifying authentication via Duo method", "request": { "name": "Verifying authentication via Duo method", @@ -77821,7 +77821,7 @@ }, "response": [ { - "id": "d47b8f79-97de-4c1d-8590-df8aed208083", + "id": "a544e46c-3076-4938-98ae-50ec6a87bab3", "name": "The status of verification request.", "originalRequest": { "url": { @@ -77879,7 +77879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72126bea-5a30-4b49-af04-76e7c883b588", + "id": "542e9413-c988-4ae4-967d-623f9b2efbcf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -77937,7 +77937,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3177c6aa-3331-483b-960e-1005e921e77e", + "id": "559ccc7c-47c1-4d0c-be51-0a6c6a516c7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -77995,7 +77995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a8611f-9a24-4c74-9e38-2ba8ed68a7b9", + "id": "f0d85f58-a3b1-4a69-ab2d-4a1e983dea71", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78053,7 +78053,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6082a277-9bcb-4b20-968b-babdca48236e", + "id": "922c4d8c-e6b0-4785-aa6a-3c56b810a927", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78111,7 +78111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5b859b08-e40a-4140-bdf0-dce0c25ad8c5", + "id": "51312384-73df-49fe-a0b5-6202f520a19b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78175,7 +78175,7 @@ } }, { - "id": "7dae5138-1c90-4a9c-9747-fcbaee900afc", + "id": "07fa9069-245d-48c4-95fe-23cabe122c86", "name": "Polling MFA method by VerificationPollRequest", "request": { "name": "Polling MFA method by VerificationPollRequest", @@ -78230,7 +78230,7 @@ }, "response": [ { - "id": "d91c4494-1bf5-444f-b8ea-ed3f622a06c8", + "id": "997c93af-edc2-4f38-af3a-e5080d44fc60", "name": "MFA VerificationPollRequest status an MFA method.", "originalRequest": { "url": { @@ -78288,7 +78288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11b95b08-1093-4ae8-9410-dfdf185d2751", + "id": "e82ca5ae-95ba-49c0-906b-da7c53ed0819", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78346,7 +78346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5785e331-7608-410a-8aef-abec69d157fd", + "id": "92e12eeb-1954-4d2e-bd79-e1b25e3b0f90", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78404,7 +78404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "38df94da-d0c6-46ee-a7bb-388dbefafa46", + "id": "20c00f92-ecbe-4043-812d-ea40362d17e7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78462,7 +78462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9541ffb9-b0a9-4c39-a2d0-2331b72d547a", + "id": "9f71a762-450f-4278-933e-596d225b6018", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78520,7 +78520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c264b4f9-ecd0-479e-9ac2-53c30a63c63a", + "id": "691145a9-fc35-4c2a-8e7d-5350224f769a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78584,7 +78584,7 @@ } }, { - "id": "65f1acc5-1d9a-4f77-b34d-eddf80248ef7", + "id": "9cc1b9a8-9d31-415e-b2bf-3096b48cabd6", "name": "Authenticate KBA provided MFA method", "request": { "name": "Authenticate KBA provided MFA method", @@ -78628,7 +78628,7 @@ }, "response": [ { - "id": "def1a638-2ad9-4d88-81bf-29d49cd5e292", + "id": "0f60512b-2777-4d92-bddc-0110369e16ed", "name": "KBA authenticated status.", "originalRequest": { "url": { @@ -78686,7 +78686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd331c84-e897-4362-a401-c94ceb020899", + "id": "85219b56-3c5b-4f4e-bab3-d7bdafb383f5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -78744,7 +78744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65206b31-1e65-4b71-ae55-fc0da70de441", + "id": "59d84395-9ca0-4d78-a548-771245b03514", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -78802,7 +78802,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f4dbec3-baf5-4a04-8e64-a701dfedf254", + "id": "21599984-294b-42ec-bf8b-d458e38e6f9a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -78860,7 +78860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e59b7888-b681-41f1-a6f0-d03b089e9209", + "id": "fbc7dfc3-b382-4828-abb7-69ed2bfc254e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -78918,7 +78918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f5f0502-412d-4a7f-a417-ef4f3b1ef48e", + "id": "15779548-7e0a-4b6a-837a-93007a956466", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -78982,7 +78982,7 @@ } }, { - "id": "1e5d3dc4-821a-4442-9f43-58d50969bfc3", + "id": "dba6f2b7-66f3-4116-b97d-658ff68ad455", "name": "Authenticate Token provided MFA method", "request": { "name": "Authenticate Token provided MFA method", @@ -79026,7 +79026,7 @@ }, "response": [ { - "id": "477bfc64-8008-480d-92cc-b3b34b527e18", + "id": "e900a438-6af3-4210-b0a9-799c94ff18a8", "name": "Token authenticated status.", "originalRequest": { "url": { @@ -79084,7 +79084,7 @@ "_postman_previewlanguage": "json" }, { - "id": "901599a6-a8a9-4203-ae61-0ea3d108a7fd", + "id": "3400edfd-853a-4944-822b-681376e1a6e2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79142,7 +79142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41c9922d-8e91-47b6-b0c0-4cbc3b300b8a", + "id": "6da3f933-da81-4ecb-b3d5-07f77a566a41", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79200,7 +79200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c708d4f-ac28-42ea-994f-809e01f83b6d", + "id": "f6bd9ace-cf91-4d11-a12b-0c11607f3c35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79258,7 +79258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21a2569e-087f-4396-82cd-aea7147c7028", + "id": "a39f7f71-336e-4dbc-bab0-913e62525083", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79316,7 +79316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c72ea75d-a218-453a-9718-8db86dc4b50b", + "id": "709d6f1f-8a0d-4d5d-bc08-4093ed74a993", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79380,7 +79380,7 @@ } }, { - "id": "0490737c-457e-42bf-9d68-3656c16245a4", + "id": "316d38d0-a134-48a6-82e8-5e42059f7d28", "name": "Create and send user token", "request": { "name": "Create and send user token", @@ -79424,7 +79424,7 @@ }, "response": [ { - "id": "dac3a800-9e06-4640-ab6b-4e9d3f394a47", + "id": "f534aec1-3ead-4ebd-8b8b-37fe5134b282", "name": "Token send status.", "originalRequest": { "url": { @@ -79482,7 +79482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd5c5498-cbdc-40c0-94bd-6c4d04c7cd7d", + "id": "ed542293-37e5-4ee6-8d29-218258db91da", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79540,7 +79540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06274598-b756-497a-ad84-6dfebb32b1cd", + "id": "9a32e264-32c7-45d6-b98f-cd7b6ff10f14", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79598,7 +79598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ccbf76f8-babc-4a24-8ee6-07b071b3c359", + "id": "910a5960-e347-439b-a6b2-6100004c2ccd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -79656,7 +79656,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4c1a600-efbc-400b-91da-ff2ca8385606", + "id": "91b7067d-c03a-4585-918d-52727d2a58a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -79714,7 +79714,7 @@ "_postman_previewlanguage": "json" }, { - "id": "192315d1-156e-4935-b9bc-ced2c048f37f", + "id": "1ac84121-389d-4fda-a47a-707bd169c04e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -79784,7 +79784,7 @@ "description": "Use this API to implement non-employee lifecycle management functionality. \nWith this functionality in place, administrators can create non-employee records and configure them for use in their organizations. \nThis allows organizations to provide secure access to non-employees and control that access. \n\nThe 'non-employee' term refers to any consultant, contractor, intern, or other user in an organization who is not a full-time permanent employee. \nOrganizations can track non-employees' access and activity in Identity Security Cloud by creating and maintaining non-employee sources. \nOrganizations can have a maximum of 50 non-employee sources. \n\nBy using SailPoint's Non-Employee Lifecycle Management functionality, you agree to the following:\n\n- SailPoint is not responsible for storing sensitive data. \nYou may only add account attributes to non-employee identities that are necessary for business operations and are consistent with your contractual limitations on data that may be sent or stored in Identity Security Cloud.\n\n- You are responsible for regularly downloading your list of non-employee accounts for all the sources you create and storing this list of accounts in a managed location to maintain an authoritative system of record and backup data for these accounts.\n\nTo manage non-employees in Identity Security Cloud, administrators must create a non-employee source and add accounts to the source. \n\nTo create a non-employee source in Identity Security Cloud, administrators must use the Admin panel to go to Connections > Sources.\nThey must then specify 'Non-Employee' in the 'Source Type' field. \nRefer to [Creating a Non-Employee Source](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#creating-a-non-employee-source) for more details about how to create non-employee sources.\n\nTo add accounts to a non-employee source in Identity Security Cloud, administrators can select the non-employee source and add the accounts. \nThey can also use the 'Manage Non-Employees' widget on their user dashboards to reach the list of sources and then select the non-employee source they want to add the accounts to. \n\nAdministrators can either add accounts individually or in bulk. Each non-employee source can have a maximum of 20,000 accounts. \nTo add accounts in bulk, they must select the 'Bulk Upload' option and upload a CSV file. \nRefer to [Adding Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html#adding-accounts) for more details about how to add accounts to non-employee sources.\n\nOnce administrators have created the non-employee source and added accounts to it, they can create identity profiles to generate identities for the non-employee accounts and manage the non-employee identities the same way they would any other identities. \n\nRefer to [Managing Non-Employee Sources and Accounts](https://documentation.sailpoint.com/saas/help/common/non-employee-mgmt.html) for more information about non-employee lifecycle management.\n", "item": [ { - "id": "345a4403-b9cb-4e34-806a-2163cda9c644", + "id": "fde4bf2d-5554-4ca7-a2c7-6e88ae3c4d91", "name": "Create Non-Employee Record", "request": { "name": "Create Non-Employee Record", @@ -79826,7 +79826,7 @@ }, "response": [ { - "id": "0665ae0f-a93d-4732-a648-926cb7dcd014", + "id": "8b3c830b-0058-4b4c-a806-6a9244ed86e4", "name": "Created non-employee record.", "originalRequest": { "url": { @@ -79882,7 +79882,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c86374ab-c448-4a3c-98f0-85a6722d611d", + "id": "e323484a-ea50-4d06-a705-e45f6b503cb6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -79938,7 +79938,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7efe6eb7-30dc-4a33-a5cd-4429c18619c6", + "id": "02dae984-7d50-4cc2-9984-ec2808376c5a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -79994,7 +79994,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5e880241-1fd4-496e-9f53-1d870231510c", + "id": "28314f48-5f83-45de-aa42-7af9f53503c9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80050,7 +80050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ed2ff5c-29a5-4545-9de3-dc5707b7d3e7", + "id": "f504ab02-5ec6-42a6-82d0-b2ded58200c1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80106,7 +80106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a0da6ba-61ae-4ce9-8cd2-bdc7500cbae6", + "id": "03df0532-5dfa-4e16-bd5d-f1dd5e934c1e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80168,7 +80168,7 @@ } }, { - "id": "ed8c00cb-4c39-441e-bb64-d5eb1e399ca2", + "id": "42c7e9ab-f783-4478-88b7-312adb7078ed", "name": "List Non-Employee Records", "request": { "name": "List Non-Employee Records", @@ -80243,7 +80243,7 @@ }, "response": [ { - "id": "5960de93-5d87-40d2-a741-b98b5210f257", + "id": "a27fd6c4-5315-4748-9c9f-eaceaef38224", "name": "Non-Employee record objects", "originalRequest": { "url": { @@ -80332,7 +80332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a4dee65-e8d3-4c80-b260-f6ab9703881e", + "id": "4e594310-2b0c-4821-8097-c7fa462de41b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80421,7 +80421,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c0de24-cee2-4559-9594-f8bf00e6a1d9", + "id": "74687ffa-63f9-4c5e-81db-86709b4b56c8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80510,7 +80510,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c276d4da-9a1a-4d4e-b048-7d0c763b8c73", + "id": "d4519614-625d-4bfc-a7b8-2a9e95235ba6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -80599,7 +80599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f9ce43d-3fcc-41c1-910d-73205d74ff37", + "id": "c4dc4b2f-5d7a-4b7f-93ac-ee292d5bf414", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -80688,7 +80688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4db5c906-a25d-469d-963e-6406dc4d65c9", + "id": "5a348b43-cd68-4a9e-90fa-3d21f3b3d9f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -80783,7 +80783,7 @@ } }, { - "id": "dca84b5a-a0d3-498e-af08-a0cde3a0fa38", + "id": "002db824-e2e0-41f0-a975-3fa6b7d9ebcf", "name": "Get a Non-Employee Record", "request": { "name": "Get a Non-Employee Record", @@ -80824,7 +80824,7 @@ }, "response": [ { - "id": "62ee6e40-87f2-47bb-972e-fbca722b72d8", + "id": "98b9487c-b434-42d2-9101-642cea9d6254", "name": "Non-Employee record object", "originalRequest": { "url": { @@ -80868,7 +80868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b3b80a8c-4169-4afb-8d92-dc467a01d84d", + "id": "19c8a481-5f89-4619-acd0-8ac43e5198d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -80912,7 +80912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40a474ab-abac-4299-ba71-5343164be118", + "id": "ccc7f0a0-9406-4035-bdca-12ba29e34b19", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -80956,7 +80956,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e767486-9084-4a8b-8e0c-62d8d25a6c80", + "id": "b6c520bb-4a77-4ce0-8458-790123e9e10b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81000,7 +81000,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f4b9a28-4b3f-40c9-93cb-e2ad7d159288", + "id": "80c22631-7156-4b33-b4dd-6d0f8f828348", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81044,7 +81044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ace040bb-5027-437f-8ac1-8c49d3c1ad66", + "id": "a13e94af-a9d9-4433-931a-4058916179dd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81094,7 +81094,7 @@ } }, { - "id": "037d388e-720c-4728-ade7-d9c89939ec9b", + "id": "35df801c-d6aa-4369-b6a0-c53ee485c2ce", "name": "Update Non-Employee Record", "request": { "name": "Update Non-Employee Record", @@ -81148,7 +81148,7 @@ }, "response": [ { - "id": "4246b242-b98c-4a4f-8a16-9276f0ee1f78", + "id": "fd7cd4a2-19a4-4dd4-aa0f-4cc70c6c0829", "name": "An updated non-employee record.", "originalRequest": { "url": { @@ -81205,7 +81205,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3e6c812-59f6-4e19-938d-600258aa3756", + "id": "9f30241d-c22a-40b6-9a05-d61b88cabec0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81262,7 +81262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d9b09f70-5128-4026-9287-18b18d29d8a7", + "id": "76567888-307b-4d85-ad58-511670b82d37", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81319,7 +81319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e3117a3-862a-4ae7-aed5-62fd2c275f3b", + "id": "c90781a4-7807-41da-a7a1-dc3f696c802a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81376,7 +81376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee17d43d-111a-42f5-85f9-0fcaae64b021", + "id": "e21e693f-7170-435a-9fe1-7c5b9f2ae5fc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81433,7 +81433,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9400e306-e6ec-4772-aa0b-47dc4f0d45f6", + "id": "32481eb1-4182-4206-b364-e3a7f888f8b0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81490,7 +81490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a14ff8d-e021-4ac1-b850-ca86a96ac20b", + "id": "1c5b113c-a1dd-4cc0-971e-c66dc78b553d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -81553,7 +81553,7 @@ } }, { - "id": "90c84c19-8700-465c-9222-8a7003037f64", + "id": "9e8c4673-c5d3-49c6-9889-c0bddde13a45", "name": "Patch Non-Employee Record", "request": { "name": "Patch Non-Employee Record", @@ -81607,7 +81607,7 @@ }, "response": [ { - "id": "4e291bb7-8a4e-4f1d-a612-4136d3edda4a", + "id": "c740082e-09d4-4650-b82f-2ce37c5bcce0", "name": "A patched non-employee record.", "originalRequest": { "url": { @@ -81664,7 +81664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d56fa47a-91b1-449e-a8f3-064acdd98a75", + "id": "908f4c71-e43f-4764-9ee0-055bcc52c16d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -81721,7 +81721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "138b4d77-2c21-4f06-8206-9d2ec1dc4327", + "id": "67cd2d17-ac4c-4f44-8bac-5d79c20bb354", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -81778,7 +81778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6daa41f6-78ef-419b-983c-e9e5d9cb1e72", + "id": "d22047a6-5212-4716-b88f-1ec325eee88b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -81835,7 +81835,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f20c36d-96f2-4b08-a720-fe74b36acb24", + "id": "23068be7-79db-44a0-9643-51d0292f7f48", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -81892,7 +81892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f638957-0202-4ea9-9f6c-bf42030f24bb", + "id": "ba2f8ce3-60c2-444e-8692-b3258627d826", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -81949,7 +81949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f26a1a27-4461-4cfc-aff5-c20b816dfa2d", + "id": "03fbbfc9-9df3-4e58-a0ae-09a8f3eea291", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82012,7 +82012,7 @@ } }, { - "id": "2eae8076-8704-4b1e-8f25-36aac4c62bdd", + "id": "bc61e195-8aa5-4036-818f-c5d50afc0aac", "name": "Delete Non-Employee Record", "request": { "name": "Delete Non-Employee Record", @@ -82053,7 +82053,7 @@ }, "response": [ { - "id": "0277434b-b364-4726-9c13-d4893e91acb1", + "id": "8ad68f9f-03b5-4668-b94a-3c0cc55407c1", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -82087,7 +82087,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d6fa2742-ab6f-4cbb-b1c3-43ab83e9c1a6", + "id": "4d664be6-b31d-4f1b-9d1e-9cccaf85dfe7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82131,7 +82131,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bbe4859f-e424-4a53-815a-26a9dfca8228", + "id": "fb681873-8607-47c1-a0bf-9aa48d0614a6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82175,7 +82175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a512f401-9612-4ae4-a8a1-2555aa198442", + "id": "a3db7605-ff96-4b5c-a65e-a8a184cebdd3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82219,7 +82219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9f2b5d2-c0fa-4f8e-984e-76f5c38acd68", + "id": "16d1b06b-5907-4f46-82fd-2ae7adb603b1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82263,7 +82263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9f0e31c-cd9f-47c6-a287-84ba8a1a3fe4", + "id": "a9df80c8-67f9-41e0-87b1-ad7af80d4a10", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82313,7 +82313,7 @@ } }, { - "id": "f4a05834-d5ca-41c9-9a69-27d8053abcb6", + "id": "b4ed1adb-958c-4ca8-aaef-d575d6163e71", "name": "Delete Multiple Non-Employee Records", "request": { "name": "Delete Multiple Non-Employee Records", @@ -82356,7 +82356,7 @@ }, "response": [ { - "id": "a68b621b-d9de-4822-a8a4-caa1a1daf88e", + "id": "52b99868-9ebc-4062-937f-c8b8363acc2b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -82403,7 +82403,7 @@ "_postman_previewlanguage": "text" }, { - "id": "62f8b6cb-9f62-413c-980e-a6513dcd0007", + "id": "135a625e-3076-4dbc-bb65-cc35d0ecea36", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -82460,7 +82460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14daf4c9-b9c1-4359-8ff1-968593f0af9a", + "id": "701900ee-6c21-4b60-b933-fac7f69e475d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82517,7 +82517,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5de20fef-60ce-4243-951b-b8b968a7ac94", + "id": "4e2407f5-8370-4413-a16c-71241c6d7c6c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -82574,7 +82574,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b28f5ed3-1029-42c9-93e6-7e2cfe61cc4b", + "id": "d11be078-3b61-4959-bea5-5b55d03d6d8e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -82631,7 +82631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c73194-d6a2-4544-a30d-3810c516039f", + "id": "7537ffd8-2aef-40b5-a5bb-f169f7ef746c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -82694,7 +82694,7 @@ } }, { - "id": "2dbd6691-69f7-479d-92bb-4d0c964207eb", + "id": "34be910c-fbc1-4678-86e8-59103f2fe3df", "name": "Create Non-Employee Request", "request": { "name": "Create Non-Employee Request", @@ -82736,7 +82736,7 @@ }, "response": [ { - "id": "95464511-c2d9-4d97-891c-e673196d52dd", + "id": "415bdaf8-b141-41da-a155-d21cdc975e74", "name": "Non-Employee request creation object", "originalRequest": { "url": { @@ -82792,7 +82792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0d1cf95-5cc9-444b-916c-e9c1bf31a52f", + "id": "7f391788-0cf4-4083-adf8-ff007efcf3f8", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -82848,7 +82848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6aa4f29b-059d-43a0-a0f3-28de3fb8f785", + "id": "5e09340f-0523-4e81-b378-866e04402698", "name": "400.1.409 Reference conflict", "originalRequest": { "url": { @@ -82904,7 +82904,7 @@ "_postman_previewlanguage": "json" }, { - "id": "350ecffd-0c45-4b66-8a94-24a4e76b0e45", + "id": "ae61b4b3-4791-44f8-866d-129d916c89a5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -82960,7 +82960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "556aeeaf-f6df-4865-9312-6adafb315eab", + "id": "6c730651-564e-46e9-bcf8-c32722f83354", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83016,7 +83016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c22f566-b9af-4356-ab58-594d33841f8d", + "id": "290352ad-9029-4324-9c90-da96bc423c82", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83072,7 +83072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7495aead-c287-40e4-bf09-724796097c18", + "id": "0e5e5eae-9f35-438b-a0eb-4862fab50395", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83134,7 +83134,7 @@ } }, { - "id": "23a42084-b46f-4936-817d-f9c90ef1d49a", + "id": "b8ec71a1-8bf7-4342-a383-f6d5d8bcdc14", "name": "List Non-Employee Requests", "request": { "name": "List Non-Employee Requests", @@ -83218,7 +83218,7 @@ }, "response": [ { - "id": "10d3381b-e8e6-42a2-99ec-5a211390b940", + "id": "d256555d-2d28-4594-a482-353ef2870a18", "name": "List of non-employee request objects.", "originalRequest": { "url": { @@ -83316,7 +83316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "20f8601e-754a-4c24-b9c9-760e748f1dfe", + "id": "db28d0ba-52b9-47fd-81a4-ab7ad7a05575", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83414,7 +83414,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0c6ba62-c21a-4e89-8719-313afa4118d7", + "id": "82b5a266-5c91-4a63-bf77-b4de7a3b6bc0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83512,7 +83512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c04c918-b9fc-47ef-b70e-b0d8f9cbd6c0", + "id": "cf77f576-b41a-4296-ba62-06c6c84a5c3c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -83610,7 +83610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa959539-24fb-4572-a09c-98b3e634b610", + "id": "e36d91e9-d95e-4334-ad85-839da2be37f7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -83708,7 +83708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31270ea7-4755-48d1-ac2c-0f6b45829794", + "id": "1134939d-ee75-49aa-a872-4c21090aac27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -83812,7 +83812,7 @@ } }, { - "id": "03d74240-4ded-4417-bd38-f761f08552a7", + "id": "adbaef85-d6f0-484e-a530-4e0aea4947de", "name": "Get a Non-Employee Request", "request": { "name": "Get a Non-Employee Request", @@ -83853,7 +83853,7 @@ }, "response": [ { - "id": "21f8f1fb-054d-42a1-b65f-4a69e262bff4", + "id": "783b6c0c-3669-44d5-abc9-f3b84f705aa9", "name": "Non-Employee request object.", "originalRequest": { "url": { @@ -83897,7 +83897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34f74004-ff8c-4583-bdb6-ac42651a55e1", + "id": "2f7f4bc4-d981-46f9-a20f-5404ed824f7e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -83941,7 +83941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cf80f0e-3774-4f68-9c19-805e1977dcd3", + "id": "4e579071-ac32-492b-943e-5379fb7aaa57", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -83985,7 +83985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a183c185-ad90-420f-a241-17c92d85ba21", + "id": "ffd3bae7-2333-4609-82ac-e15a008c934b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84029,7 +84029,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d23ed534-e6ac-4fbf-acc2-7bf6ed910854", + "id": "38f152fb-c5e6-4f5c-9ddc-193fddde9aa6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84073,7 +84073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5dd690d-ca1b-4a75-a571-3eafd49d59c7", + "id": "e8358d88-4fa8-4503-8dcc-732451083053", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84117,7 +84117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c23ca72a-2e08-4249-9ec2-c018cb745ebe", + "id": "fa58ba4f-e77a-4a85-8fd7-b3a41228b6dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84167,7 +84167,7 @@ } }, { - "id": "c4415d28-c425-4c71-a0f4-836117241891", + "id": "d08ff741-73d6-4a04-8b1c-b01dcf495498", "name": "Delete Non-Employee Request", "request": { "name": "Delete Non-Employee Request", @@ -84208,7 +84208,7 @@ }, "response": [ { - "id": "d0f2855b-ff8e-4c05-a5ca-5bdcece342c9", + "id": "1321c635-f281-4184-8114-e89020898796", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -84242,7 +84242,7 @@ "_postman_previewlanguage": "text" }, { - "id": "00f3fe52-dfe3-45dc-8d71-c9bfad784c08", + "id": "3ea27cfd-b0f1-4082-b701-08fdcc98fec7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84286,7 +84286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73068d79-654a-4d1b-b366-99d47126c94a", + "id": "673f1b95-e25f-44f6-a48b-c8d5af8c19f4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84330,7 +84330,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a598fea-72b5-4627-be34-d58b81373a1d", + "id": "22186490-2956-462a-9a58-e5b212323198", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84374,7 +84374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f84711d1-dcc6-44b5-9c47-ce00e50ea5d6", + "id": "675d5176-1be7-4fe2-a0f3-ac611d20c5ee", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -84418,7 +84418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a21cdfb6-62cc-4008-981c-92d8f686fb30", + "id": "da4a2c62-213d-4987-89b9-113aa75c4c56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84462,7 +84462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9807caf7-e6a7-46df-b254-e6862d93894c", + "id": "ce5120eb-6c75-4871-b26b-e3f23889b073", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84512,7 +84512,7 @@ } }, { - "id": "d102761b-5d00-4d40-a197-4aaaa51f9b7d", + "id": "1a6c74c4-5a2d-44e4-ad21-a7ab38d45049", "name": "Get Summary of Non-Employee Requests", "request": { "name": "Get Summary of Non-Employee Requests", @@ -84554,7 +84554,7 @@ }, "response": [ { - "id": "aecf8e59-3bff-4102-acaf-cd65363fdad5", + "id": "1623ed13-2103-491b-a577-14dc94107acc", "name": "Non-Employee request summary object.", "originalRequest": { "url": { @@ -84599,7 +84599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f2f4522-1669-41ca-b862-0d38df2b0356", + "id": "7690f0bd-d31a-48cf-b06c-f20969f245f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84644,7 +84644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "498737df-17e4-4154-9187-dbde1dc49ca8", + "id": "ff9c7e1a-c79c-4aa9-b202-084bf960f290", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -84689,7 +84689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8963cef7-fc8c-44c5-8ef4-69d1ee18c5a5", + "id": "5840d7a4-26d7-4b1d-b728-35b625488c64", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -84734,7 +84734,7 @@ "_postman_previewlanguage": "json" }, { - "id": "53296601-437b-438c-b288-2852347829cd", + "id": "8c979d91-7ee8-4ae0-868c-6680e24ad15b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -84779,7 +84779,7 @@ "_postman_previewlanguage": "json" }, { - "id": "877ee625-4c96-4993-827e-1db55fcc3dea", + "id": "d33071dc-8c57-4b51-8425-cb09c1804338", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -84830,7 +84830,7 @@ } }, { - "id": "3255dbfa-5273-4a4f-ba48-ce421382cb29", + "id": "8136f965-2bf2-4516-ac51-534af17ced4c", "name": "Create Non-Employee Source", "request": { "name": "Create Non-Employee Source", @@ -84872,7 +84872,7 @@ }, "response": [ { - "id": "21130d11-e994-4804-a766-3910b9a5beb1", + "id": "f1de5b8f-bfc0-41e6-8503-71f0b4019d45", "name": "Created non-employee source.", "originalRequest": { "url": { @@ -84928,7 +84928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da8c3e37-46c1-4ec1-af30-1126eb010656", + "id": "0d78f9fd-52dc-4af7-bf37-1783381e254d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -84984,7 +84984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2042c982-a46b-4e9e-b0ae-684ef4300db4", + "id": "e99942b6-8340-402d-a827-2d1f4a82862f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85040,7 +85040,7 @@ "_postman_previewlanguage": "json" }, { - "id": "233baaaf-d9a9-4c5b-b7b2-bdff9fd3f3c5", + "id": "a2d26284-b7f0-44bd-8671-c30ec36af274", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85096,7 +85096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e869bcee-634c-49fe-ab8c-69735113e507", + "id": "fc1af024-a0f1-4c72-aa19-c08f1886e26e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85152,7 +85152,7 @@ "_postman_previewlanguage": "json" }, { - "id": "afd45353-1390-4f57-a0ec-e35591df4867", + "id": "69c802bb-bcf8-4cd7-8453-26a156801666", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85214,7 +85214,7 @@ } }, { - "id": "185359a5-0bf5-4b58-a18f-741bcc20eeb7", + "id": "875999f9-0524-43a6-b095-b6e669708cc5", "name": "List Non-Employee Sources", "request": { "name": "List Non-Employee Sources", @@ -85298,7 +85298,7 @@ }, "response": [ { - "id": "84b90a9a-8e0d-4ea3-a6c0-557bf3d76c36", + "id": "a49fb1a6-64c6-47f0-8366-3029f5fafa17", "name": "List of non-employee sources objects.", "originalRequest": { "url": { @@ -85396,7 +85396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d94fd77c-c4c9-4b7e-aa47-668b26138e37", + "id": "5267ac8a-f74b-4c26-b53d-8b413c560182", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -85494,7 +85494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "908d0c23-a4a9-4b53-b951-c5e0bb805b49", + "id": "584bd932-d627-4004-895e-dfd4c9a8364a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -85592,7 +85592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0352c869-88a2-40b2-9948-aa37aadf5fef", + "id": "a88a63bc-9b44-457a-a686-4194ff3278cc", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -85690,7 +85690,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c928b3-d5b2-4571-809b-9fc707c18865", + "id": "42192a9e-e913-4bdb-b047-7951242f0579", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -85788,7 +85788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f25c5472-f1b2-4c2b-a268-73afc59500e1", + "id": "a9a75273-0e2d-4ae8-bbbe-cae1c418552a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -85892,7 +85892,7 @@ } }, { - "id": "40e23ee2-d4bc-4594-9a03-9aa535885248", + "id": "d7315e3c-a38a-4772-9ad4-8956c3b2785a", "name": "Get a Non-Employee Source", "request": { "name": "Get a Non-Employee Source", @@ -85933,7 +85933,7 @@ }, "response": [ { - "id": "c9a16806-cf98-49e9-a3de-27cf38a972f3", + "id": "fa651858-7138-4252-95f9-e83092bb024f", "name": "Non-Employee source object.", "originalRequest": { "url": { @@ -85977,7 +85977,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d4b985a-7d21-4cd6-8e42-1828dc568b14", + "id": "f026a9ff-db2a-4bbb-a333-de66b2aa1a63", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86021,7 +86021,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fe4de4d-f4e3-4cf2-8231-b9e229cedfe9", + "id": "625c29d1-e640-4d41-93e9-01b4e62476bf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86065,7 +86065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56c25473-0175-4816-8da8-bd5993a40f2f", + "id": "b529bbb6-1242-41a1-bbbd-908a3c8e2dff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86109,7 +86109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1623e083-a0bd-45aa-971d-19106f1c0f14", + "id": "b37f9209-31d5-4483-a1b6-09f901d938b5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86153,7 +86153,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88569a08-1ebc-4799-bde7-634cc50a0350", + "id": "bdb6bbb6-2d11-459a-b927-85ffcd0aae9e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86203,7 +86203,7 @@ } }, { - "id": "90f78d00-49f7-4d54-b0a2-9c5bb8da20a5", + "id": "93312288-6231-4f66-8443-117ae9e1e1eb", "name": "Patch a Non-Employee Source", "request": { "name": "Patch a Non-Employee Source", @@ -86257,7 +86257,7 @@ }, "response": [ { - "id": "aa8f2e8c-4287-452f-acd9-af50bd130869", + "id": "c0c96772-5645-4cc2-b5e5-97cb5fa2732c", "name": "A patched non-employee source object.", "originalRequest": { "url": { @@ -86314,7 +86314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec1a3f5e-e9e9-4888-bc19-9802b8e64ac7", + "id": "6f81f2e6-ab8a-43e2-b4d6-8b4dc403b0c9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86371,7 +86371,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c99814d6-32f7-432a-b571-fb240d1348b5", + "id": "1794aa4d-fd5c-41d2-9de6-f2aac629d0ca", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86428,7 +86428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ba9a74c-73fc-458d-938d-6a506efc93f2", + "id": "2ffcce1d-1660-476e-a191-26c1567172e1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86485,7 +86485,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daa8c333-02ce-443d-915b-3efce66bf807", + "id": "978bb425-0600-407f-bd7a-dff17c6b5cd1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86542,7 +86542,7 @@ "_postman_previewlanguage": "json" }, { - "id": "159a4f8d-9483-4c30-80b4-83883829f7ae", + "id": "fc5132c4-193a-430c-a211-c34bb79b023b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86605,7 +86605,7 @@ } }, { - "id": "201f429f-6b42-400f-ad99-7cc7e45efc03", + "id": "5d661926-a672-45e0-8997-3ce1511d6abb", "name": "Delete Non-Employee Source", "request": { "name": "Delete Non-Employee Source", @@ -86646,7 +86646,7 @@ }, "response": [ { - "id": "f977d9af-033a-4d6f-a188-3f84c4fc1096", + "id": "b6bf224a-e551-42ff-bb92-78d9dc076fb5", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -86680,7 +86680,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3ec06381-8492-4668-bd1e-546ca9d46924", + "id": "671588f1-988e-4d3e-97be-0a3695a09d78", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -86724,7 +86724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc685413-6195-4129-8059-c84f874f7181", + "id": "d8a85e9d-cd22-4a1c-b658-9bcadd2985d2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -86768,7 +86768,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0882355b-1d88-4838-afe5-33b0ed8f5a9e", + "id": "7dcbfa2c-a835-419e-ae35-bb866224bba3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -86812,7 +86812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2022b23f-a1e2-485d-85f6-512e33f508d3", + "id": "016efce9-56c7-46d3-9a5c-4fa697bc3c33", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -86856,7 +86856,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdb1931f-4f73-4a08-888e-61e9fe5db775", + "id": "f478821f-f63a-41e9-bf71-a5312a6909ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -86906,7 +86906,7 @@ } }, { - "id": "69794386-33ee-4d5b-94c9-d26ab676d9c8", + "id": "72151e8b-170b-4a8d-9986-4baa89e5dc2a", "name": "Exports Non-Employee Records to CSV", "request": { "name": "Exports Non-Employee Records to CSV", @@ -86949,7 +86949,7 @@ }, "response": [ { - "id": "ea02efa7-1bb2-4824-9e0b-0d165c2eeef7", + "id": "748e29cb-5694-4ac5-b997-bc5d52acb1c4", "name": "Exported CSV", "originalRequest": { "url": { @@ -86995,7 +86995,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3070e187-cb3d-4772-89c8-e95f69a8a919", + "id": "02018c94-95dd-49f9-9e5c-afe9fde9478f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87041,7 +87041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdea939d-a7dd-4f22-b7ae-072376f8be88", + "id": "17b70a24-9d4b-4e63-8a27-6a6e94df7557", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87087,7 +87087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a525f7c1-5dcb-430d-9d7a-b6e49126c87b", + "id": "9e294eb4-4cf8-46bc-ac24-a93e170d639f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87133,7 +87133,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d0ddfba-54d5-43a0-9b25-7f8c8461a76c", + "id": "0d201d2c-488b-4f31-9440-350c6fc78702", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87179,7 +87179,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f89563c-6177-414a-8508-fcb7047f49b9", + "id": "5566aa8a-de13-4791-8585-84d566b1d374", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87225,7 +87225,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b461a71d-e565-46fe-a610-dc96f7457238", + "id": "421109aa-6b5b-42a7-9791-4eb4bf9b156d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87277,7 +87277,7 @@ } }, { - "id": "45ce0cc5-845e-4356-9b54-14d3e6a518ca", + "id": "b2ce4a36-dc36-4386-9e50-306984f91b9d", "name": "Imports, or Updates, Non-Employee Records", "request": { "name": "Imports, or Updates, Non-Employee Records", @@ -87335,7 +87335,7 @@ }, "response": [ { - "id": "230cb353-022d-4fce-9e79-f064d43ff63e", + "id": "c0177709-9047-4fb5-bf86-33a7baa20565", "name": "The CSV was accepted to be bulk inserted now or at a later time.", "originalRequest": { "url": { @@ -87396,7 +87396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "880f1773-fec8-400d-b666-e3a6151c6872", + "id": "7f303758-0001-4854-979f-dfd95e647166", "name": "Client Error - Returned if the request body is invalid.\nThe response body will contain the list of specific errors with one on each line.\n", "originalRequest": { "url": { @@ -87457,7 +87457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5bdeb84-28d8-4318-85d5-53553328be93", + "id": "bccc42c8-3042-4814-97ee-d6b2750f0619", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87518,7 +87518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a5dae75-4137-447f-96cf-7c27c4a169cd", + "id": "a722089a-23b2-46bb-ac85-b65b70110366", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87579,7 +87579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16839e71-cb06-41ab-9599-876a049b4b5c", + "id": "2ba129c4-5743-4a54-b34e-99a61d1c863c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -87640,7 +87640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47625101-475b-4b24-ac49-46201d9c52c2", + "id": "c5be9ea7-a703-4ae8-8bc1-5c916fd5ac3b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -87701,7 +87701,7 @@ "_postman_previewlanguage": "json" }, { - "id": "456a0cb6-c383-4b8d-928d-c19ad7de4fad", + "id": "6dc9a737-d3fe-45b7-88c3-ef683b3eef8f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -87768,7 +87768,7 @@ } }, { - "id": "33d717ad-9838-4c84-a27f-527cee03cd3e", + "id": "19535705-1b73-4762-96b7-873a303d7662", "name": "Obtain the status of bulk upload on the source", "request": { "name": "Obtain the status of bulk upload on the source", @@ -87811,7 +87811,7 @@ }, "response": [ { - "id": "56efde55-10d7-46f4-b71c-21dc1fff3f8f", + "id": "dd68352b-856b-48ea-8c3b-508f50bfe5cb", "name": "Status of the newest bulk-upload job, if any.", "originalRequest": { "url": { @@ -87857,7 +87857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec49ee12-35a1-451f-846b-829f10116e93", + "id": "cabc5141-97c2-49d8-bb69-b85f2d42dea0", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -87903,7 +87903,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15930649-d999-4e4e-a9e3-b59e39cb5631", + "id": "502d4007-f572-4b2f-8d11-bbe8f8a285c6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -87949,7 +87949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f735eb80-75a4-409f-be93-eaa1ca8aa23b", + "id": "6fabc189-edf0-409c-a4c6-3d3e2c65ad53", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -87995,7 +87995,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6560cc0b-35a6-4689-adc7-bdbd07ddb6bf", + "id": "cb45f2a3-3093-437b-8b6e-9ae75d07c60e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88041,7 +88041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "155c0198-73ba-4c1f-9999-5675116e3239", + "id": "6d95dc52-e05d-4187-b7e8-f84d9b4fdad1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88093,7 +88093,7 @@ } }, { - "id": "1fdccc98-6bfd-490e-9e85-457a05b3f1b3", + "id": "48f1dfaa-19d6-49cf-8f5f-df0188e8fea7", "name": "Exports Source Schema Template", "request": { "name": "Exports Source Schema Template", @@ -88136,7 +88136,7 @@ }, "response": [ { - "id": "c25dc563-6ae3-4b38-b6a2-fac9efed9033", + "id": "d16f51a5-3437-4aa6-bd00-ca77e8aff59f", "name": "Exported Source Schema Template", "originalRequest": { "url": { @@ -88182,7 +88182,7 @@ "_postman_previewlanguage": "text" }, { - "id": "276f0686-eab8-431e-a1cf-d76913687d55", + "id": "93a186b8-b17c-419d-a78a-f5bcd224a958", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88228,7 +88228,7 @@ "_postman_previewlanguage": "json" }, { - "id": "495af3f4-54ad-4cf4-9dad-74b97c1b98b5", + "id": "5b8f1501-c001-4d3d-83da-588e0beddffd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88274,7 +88274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7127372-3275-49a2-806e-28807a52f9e8", + "id": "f6c7d02e-b6ea-4b8b-81d7-c88b4a43ecc0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88320,7 +88320,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50f31ebb-ebce-4d6f-ad37-626f0a8c3722", + "id": "7565c9de-152c-40f3-a6a7-a802d1eb77c4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -88366,7 +88366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51257ad7-488d-4a16-b1b4-f498f2aba50d", + "id": "ca3e2ef7-9ecf-41d1-98c0-f52bf76a74bf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -88412,7 +88412,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143e1712-c7a3-4ee0-82ab-965cddd66068", + "id": "d087395e-a504-4c7f-a2c7-d45cae9a6abf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -88464,7 +88464,7 @@ } }, { - "id": "e60d454e-328a-409e-a2e8-e9fda56ad05d", + "id": "b3dafbe5-aac4-44bb-b157-9ef6c55eeeb1", "name": "Get List of Non-Employee Approval Requests", "request": { "name": "Get List of Non-Employee Approval Requests", @@ -88548,7 +88548,7 @@ }, "response": [ { - "id": "ec52b35c-496c-4c02-bf79-49ca1ddcae99", + "id": "8e5c8830-0099-43aa-924f-17fa1bf68a87", "name": "List of approval items.", "originalRequest": { "url": { @@ -88646,7 +88646,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2e9f81c-7865-4f8d-8c9c-ed774ec2c470", + "id": "16ad4341-a708-448f-942f-d80328e0858b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -88744,7 +88744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94924ebd-2a8a-455b-9f01-5e1005696aec", + "id": "3f5f66b8-ff45-4856-9dad-3f2dda2dd933", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -88842,7 +88842,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47072de9-1822-474f-906d-0b223548889c", + "id": "58551f14-fad7-4064-a2b8-cf6eb2554f14", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -88940,7 +88940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "684e2ed4-1d6c-400f-9aab-ef66f31a6a2f", + "id": "2bd4906f-dcfa-4473-a127-e9ac461abfaf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89038,7 +89038,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fa0bcc9-443e-42cb-a6d4-20e346781a47", + "id": "2f01e6af-0991-4f4a-b340-86cf81ce99fd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89142,7 +89142,7 @@ } }, { - "id": "9fb6dc66-4a1f-41f0-8c46-ca12249af02f", + "id": "5c520863-43bb-4550-8cd1-317b17cf3706", "name": "Get a non-employee approval item detail", "request": { "name": "Get a non-employee approval item detail", @@ -89193,7 +89193,7 @@ }, "response": [ { - "id": "099e03b3-34dd-41f1-a1d8-bbae052ed205", + "id": "31dae06b-2c5f-4f27-9e84-9b249db84bdc", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -89247,7 +89247,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59739c0b-22a0-4189-a9fd-ae3da0c52c5a", + "id": "db199916-a070-462f-9a65-51afab9d7806", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89301,7 +89301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21955d63-8ea7-4774-958f-8728ac00eacc", + "id": "411744c0-a4cf-4a1b-ba80-f75d753269cd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89355,7 +89355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c20c5a39-248e-414f-b699-23f0ba67d165", + "id": "3f25d4c6-6460-4000-89a9-2654f866b83b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89409,7 +89409,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c3a4926-c046-4b88-871a-afa266d926f1", + "id": "dbd5b5f8-8725-4fb9-bf04-619eada678e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89463,7 +89463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d711880a-24ce-4b40-a22d-15514533f996", + "id": "ceadc2f0-734d-4811-a557-0b4f81480472", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89523,7 +89523,7 @@ } }, { - "id": "6c73906a-2433-4a0e-9f39-b7351cc13572", + "id": "c830e93f-951d-4e38-9ca5-ec9a905f684b", "name": "Approve a Non-Employee Request", "request": { "name": "Approve a Non-Employee Request", @@ -89578,7 +89578,7 @@ }, "response": [ { - "id": "d6d3eed0-83ab-4e90-9401-2fc0a773bf32", + "id": "0c799103-4770-4e80-982d-4fa369e7ed8d", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -89636,7 +89636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a74886d-2628-478c-adb4-c4419487e43c", + "id": "d2c7acec-5f6a-425f-95a1-23a4f3dd9005", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -89694,7 +89694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b4f7684-a541-458b-ae02-1c813c122338", + "id": "ca3d709e-8322-42c9-ba43-03488b48bae6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -89752,7 +89752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70004cde-8d75-48e3-a8ea-11947144548f", + "id": "5cc9b419-36a0-4f13-bfd3-fb42b9fb4e10", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -89810,7 +89810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcd9db03-ffcb-4d51-bb61-82e672dc40f7", + "id": "f9760792-b2e5-4e49-ae6f-296ad90840d7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -89868,7 +89868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7d415a8-7388-443c-9566-4190440274d1", + "id": "e1d1061f-eb00-4853-8b67-7112cc3229bd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -89932,7 +89932,7 @@ } }, { - "id": "41961d10-d566-4aaa-8285-603bcab1b93a", + "id": "132953cf-199e-4095-b23c-dfb9f3aac978", "name": "Reject a Non-Employee Request", "request": { "name": "Reject a Non-Employee Request", @@ -89987,7 +89987,7 @@ }, "response": [ { - "id": "a5235e4f-036d-4067-842f-8cba2cb829bd", + "id": "543fd183-7434-4d6a-a3f7-7f4888a7dda5", "name": "Non-Employee approval item object.", "originalRequest": { "url": { @@ -90045,7 +90045,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c112993c-c8ce-4261-8f84-db9ca910e1bd", + "id": "acf98bc1-f717-4318-8a04-f06aee8eb62a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90103,7 +90103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f686ac4e-84b4-46d2-97e6-6311725771e3", + "id": "3ea95edb-c3d4-48b0-a88c-d91c8d287d3f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90161,7 +90161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e9f2f89-245b-4e46-acf1-7dc8f0d182de", + "id": "ab546fba-81fe-4f39-9b1e-947f839b2ee6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90219,7 +90219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73ac8017-c234-49bb-ae27-d45fcb9b3b15", + "id": "877e766d-46fe-46aa-a931-7ed91a150121", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90277,7 +90277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6da9d376-c39a-4046-b945-ff4a61e98f4a", + "id": "0e1f234a-18c0-4c90-81ac-8083e3a7e014", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90341,7 +90341,7 @@ } }, { - "id": "09414c79-8179-43fd-b579-ba2d4fef1de2", + "id": "784cc190-8550-4c15-828b-4420ecfe4fe4", "name": "Get Summary of Non-Employee Approval Requests", "request": { "name": "Get Summary of Non-Employee Approval Requests", @@ -90383,7 +90383,7 @@ }, "response": [ { - "id": "68c21820-4ae1-43e6-b65a-24aca23382fa", + "id": "7ec7463c-9cdc-4c7c-9378-500ccc9a7aa8", "name": "summary of non-employee approval requests", "originalRequest": { "url": { @@ -90428,7 +90428,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cba658e-215c-415f-b23d-a9f23c0b653f", + "id": "72858cf4-f96a-45d3-8637-8a9d3ea02489", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90473,7 +90473,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f100275-192c-4e34-8d11-79aff2cfc29f", + "id": "3334b138-f4ea-4275-b748-3b4e631ff0a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90518,7 +90518,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c247d4e-f194-441e-8ac0-b9a0055215bd", + "id": "92ccd8b4-0109-4f4a-9f1a-d9c9cb461ce5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90563,7 +90563,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c679f20c-bcb6-4e52-a9cd-6445a2cd2b4c", + "id": "db635b75-a812-4646-9a4f-fbc7aa6ffe1e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90608,7 +90608,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f2b3e38-abea-4012-80c5-12c8dbe62e7c", + "id": "ed7942d8-a747-4e4b-a9f4-7e03424985c0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -90659,7 +90659,7 @@ } }, { - "id": "6f58f79b-5851-4a62-a279-01ceb45e4392", + "id": "a8ecd9e4-9d42-4152-b788-e55b7ba9679d", "name": "List Schema Attributes Non-Employee Source", "request": { "name": "List Schema Attributes Non-Employee Source", @@ -90701,7 +90701,7 @@ }, "response": [ { - "id": "c09800fd-213c-4b94-839a-42b39b798318", + "id": "8e5f4d68-c08f-4c11-a17a-8d6ff620ada5", "name": "A list of Schema Attributes", "originalRequest": { "url": { @@ -90746,7 +90746,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be66667b-ae1d-4bbe-ac5a-2908f1c33cca", + "id": "16dcff2e-5876-4d50-9ba5-4535a50d8ce5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -90791,7 +90791,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5bd9191-a109-43c2-82f2-c92249e04c13", + "id": "78e830ed-c67d-4a77-83e4-aa96e1a96c6a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -90836,7 +90836,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18d43eca-2ece-46fe-8125-cabe94b9662d", + "id": "fa2a9aa1-96b6-4780-92a6-f4d45c0fb2e5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -90881,7 +90881,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e63eebd3-b266-43ca-9834-e05095e9265c", + "id": "0fefb4f6-24b3-40c3-8058-84534e45cdae", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -90926,7 +90926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d92ce794-e354-473d-97be-7345b9667692", + "id": "c11914f1-bec8-4ad8-a01b-7f434a726606", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -90971,7 +90971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "600fce55-2f01-49dd-9f20-a72a7c332b7c", + "id": "ff7d971f-13ac-4ec4-9852-91f6b1bb74d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91022,7 +91022,7 @@ } }, { - "id": "858a15f0-1981-41ae-aa77-0a270a6efe37", + "id": "0931a694-ccdf-49da-9b2c-d00b7d12faa9", "name": "Create a new Schema Attribute for Non-Employee Source", "request": { "name": "Create a new Schema Attribute for Non-Employee Source", @@ -91077,7 +91077,7 @@ }, "response": [ { - "id": "fb1c59d7-79ac-4f45-80a8-d1388ccf58fc", + "id": "0fac4657-52bc-439e-93d4-73a07037c23e", "name": "Schema Attribute created.", "originalRequest": { "url": { @@ -91135,7 +91135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7db09367-3a01-4264-b9b8-bbb860f2c1ff", + "id": "e7f41f31-a84f-49a6-8603-e3d5229d73fb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91193,7 +91193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b56cd95-efa2-4f30-919c-6da6b57464de", + "id": "a739e704-42dd-4ea8-9869-55bbcfb30880", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91251,7 +91251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fac6c421-6143-4cf4-91e3-de80c90d999e", + "id": "b8494721-75a6-4367-a8a2-102bf77cfd48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91309,7 +91309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62cdcc1f-7e12-45c6-8e42-31cdb0d8a92b", + "id": "8af1b744-3998-473d-a76c-06a6cfcde7b8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91367,7 +91367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8045da1-d819-4b8f-a80f-d9c914c76ea1", + "id": "10a17e57-f5e6-4eaa-8be6-df820f8ab51c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91431,7 +91431,7 @@ } }, { - "id": "b903072c-cbdb-4207-a40d-571ce80c7878", + "id": "ee0d532e-d595-44b3-a0d6-1147852377f6", "name": "Delete all custom schema attributes for Non-Employee Source", "request": { "name": "Delete all custom schema attributes for Non-Employee Source", @@ -91473,7 +91473,7 @@ }, "response": [ { - "id": "c187677d-f5b0-4f14-9056-6749186a08cd", + "id": "426b5b2f-7891-4ce9-8ba8-113e4f3020f0", "name": "All custon Schema Attributes were successfully deleted.", "originalRequest": { "url": { @@ -91508,7 +91508,7 @@ "_postman_previewlanguage": "text" }, { - "id": "94fab707-44f2-4a2c-9563-e35e06efdcfe", + "id": "224ddcea-8b14-48ea-8075-3012866ee0c8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91553,7 +91553,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7ceecf9-30f1-4149-bcae-feaa9ae33ce6", + "id": "5f282fa6-867f-4c3d-a7a1-19e243820940", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91598,7 +91598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "631afc46-a20e-459e-846d-700e8c5cef92", + "id": "fbe8ba3b-e575-49cf-b6e0-75635db60b96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91643,7 +91643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff18f96c-4c5e-4d1e-88ac-d172e4e5c999", + "id": "a79e34e6-c8bb-4f93-802f-9c3a7fad88ed", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -91688,7 +91688,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28f9ceee-11a7-4c31-a8f0-bb71afac7329", + "id": "843e0c78-1022-4e64-9df4-3732324461d8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -91739,7 +91739,7 @@ } }, { - "id": "6312d14a-3df9-4237-b0bc-214cdf302873", + "id": "8b445d47-c0b4-46e2-b458-d573feff8591", "name": "Get Schema Attribute Non-Employee Source", "request": { "name": "Get Schema Attribute Non-Employee Source", @@ -91792,7 +91792,7 @@ }, "response": [ { - "id": "48f93a69-4707-4145-bb40-21b149d2d205", + "id": "62da8038-fef7-405a-9596-6fd4147fd8bc", "name": "The Schema Attribute", "originalRequest": { "url": { @@ -91838,7 +91838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0b049ee-fc2a-4de9-a1ff-e634be444c91", + "id": "ec118b80-8542-4d8e-bd28-b9340c21ea1c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -91884,7 +91884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f4b259c-e8e8-402b-8a14-3ef06c4ee31b", + "id": "46028e90-18ee-49b3-9e1f-dae2c541763e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -91930,7 +91930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0094170-06ed-4402-94a0-11ffa2f17d5b", + "id": "7034a982-2329-4c30-a0c4-94eb436fecc1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -91976,7 +91976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d880300-9988-44c4-b628-53cefae56aad", + "id": "58cf0b5c-a766-40bd-ae51-7457c37faf2c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92022,7 +92022,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c7136e-721c-4d19-94c0-be6cbef8cd96", + "id": "c8f7b038-5c10-4851-9550-69958ac86361", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92074,7 +92074,7 @@ } }, { - "id": "289542e6-7cb3-4ec9-bbfd-7b148cb9d1fa", + "id": "84b924c7-8f7d-4e38-b856-791a48961544", "name": "Patch a Schema Attribute for Non-Employee Source", "request": { "name": "Patch a Schema Attribute for Non-Employee Source", @@ -92140,7 +92140,7 @@ }, "response": [ { - "id": "5b14e0b2-862c-476c-b60d-1de687e725b4", + "id": "ed46dcf9-16e2-4e92-a9fb-e15e8646e6b6", "name": "The Schema Attribute was successfully patched.", "originalRequest": { "url": { @@ -92199,7 +92199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "711b7849-f16a-4f45-b649-825611a6a5cb", + "id": "41d350d8-07ad-4221-8a66-bb6308437185", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92258,7 +92258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4048b03-6e4a-4133-857a-fdbd7a065b2b", + "id": "4d500953-5984-4729-8395-a2e03543e296", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92317,7 +92317,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40c43af3-624d-4c07-85ce-1fa9e58abdb6", + "id": "7df28289-5108-4752-84d5-938d9368e881", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92376,7 +92376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "892d0985-8902-4f3e-b089-f44027d5acc9", + "id": "25642214-abf4-4a03-a230-27214f362086", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -92435,7 +92435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdd716d5-0dc5-405b-9b40-5b407a692713", + "id": "375bb8cd-a81e-4f58-aa03-80d230dd6865", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92494,7 +92494,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a89bb552-62ac-45c7-ab3c-5191d957c3c5", + "id": "7968d941-a42a-4655-8290-5f8b5f28edea", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92559,7 +92559,7 @@ } }, { - "id": "cf2fdafd-d579-4ab6-b228-6feb693652ec", + "id": "7f6ff753-5624-4d0e-b000-0f94658f0d06", "name": "Delete a Schema Attribute for Non-Employee Source", "request": { "name": "Delete a Schema Attribute for Non-Employee Source", @@ -92612,7 +92612,7 @@ }, "response": [ { - "id": "9ac0a512-6a19-4013-9312-cce7d7391977", + "id": "6a1b7db5-3259-4446-97e8-0d87dbf31ce3", "name": "The Schema Attribute was successfully deleted.", "originalRequest": { "url": { @@ -92648,7 +92648,7 @@ "_postman_previewlanguage": "text" }, { - "id": "132b8c2e-bf1c-41b4-8445-051a4d562488", + "id": "492d657b-7036-46ca-b576-1e3acc3fd888", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -92694,7 +92694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "544efba2-46b9-432d-b488-b822ac6fc9ec", + "id": "ac35c57f-de00-407c-9cbb-6cb6548c9728", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -92740,7 +92740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7e4804c-db92-4c92-ae00-fd9b4a354a7c", + "id": "f132c72f-e3bb-4221-8edb-4604c680063f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -92786,7 +92786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "293d2e50-d599-4c69-b27e-a27bf93b730d", + "id": "dd3f53c1-a4e2-4769-ae47-17c0ae6fe450", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -92832,7 +92832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af235579-29a4-4f87-94da-0b29ca3a9441", + "id": "7bd7f874-0fdd-4dcc-a553-8c4ba6985c4e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -92890,7 +92890,7 @@ "description": "Use this API to implement OAuth client functionality. \nWith this functionality in place, users with the appropriate security scopes can create and configure OAuth clients to use as a way to obtain authorization to use the Identity Security Cloud REST API.\nRefer to [Authentication](https://developer.sailpoint.com/docs/api/authentication/) for more information about OAuth and how it works with the Identity Security Cloud REST API.\n", "item": [ { - "id": "222ef775-82e8-4988-a165-09b750abda98", + "id": "3e9b71dd-fff4-4a0b-8830-5bbcfd7f17ec", "name": "List OAuth Clients", "request": { "name": "List OAuth Clients", @@ -92929,7 +92929,7 @@ }, "response": [ { - "id": "60c77920-f7d3-49a2-a1ba-69ffdab0e500", + "id": "268714ab-2db5-4cf1-a5f4-c4f0e1fa826c", "name": "List of OAuth clients.", "originalRequest": { "url": { @@ -92977,12 +92977,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"ad m\",\n \"metadata\": \"voluptate irure ipsum reprehenderit\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"consectetur et Ut\",\n \"metadata\": \"tempor fugiat aliqua minim\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", + "body": "[\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"do aliquip velit consectetur\",\n \"metadata\": \"proident\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n },\n {\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"cillum magna consequat\",\n \"metadata\": \"Ut officia dolore quis in\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "fd894b42-f062-46c8-a47d-9baf4c34ad94", + "id": "0fa986b3-3ee4-418a-b02a-23ec63ad9c62", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93035,7 +93035,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9873711-39ae-4aa6-b1e5-61226e1fc38c", + "id": "6c920245-264a-44a4-a877-1fe625d6a065", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93088,7 +93088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd7bf09d-3593-4460-a904-d07619d38f3d", + "id": "3aea2f47-fc90-4a9e-8333-ffcc0ca5bfb2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93141,7 +93141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1afec1f-4cb5-4804-8b73-8fa06a9629aa", + "id": "6bd49ef6-4bbf-4118-a423-12b39384b974", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93194,7 +93194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3677fd30-ba4b-48af-bb83-c61ecb3393ad", + "id": "760f52c0-993a-4274-828d-ae8198603ba8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93253,7 +93253,7 @@ } }, { - "id": "f50064b3-1565-495a-8024-b6e2ae067680", + "id": "7e8129ad-f186-429a-b8c9-f712e9092983", "name": "Create OAuth Client", "request": { "name": "Create OAuth Client", @@ -93295,7 +93295,7 @@ }, "response": [ { - "id": "82290b33-1e72-4e22-be70-23ff53d7dd27", + "id": "44861b8c-86b1-4609-8705-3c9fc266cd33", "name": "Request succeeded.", "originalRequest": { "url": { @@ -93351,7 +93351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3059ef8e-d966-429e-9ab6-4a1dfb8fe173", + "id": "d36d0298-ce6e-4d65-a812-dc6158598771", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93407,7 +93407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f4eed00-bf5a-4e70-a01d-c4838c2133a7", + "id": "20847bbc-71cd-4b59-8434-503694123d4f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93463,7 +93463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5293ff9-8ca7-41b0-8313-9c4b5350ad91", + "id": "bec62779-99c1-4790-aad0-187c1019379f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93519,7 +93519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19a5e99a-c384-4cd7-8eb3-14ef172575d8", + "id": "c99330fe-8c20-4606-b7d7-a9409a22baad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93575,7 +93575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21457008-6e28-4b99-8584-31e1e6c9c1b6", + "id": "d1205aee-6579-42b4-916b-7d9c96cd5299", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93637,7 +93637,7 @@ } }, { - "id": "f8435920-f9f8-4efe-830e-26ae87211dd1", + "id": "a6c1cce5-5851-4055-9951-1fae4f8fac72", "name": "Get OAuth Client", "request": { "name": "Get OAuth Client", @@ -93678,7 +93678,7 @@ }, "response": [ { - "id": "124579b0-3b22-4fad-8e64-adbb35b9aa7a", + "id": "c00ff715-b8ba-41d6-be3f-06e623f2e5c8", "name": "Request succeeded.", "originalRequest": { "url": { @@ -93717,12 +93717,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"dolor dolore\",\n \"metadata\": \"cupidatat veniam minim cillum\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"cupidatat\",\n \"metadata\": \"sed ex ullamco aute\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "57639a4e-b226-4ac7-b92d-fab9989845a4", + "id": "6fb255e2-8529-472b-9b5f-5908ca02551d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -93766,7 +93766,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06cbb6ce-424a-48ef-8955-bf8db3a0fac6", + "id": "65d5af16-5a13-4ecb-bac2-be1bb30c470b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -93810,7 +93810,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1e01adb-e317-401a-89c6-a5e0fd700c4d", + "id": "8119b1c9-d4a5-4546-9675-3d08348ba071", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -93854,7 +93854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e9e8c25-f44d-4f9f-a67b-600cb4976c2b", + "id": "d209dbbf-b9c2-43cc-8acf-1be7b2afb02f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -93898,7 +93898,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2676c407-3a5e-4257-8c45-f4a8c99fa78f", + "id": "2d00e7a8-9eaa-4d7e-9c9b-5794caae03ad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -93942,7 +93942,7 @@ "_postman_previewlanguage": "json" }, { - "id": "267d757a-b154-4766-97de-5711cf31ca6b", + "id": "57c47ddd-85cc-480c-9d3e-5116302951cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -93992,7 +93992,7 @@ } }, { - "id": "379ff2c5-a234-4ce5-abbe-5ca3d0725bd4", + "id": "799a8a73-b534-4931-b906-1816bd9e6537", "name": "Delete OAuth Client", "request": { "name": "Delete OAuth Client", @@ -94033,7 +94033,7 @@ }, "response": [ { - "id": "ee2281a2-b0e1-442a-b1a6-9c04bbbd5724", + "id": "026f8ea1-0afe-4049-96d2-31a57da56331", "name": "No content.", "originalRequest": { "url": { @@ -94067,7 +94067,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0008c9d5-18a1-48ed-a90c-83844ef517a8", + "id": "8e9d0ff1-cf8d-4b53-ab83-4a25acd9c852", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94111,7 +94111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5586f247-950b-432c-87c7-a1c5a9b9e717", + "id": "42713ccd-4a69-48e7-a767-057502499a63", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94155,7 +94155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "269dd739-27ea-4162-9bed-9a07d5f54a86", + "id": "db42fff2-d1ac-4280-a50d-d44db0e82b08", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94199,7 +94199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e32002a9-1d79-4391-94e4-d8ff8b6c8f28", + "id": "ded6a440-9235-485e-8c35-b2649ea45ff1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94243,7 +94243,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10397475-2a14-44b8-9ec4-304f05510e58", + "id": "fa244307-8938-40af-a0a5-cddaed059240", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94287,7 +94287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f58a841-e436-4e0d-8f24-68d47ff80ffe", + "id": "9c0bdc58-9c6c-463f-b927-466791b04297", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94337,7 +94337,7 @@ } }, { - "id": "007149e3-fa49-44df-9de0-78889ef5a465", + "id": "9f3abc3e-6d8f-4c6c-a358-65c26c202e99", "name": "Patch OAuth Client", "request": { "name": "Patch OAuth Client", @@ -94391,7 +94391,7 @@ }, "response": [ { - "id": "1872574d-0486-45c4-be31-0fa9c9be6fc1", + "id": "c0aa9c14-dd90-4048-b9bb-d0ecafa827ef", "name": "Indicates the PATCH operation succeeded, and returns the OAuth client's new representation.", "originalRequest": { "url": { @@ -94443,12 +94443,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"dolor dolore\",\n \"metadata\": \"cupidatat veniam minim cillum\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", + "body": "{\n \"id\": \"2c9180835d2e5168015d32f890ca1581\",\n \"businessName\": \"Acme-Solar\",\n \"homepageUrl\": \"http://localhost:12345\",\n \"name\": \"Demo API Client\",\n \"description\": \"An API client used for the authorization_code, refresh_token, and client_credentials flows\",\n \"accessTokenValiditySeconds\": 750,\n \"refreshTokenValiditySeconds\": 86400,\n \"redirectUris\": [\n \"http://localhost:12345\"\n ],\n \"grantTypes\": [\n \"AUTHORIZATION_CODE\",\n \"CLIENT_CREDENTIALS\",\n \"REFRESH_TOKEN\"\n ],\n \"accessType\": \"OFFLINE\",\n \"type\": \"CONFIDENTIAL\",\n \"internal\": false,\n \"enabled\": true,\n \"strongAuthSupported\": false,\n \"claimsSupported\": false,\n \"created\": \"2017-07-11T18:45:37.098Z\",\n \"modified\": \"2018-06-25T20:22:28.104Z\",\n \"scope\": [\n \"demo:api-client-scope:first\",\n \"demo:api-client-scope:second\"\n ],\n \"secret\": \"cupidatat\",\n \"metadata\": \"sed ex ullamco aute\",\n \"lastUsed\": \"2017-07-11T18:45:37.098Z\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d65b0f8e-f56d-43ae-9e41-deeb9722a553", + "id": "b54a411f-d51d-4843-902d-2f3b138d418a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94505,7 +94505,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b467a559-90ea-4cc0-9b20-0581d241cbd2", + "id": "63cff0b1-59ce-4889-be34-05a451243dea", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94562,7 +94562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a81b5334-e159-4c66-9771-5c0833c28dd4", + "id": "3f2312e0-e1dd-42cc-b6e6-4e252826a78d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -94619,7 +94619,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4d1584d5-19c6-4f5d-9c2a-ddcb85fa36a5", + "id": "ed508b6e-ec55-43b7-a0c0-082def12101f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -94676,7 +94676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af9897c0-7dd7-4ee5-b12e-77f396b625d5", + "id": "f9eca20b-cc78-4cfc-a0f0-9ea02addcc11", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -94733,7 +94733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd6726a9-b562-40b1-b275-efd1434f9ccf", + "id": "67766c29-7cd6-4a37-af50-e2bc7f97ed3b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -94802,7 +94802,7 @@ "description": "Use this API to implement organization password configuration functionality. \nWith this functionality in place, organization administrators can create organization-specific password configurations. \n\nThese configurations include details like custom password instructions, as well as digit token length and duration. \n\nRefer to [Configuring User Authentication for Password Resets](https://documentation.sailpoint.com/saas/help/pwd/pwd_reset.html) for more information about organization password configuration functionality.\n", "item": [ { - "id": "98f41c82-c6c6-4697-b0c6-70fbfd98e644", + "id": "3ad31387-ff72-4543-8717-eacc83ecfc6c", "name": "Get Password Org Config", "request": { "name": "Get Password Org Config", @@ -94831,7 +94831,7 @@ }, "response": [ { - "id": "a71419cf-a8ff-4318-b464-30072012e08f", + "id": "8a2faa5c-32a0-40b8-a5df-3f639eaf3130", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -94874,7 +94874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91ed5121-9e0a-4db4-a3b2-dda26188a50d", + "id": "4be17f77-a16e-4f7a-9fb2-4135a8fba2d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -94917,7 +94917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92829d67-2fef-493a-af6c-31c8e1773598", + "id": "33136464-c911-4f49-a57b-1f9b48a4c89a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -94960,7 +94960,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f9343b9-bbee-41a0-a1e4-33cc197f936a", + "id": "da33564a-3b0f-412b-b312-ed67133ec2de", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95003,7 +95003,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e736b5d4-d752-4f33-8cb7-a5ad86511c42", + "id": "c05f3a1d-e4a5-4221-af3e-f375aed32aad", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95046,7 +95046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d60ad381-e5e6-4758-928d-e537852dd1de", + "id": "96c7119f-0ea3-49d7-b85a-32796a4bcb20", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95095,7 +95095,7 @@ } }, { - "id": "d93012e9-f03d-496e-b81b-84bec5ced275", + "id": "ed0a3a06-d0ff-4bb2-9652-ba2b0d05b879", "name": "Update Password Org Config", "request": { "name": "Update Password Org Config", @@ -95137,7 +95137,7 @@ }, "response": [ { - "id": "6ff1ddad-391c-4cec-88cf-148d4e5f283e", + "id": "a54c362b-dacc-4916-82c0-6c6d277f9c0a", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -95193,7 +95193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf41e5ad-ae27-4ce8-8c67-700aae7cb216", + "id": "42cb92f3-1390-4954-8696-ac085711348b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95249,7 +95249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36df350f-4571-4969-bc7c-534e8d57774f", + "id": "a1ab2f2d-71b8-4947-8b41-62c24818283d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95305,7 +95305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30aef531-b86a-4645-bde2-8d4ea3b0c6bc", + "id": "39dbefae-8b05-44d7-a9ef-4df771faf7a5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95361,7 +95361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee2026d0-b9ff-4640-aa56-130495374758", + "id": "cd0c365d-2800-431b-861f-6be8c212b895", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95417,7 +95417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe47d05-fdf1-4707-bb88-d09a43a2df80", + "id": "568af31c-08cf-4723-a3a3-8bb9abab9a92", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95479,7 +95479,7 @@ } }, { - "id": "1c0e35dd-b80a-438c-8e2e-a4f406e1a872", + "id": "0856325b-99a1-43fe-a12b-931d31acce5d", "name": "Create Password Org Config", "request": { "name": "Create Password Org Config", @@ -95521,7 +95521,7 @@ }, "response": [ { - "id": "a3c5a1b3-f71b-4052-ad7d-49591b4993ea", + "id": "d7df1f30-1e27-472d-99fd-7e514e7e0716", "name": "Reference to the password org config.", "originalRequest": { "url": { @@ -95577,7 +95577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a80e00f-8da9-44ca-a29b-cea1716c19df", + "id": "304f5138-8d93-4351-a8bf-8b92029806d1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95633,7 +95633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de5df3a8-2841-40fc-a13a-04c018cf1dcc", + "id": "ea841705-1bc9-46ce-b729-7c785b768310", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -95689,7 +95689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "516c27a1-7a83-4724-ba81-b464bc65adde", + "id": "2ffbea3f-b35f-4071-8bee-a3f7ea84097e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -95745,7 +95745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d3b09ea-f02d-4422-a92c-b8be769b6e5c", + "id": "e90da1b0-bc1d-4020-b75c-2f6916eacbf7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -95801,7 +95801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb021b61-c072-41f0-9203-2c1c1a0cc6ef", + "id": "fda61902-f24f-481a-99e4-8b34553b1d26", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -95869,7 +95869,7 @@ "description": "Use this API to implement password dictionary functionality. \nWith this functionality in place, administrators can create password dictionaries to prevent users from using certain words or characters in their passwords. \n\nA password dictionary is a list of words or characters that users are prevented from including in their passwords. \nThis can help protect users from themselves and force them to create passwords that are not easy to break. \n\nA password dictionary must meet the following requirements to for the API to handle them correctly: \n\n- It must be in .txt format.\n\n- All characters must be UTF-8 characters. \n\n- Each line must contain a single word or character with no spaces or whitespace characters.\n\n- It must contain at least one line other than the locale string.\n\n- Each line must not exceed 128 characters.\n\n- The file must not exceed 2500 lines. \n\nAdministrators should also consider the following when they create their dictionaries: \n\n- Lines starting with a # represent comments.\n\n- All words in the password dictionary are case-insensitive. \nFor example, adding the word \"password\" to the dictionary also disallows the following: PASSWORD, Password, and PassWord.\n\n- The dictionary uses substring matching. \nFor example, adding the word \"spring\" to the dictionary also disallows the following: Spring124, 345SprinG, and 8spring.\nUsers can then select 'Change Password' to update their passwords. \n\nAdministrators must do the following to create a password dictionary: \n\n- Create the text file that will contain the prohibited password values.\n\n- If the dictionary is not in English, they must add a locale string to the top line: locale:`languageCode`_`countryCode`\n\nThe languageCode value refers to the language's 2-letter ISO 639-1 code.\nThe countryCode value refers to the country's 2-letter ISO 3166-1 code.\n\nRefer to this list https://docs.oracle.com/cd/E13214_01/wli/docs92/xref/xqisocodes.html to see all the available ISO 639-1 language codes and ISO 3166-1 country codes.\n\n- Upload the .txt file to Identity Security Cloud with [Update Password Dictionary](https://developer.sailpoint.com/docs/api/v3/put-password-dictionary). Uploading a new file always overwrites the previous dictionary file.\n\nAdministrators can then specify which password policies check new passwords against the password dictionary by doing the following: In the Admin panel, they can use the Password Mgmt dropdown menu to select Policies, select the policy, and select the 'Prevent use of words in this site's password dictionary' checkbox beside it.\n\nRefer to [Configuring Advanced Password Management Options](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html) for more information about password dictionaries.\n", "item": [ { - "id": "6e9c4b86-1990-4d65-854a-13e6d14d1014", + "id": "e0179d57-fb21-4184-a490-c8851612dc81", "name": "Get Password Dictionary", "request": { "name": "Get Password Dictionary", @@ -95898,7 +95898,7 @@ }, "response": [ { - "id": "90c20097-f625-4227-afda-16d83196789b", + "id": "9280e604-b305-4790-9cf3-14907122db42", "name": "A password dictionary response", "originalRequest": { "url": { @@ -95936,12 +95936,12 @@ "value": "text/plain" } ], - "body": "sunt cupidatat ut", + "body": "consectetur consequat adipisicing eiusmod", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "3e346b0d-f0c9-4f0c-869d-dda8e499f619", + "id": "988b1be0-e253-4227-92ca-9eb6b64a83d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -95984,7 +95984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9914c67c-2d68-4bf0-ae6e-b353e3197cb8", + "id": "7ec7d233-233b-4430-85b8-4a52951816e5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96027,7 +96027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60511fb2-157f-4e9e-91e9-0f10c766672c", + "id": "d85db011-7642-4f15-b640-8d5c94f5c8c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96070,7 +96070,7 @@ "_postman_previewlanguage": "json" }, { - "id": "112eb156-d87f-4bf2-9578-735d9dd9c938", + "id": "36305e89-caec-4609-b17b-38387832d6a4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96113,7 +96113,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffd9c4ed-cbbe-4739-b222-38e845d98fb8", + "id": "12f13678-9751-40d0-b437-98213a7e9658", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96156,7 +96156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1f24b2d-1cdd-4140-867e-cde02f3bfcac", + "id": "87e7d836-7524-40ff-b680-b4d8e7598889", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96205,7 +96205,7 @@ } }, { - "id": "2a483e93-81c7-49d3-949a-889a72302edd", + "id": "573dadc2-96d3-4214-b874-9cf8952e6940", "name": "Update Password Dictionary", "request": { "name": "Update Password Dictionary", @@ -96250,7 +96250,7 @@ }, "response": [ { - "id": "794ba320-100c-40fe-b140-493175eefd43", + "id": "a65a8118-be17-410f-872e-93eb5da4b969", "name": "Successfully updated.", "originalRequest": { "url": { @@ -96299,7 +96299,7 @@ "_postman_previewlanguage": "text" }, { - "id": "53a14e2d-806a-4756-aff0-4d77ed3ebfb5", + "id": "9a36e2a9-a00b-4ff4-9ad4-8d090d7c6e02", "name": "Created.", "originalRequest": { "url": { @@ -96348,7 +96348,7 @@ "_postman_previewlanguage": "text" }, { - "id": "fbda306e-ee2d-4435-bd0a-9294e93da527", + "id": "d3e86b1b-9273-457a-81cc-24d5b1526029", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96407,7 +96407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae018db3-c4f1-4846-8f16-f9133a414324", + "id": "28fce210-e1b6-40a2-af3a-b4a89eaff7a2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96466,7 +96466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e593653-8714-4cb3-b974-60dcfba5f896", + "id": "d5c632ba-6f8f-4804-8669-02d953cbf66b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96525,7 +96525,7 @@ "_postman_previewlanguage": "json" }, { - "id": "719ea979-f633-449a-8742-4cc692509272", + "id": "9f0852a1-0fb7-49f2-81e4-e2953e82b4c8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -96584,7 +96584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3705bf40-da8b-4f97-be21-326cf628208a", + "id": "9a1872dc-25d6-4466-abf4-e4d8886d0652", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -96643,7 +96643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d77a68cf-7801-4743-bb92-5e5d9c6014a0", + "id": "5599e0e1-3a5f-4724-9ee2-5a64c804577e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -96714,7 +96714,7 @@ "description": "Use this API to implement password management functionality. \nWith this functionality in place, users can manage their identity passwords for all their applications.\n\nIn Identity Security Cloud, users can select their names in the upper right corner of the page and use the drop-down menu to select Password Manager. \nPassword Manager lists the user's identity's applications, possibly grouped to share passwords. \nUsers can then select 'Change Password' to update their passwords. \n\nGrouping passwords allows users to update their passwords more broadly, rather than requiring them to update each password individually. \nPassword Manager may list the applications and sources in the following groups:\n\n- Password Group: This refers to a group of applications that share a password. \nFor example, a user can use the same password for Google Drive, Google Mail, and YouTube. \nUpdating the password for the password group updates the password for all its included applications.\n\n- Multi-Application Source: This refers to a source with multiple applications that share a password. \nFor example, a user can have a source, G Suite, that includes the Google Calendar, Google Drive, and Google Mail applications. \nUpdating the password for the multi-application source updates the password for all its included applications. \n\n- Applications: These are applications that do not share passwords with other applications.\n\nAn organization may require some authentication for users to update their passwords. \nUsers may be required to answer security questions or use a third-party authenticator before they can confirm their updates. \n\nRefer to [Managing Passwords](https://documentation.sailpoint.com/saas/user-help/accounts/passwords.html) for more information about password management.\n", "item": [ { - "id": "597d041e-740a-4fc1-843d-63b5e7881bd9", + "id": "7563ad46-e137-4a0d-bf7b-70f95b3a8830", "name": "Query Password Info", "request": { "name": "Query Password Info", @@ -96756,7 +96756,7 @@ }, "response": [ { - "id": "2b895303-bb22-4c0c-97a2-9a96cc9f473d", + "id": "89d328c4-d6cd-4d11-90d7-0f2b957bcd6d", "name": "Reference to the password info.", "originalRequest": { "url": { @@ -96812,7 +96812,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c36fb13-05c1-4ec5-9e08-544b75ffad6b", + "id": "0c05fc92-1970-4b4f-b943-609384006033", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -96868,7 +96868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da6350f0-d57a-4ed6-8630-70ca71a822c5", + "id": "77cf9782-b847-4c24-94ab-77a70479b038", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -96924,7 +96924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e403f2e5-4338-445a-a3de-b6c993bf55ad", + "id": "655e7395-a311-49cf-a8c0-20eacc32a135", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -96980,7 +96980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb6db597-fe48-4c36-a2c3-93d50c760a89", + "id": "a8a29ed3-fe2a-4a47-80b5-864ceb294cc8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97036,7 +97036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b6fb464-ba3c-485e-bf70-0cf57f582c60", + "id": "163f1adf-7628-40c0-a214-992186bcdf46", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97098,12 +97098,12 @@ } }, { - "id": "8c8d0892-d82a-42d1-9766-f9f93f64990f", + "id": "b78dd322-1189-4f95-ae1f-38353fd2b51a", "name": "Set Identity's Password", "request": { "name": "Set Identity's Password", "description": { - "content": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nYou can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). \nTo do so, follow these steps:\n\n1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. \n\n2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. \n\n3. Use [Set Identity's Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password:\n\n```java\nimport javax.crypto.Cipher;\nimport java.security.KeyFactory;\nimport java.security.PublicKey;\nimport java.security.spec.X509EncodedKeySpec;\nimport java util.Base64;\n\nString encrypt(String publicKey, String toEncrypt) throws Exception {\n byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey);\n byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\"));\n return Base64.getEncoder().encodeToString(encryptedBytes);\n}\n\nprivate byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception {\n PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes));\n String transformation = \"RSA/ECB/PKCS1Padding\";\n Cipher cipher = Cipher.getInstance(transformation);\n cipher.init(1, key);\n return cipher.doFinal(toEncryptBytes);\n}\n``` \n\nIn this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. \n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", + "content": "This API is used to set a password for an identity. \n\nAn identity can change their own password (as well as any of their accounts' passwords) if they use a token generated by their ISC user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow).\n\n>**Note: If you want to set an identity's source account password, you must enable `PASSWORD` as one of the source's features. You can use the [PATCH Source endpoint](https://developer.sailpoint.com/docs/api/v3/update-source) to add the `PASSWORD` feature.**\n\nTo generate the encryptedPassword (RSA encrypted using publicKey) for the request body, run the following command:\n\n```bash\necho \"myPassword\" | openssl pkeyutl -encrypt -inkey public_key.pem -pubin | base64\n```\n\nIn this example, myPassword is the plain text password being set and encrypted, and public_key.pem is the path to the public key file. You can retrieve the required publicKey, along with other information like identityId, sourceId, publicKeyId, accounts, and policies, using the Query Password Info endpoint.\n\nTo successfully run this command, you must have OpenSSL installed on your machine. If OpenSSL is unavailable, consider using the Virtual Appliance (VA), which has OpenSSL pre-installed and configured.\n\nIf you are using a Windows machine, refer to this [guide](https://tecadmin.net/install-openssl-on-windows/) for instructions on installing OpenSSL.\n\nYou can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password. \n", "type": "text/plain" }, "url": { @@ -97140,7 +97140,7 @@ }, "response": [ { - "id": "69a93357-512f-4d7a-8c17-bb81dd36a1ab", + "id": "207b55ca-44f8-44bc-9a42-965df09fa3ba", "name": "Reference to the password change.", "originalRequest": { "url": { @@ -97196,7 +97196,7 @@ "_postman_previewlanguage": "json" }, { - "id": "892e5c71-63f4-4aa0-87ca-8148d2b4ea83", + "id": "c2e63bc8-bfea-4edc-ae03-95cec50d82a3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97252,7 +97252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6871941d-c2f7-423e-8fd5-fec071a90cfa", + "id": "914864d1-665c-4a88-a8ee-fd48fd39c3de", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97308,7 +97308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52466411-8f22-40b5-9b4d-a76f1300fd8c", + "id": "43cf09fb-9964-40cc-8fc6-faf2cc51aa9d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97364,7 +97364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ebdbce-0aa7-4e07-8b1d-11ea0d83d06c", + "id": "eaaf50cb-1a34-4bfe-9971-b94db54e68ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97420,7 +97420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b606a2d-8018-4907-a175-91143d34be33", + "id": "9bdf6669-c209-4c7d-b956-cd982657acc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97482,7 +97482,7 @@ } }, { - "id": "9a3fadf4-96ce-4e34-b5a7-79a17ce63154", + "id": "a26a23e2-f2ac-4b0b-a6ce-74e279f4b593", "name": "Get Password Change Request Status", "request": { "name": "Get Password Change Request Status", @@ -97523,7 +97523,7 @@ }, "response": [ { - "id": "b0d8ca64-e66d-4214-9e58-0f85d90bd3d5", + "id": "d5acb25c-7f83-4e14-a89e-6fe314046621", "name": "Status of the password change request", "originalRequest": { "url": { @@ -97567,7 +97567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7e11b4c-1d6a-4faa-82ef-d153222012bd", + "id": "9dd8a89c-de85-48b0-b4bb-f26967163ac5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97611,7 +97611,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc8807cb-9d23-4d25-93dc-d4c0450f7776", + "id": "520ff194-edca-4a6e-abd1-973b5d14e3cb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -97655,7 +97655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2802552-7e0f-4b86-acd4-fd56a0ac6c43", + "id": "bb00f7ec-86f4-43ce-bb18-3a9c1afecd61", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -97699,7 +97699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d62db8-dccc-482f-89f3-34e4f8964d7a", + "id": "53f06ce0-d5b9-48ae-a464-30659836b7ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -97743,7 +97743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ca8c8d-4c4f-4788-919d-827c71e5a68b", + "id": "364ac4f2-9c78-4470-adc9-fa4569193029", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -97787,7 +97787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48d6bdff-8c03-479b-908e-5025d64006ae", + "id": "2ae424e4-3899-4a63-8bea-e2563455b457", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -97843,7 +97843,7 @@ "description": "Use these APIs to implement password policies functionality.\nThese APIs allow you to define the policy parameters for choosing passwords.\n\nIdentityNow comes with a default policy that you can modify to define the password requirements your users must meet to log in to IdentityNow, such as requiring a minimum password length, including special characters, and disallowing certain patterns.\nIf you have licensed Password Management, you can create additional password policies beyond the default one to manage passwords for supported sources in your org.\n\nIn the Identity Security Cloud Admin panel, administrators can use the Password Mgmt dropdown menu to select Sync Groups.\nRefer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/pwd_policies/pwd_policies.html) for more information about password policies.\n", "item": [ { - "id": "60057fb3-10cf-455c-b7c1-04d233711d1e", + "id": "8f105b51-93da-44a1-83f9-0798f234d886", "name": "Get Password Policy by ID", "request": { "name": "Get Password Policy by ID", @@ -97884,7 +97884,7 @@ }, "response": [ { - "id": "f2046d1a-8600-4070-b7f6-4eb48dfa1b57", + "id": "0c064b1b-ab33-43b6-8bb4-6950f91c30cb", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -97928,7 +97928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a9dcb7c-0722-4e97-a0d1-8a9c2abdb5fb", + "id": "4d99f1bb-11ff-4ecc-8df6-4321f6059c80", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -97972,7 +97972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2287d7e8-3b8e-42e1-84be-77e31ca9889c", + "id": "fe7c3fe3-902f-4dd7-9a32-c8ddc79fadc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98016,7 +98016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7b3c8349-2df8-4245-9ff9-8ee6be8d6559", + "id": "e7c6b4a7-8ca0-4136-8382-8d8a5786f41c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98060,7 +98060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7948b35f-1f7e-4d04-ac12-e48312fd4969", + "id": "6346bc56-d496-4557-817c-2f269fca90bc", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98104,7 +98104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3fb4a31-813a-459b-b56c-c725fea02946", + "id": "c7a9c04e-9584-46bf-a15c-dd18a3a0063b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98148,7 +98148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f3823c2c-64dc-49aa-93e6-f960a15493d4", + "id": "4c3aeb48-c9fd-452d-95ef-94e659dd1964", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98198,7 +98198,7 @@ } }, { - "id": "9a7af01b-68e9-4d07-8f91-a4958e7e99d4", + "id": "335a1813-9548-472d-87b3-c13dacf9aa57", "name": "Update Password Policy by ID", "request": { "name": "Update Password Policy by ID", @@ -98252,7 +98252,7 @@ }, "response": [ { - "id": "d87b4d05-2ccb-4f80-8c33-7fae5ec50676", + "id": "af1c1bc9-6f83-431b-9ef2-2c746c04b9e2", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -98309,7 +98309,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26901418-7616-4bd0-b1c8-eba988a19e9c", + "id": "6fa3918a-d43c-40cb-8595-e52517508d87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98366,7 +98366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7045843-1c5d-4c6a-9170-2910d7f10d5f", + "id": "be312c94-ef69-47f7-972a-62f872cd3d7e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98423,7 +98423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "683a334e-ec12-4b6e-bf1f-91ebaa705373", + "id": "5198a210-a6ef-4958-8d71-7fcbc004c03e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98480,7 +98480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49ed326a-f9e3-43c2-9822-1a5a77f2918f", + "id": "0918de9b-a21d-4f23-82cf-8374f0acd033", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98537,7 +98537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ab510e61-875a-495b-aca4-5f4d909b2b0e", + "id": "34caabe8-9b4d-4547-92de-b194cc5767a5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98594,7 +98594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d6ec338b-c593-4e4e-bdba-fbfec7bc768b", + "id": "c5dde89d-cb7b-4eec-b4b1-9f503cfe541c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -98657,7 +98657,7 @@ } }, { - "id": "2a4e252d-255b-4f9b-9a6a-7c3362f2bd7b", + "id": "3e49b040-b595-4934-9986-9dba19307bb8", "name": "Delete Password Policy by ID", "request": { "name": "Delete Password Policy by ID", @@ -98698,7 +98698,7 @@ }, "response": [ { - "id": "99ce0ddd-beb7-485d-ba69-c2a61129c5d8", + "id": "129200f2-b255-4a21-bb20-5088e4bfd3c7", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -98732,7 +98732,7 @@ "_postman_previewlanguage": "text" }, { - "id": "37bc460e-483f-4f33-a1a9-de3b20c5e052", + "id": "e1cd92ab-0907-479b-8725-6a38a0df02ca", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -98776,7 +98776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b0beff3d-54c0-49d4-9b06-589e5c4d4c0e", + "id": "a8508ff0-7bdb-4caa-92a2-0fae404b51d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -98820,7 +98820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea71b9b3-6559-419f-a729-dfed0e4b8331", + "id": "c95a03c6-9991-4382-a190-4b2d4ef61f8c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -98864,7 +98864,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c1bd1870-1782-41dc-974b-a4043fc77e97", + "id": "f92bc366-a61a-4d83-bf55-8f15442bd971", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -98908,7 +98908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "771e9fc6-c4d2-478f-8d0d-ef6462de066a", + "id": "78095eb7-2d8a-4948-8595-20d1d3dc7dc7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -98952,7 +98952,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7462ad65-1ab2-4a1d-84cc-6a00e8cb594f", + "id": "a727f9c3-e269-4ac2-9cfb-d57aa074e7c6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99002,7 +99002,7 @@ } }, { - "id": "7c90740c-3ef6-45d9-9c23-ceda59b877a2", + "id": "9d9ec319-5366-49db-a4e7-81705b837ab5", "name": "Create Password Policy", "request": { "name": "Create Password Policy", @@ -99044,7 +99044,7 @@ }, "response": [ { - "id": "059457d7-b9b2-4f8d-9cc8-1c050016ea0a", + "id": "431ab975-7ff2-4fcb-a98e-1ee5d7ded623", "name": "Reference to the password policy.", "originalRequest": { "url": { @@ -99095,12 +99095,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"1949-10-27T13:32:01.076Z\",\n \"lastUpdated\": \"1958-03-06T16:01:15.842Z\",\n \"firstExpirationReminder\": 45,\n \"accountIdMinWordLength\": 4,\n \"accountNameMinWordLength\": 6,\n \"minAlpha\": 5,\n \"minCharacterTypes\": 5,\n \"maxLength\": 25,\n \"minLength\": 8,\n \"maxRepeatedChars\": 3,\n \"minLower\": 8,\n \"minNumeric\": 8,\n \"minSpecial\": 8,\n \"minUpper\": 8,\n \"passwordExpiration\": 8,\n \"defaultPolicy\": true,\n \"enablePasswdExpiration\": true,\n \"requireStrongAuthn\": true,\n \"requireStrongAuthOffNetwork\": true,\n \"requireStrongAuthUntrustedGeographies\": true,\n \"useAccountAttributes\": false,\n \"useDictionary\": false,\n \"useIdentityAttributes\": false,\n \"validateAgainstAccountId\": false,\n \"validateAgainstAccountName\": true,\n \"created\": \"cillum sit non fugiat\",\n \"modified\": \"officia sit qui\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", + "body": "{\n \"id\": \"2c91808e7d976f3b017d9f5ceae440c8\",\n \"description\": \"Information about the Password Policy\",\n \"name\": \"PasswordPolicy Example\",\n \"dateCreated\": \"1951-04-05T14:15:52.248Z\",\n \"lastUpdated\": \"1968-09-22T11:30:11.518Z\",\n \"firstExpirationReminder\": 45,\n \"accountIdMinWordLength\": 4,\n \"accountNameMinWordLength\": 6,\n \"minAlpha\": 5,\n \"minCharacterTypes\": 5,\n \"maxLength\": 25,\n \"minLength\": 8,\n \"maxRepeatedChars\": 3,\n \"minLower\": 8,\n \"minNumeric\": 8,\n \"minSpecial\": 8,\n \"minUpper\": 8,\n \"passwordExpiration\": 8,\n \"defaultPolicy\": true,\n \"enablePasswdExpiration\": true,\n \"requireStrongAuthn\": true,\n \"requireStrongAuthOffNetwork\": true,\n \"requireStrongAuthUntrustedGeographies\": true,\n \"useAccountAttributes\": false,\n \"useDictionary\": false,\n \"useIdentityAttributes\": false,\n \"validateAgainstAccountId\": false,\n \"validateAgainstAccountName\": true,\n \"created\": \"amet et cill\",\n \"modified\": \"incididunt in\",\n \"sourceIds\": [\n \"2c91808382ffee0b01830de154f14034\",\n \"2f98808382ffee0b01830de154f12134\"\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "441928f1-5146-4eb7-a0ab-26340fd0ac99", + "id": "918b0c9b-7cfe-4059-b0c3-1a5059e9a824", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99156,7 +99156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5cd2f3b-3253-4ffe-a203-8082f3cc409b", + "id": "2cad85f5-e5ee-4834-84d1-1db75b43ecf4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99212,7 +99212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17ed7fd1-dc51-45fe-957e-381020762362", + "id": "590f569b-2b46-41ab-9e0d-e9b92c93b5cd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99268,7 +99268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e08c054-b1fd-4e9d-9492-808215c42bad", + "id": "9a9f05cf-4998-4284-b233-b2fb795b4677", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -99324,7 +99324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9656f809-31a4-4b3d-9e7e-a7a8594940fe", + "id": "ff972719-a9d3-481b-9762-77edc7f7bb85", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99380,7 +99380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "36542b0f-facb-4be1-93f9-1f5a6f061297", + "id": "9ff7c967-d09e-4e44-afc4-d8830a59fc50", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99442,7 +99442,7 @@ } }, { - "id": "8a6067ab-405d-47e2-87bf-917ffa555f88", + "id": "019a6a3b-d267-4149-be94-94a99e49ad2b", "name": "List Password Policies", "request": { "name": "List Password Policies", @@ -99499,7 +99499,7 @@ }, "response": [ { - "id": "b854c94b-0e14-4c7f-afce-68e95c6f42ee", + "id": "6bda9d26-7eb3-4c8c-a04e-411f42ec6a27", "name": "List of all Password Policies.", "originalRequest": { "url": { @@ -99570,7 +99570,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8e706d1-b904-4720-9c81-e10dfe2ccfbb", + "id": "892d7944-0782-443b-932e-82fcc528e052", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -99641,7 +99641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64edfdd8-f9c5-4661-80de-13e51b13d544", + "id": "bb7bfde4-ce23-4679-84ee-df43e68bb410", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -99712,7 +99712,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98d48dde-99ee-4e63-8429-b24bc0ae2e44", + "id": "bdc077b1-8217-417b-94a4-f9c4db1e19bf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -99783,7 +99783,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc3051f-1488-4e0d-bce7-0e638c00ecbf", + "id": "d7967551-4642-41e3-bd48-0e66bf9bc2a6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -99854,7 +99854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "538fb732-9e87-49da-b3f5-791bc1bf8323", + "id": "1b75cccd-9cf5-4af1-b66c-f084a9ce70a2", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -99937,7 +99937,7 @@ "description": "Use this API to implement password sync group functionality. \nWith this functionality in place, administrators can group sources into password sync groups so that all their applications share the same password. \nThis allows users to update the password for all the applications in a sync group if they want, rather than updating each password individually. \n\nA password sync group is a group of applications that shares a password. \nAdministrators create these groups by grouping the applications' sources. \nFor example, an administrator can group the ActiveDirectory, GitHub, and G Suite sources together so that all those sources' applications can also be grouped to share a password. \nA user can then update his or her password for ActiveDirectory, GitHub, Gmail, Google Drive, and Google Calendar all at once, rather then updating each one individually.\n\nThe following are required for administrators to create a password sync group in Identity Security Cloud: \n\n- At least two direct connect sources connected to Identity Security Cloud and configured for Password Management.\n\n- Each authentication source in a sync group must have at least one application. Refer to [Adding and Resetting Application Passwords](https://documentation.sailpoint.com/saas/help/pwd/adv_config.html#adding-and-resetting-application-passwords) for more information about adding applications to sources.\n\n- At least one password policy. Refer to [Managing Password Policies](https://documentation.sailpoint.com/saas/help/pwd/policies.html) for more information about password policies. \n\nIn the Admin panel in Identity Security Cloud, administrators can use the Password Mgmt dropdown menu to select Sync Groups. \nTo create a sync group, administrators must provide a name, choose a password policy to be enforced across the sources in the sync group, and select the sources to include in the sync group. \n\nAdministrators can also delete sync groups in Identity Security Cloud, but they should know the following before they do: \n\n- Passwords related to the associated sources will become independent, so changing one will not change the others anymore. \n\n- Passwords for the sources' connected applications will also become independent. \n\n- Password policies assigned to the sync group are then assigned directly to the associated sources. \nTo change the password policy for a source, administrators must edit it directly. \n\nOnce the password sync group has been created, users can update the password for the group in Password Manager.\n\nRefer to [Managing Password Sync Groups](https://documentation.sailpoint.com/saas/help/pwd/sync_grps.html) for more information about password sync groups.\n", "item": [ { - "id": "ef71ee23-4540-4a92-9b35-0ec879322a52", + "id": "5930951b-27f2-407c-8ce3-4ac15942d164", "name": "Get Password Sync Group List", "request": { "name": "Get Password Sync Group List", @@ -99994,7 +99994,7 @@ }, "response": [ { - "id": "e1c7cb76-81a8-4f8e-966c-2fd72224f38c", + "id": "a03bfbd7-a174-4ac3-867d-4da04103311f", "name": "A list of password sync groups.", "originalRequest": { "url": { @@ -100065,7 +100065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6efa2651-8991-4dab-9079-9555a114c3b8", + "id": "ec456ee3-0bc8-4102-97e3-4f6e21e23538", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100136,7 +100136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b234faed-a8a5-4d7b-ab5c-450ad1989410", + "id": "6d3543fa-2c53-4fbb-9b04-bd52e0f62ab4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100207,7 +100207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f36b8d48-dc2b-45af-9310-ad8f60af8b5a", + "id": "aede5035-508a-46f7-a970-2d6fde453247", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100278,7 +100278,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c624c459-e91a-4224-8511-f1304aa1c46f", + "id": "48f81e9a-2034-4687-b189-350197b7141f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100349,7 +100349,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2af64bcc-ac3d-40a5-97a0-e6c27882569b", + "id": "097fbf97-d584-4225-8535-a94dde7be45e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100426,7 +100426,7 @@ } }, { - "id": "67d64cb1-bf81-4c18-b155-a34499ebacba", + "id": "fd130edf-212a-4078-880f-e39cda68f911", "name": "Create Password Sync Group", "request": { "name": "Create Password Sync Group", @@ -100468,7 +100468,7 @@ }, "response": [ { - "id": "b8526e28-b517-4e36-a0c9-692499cd16b9", + "id": "7bbb1763-ec12-4b7b-8020-b9e65beb245e", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -100524,7 +100524,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f754cdbc-f568-4a6c-ada6-cccef65890bb", + "id": "15a70c59-82aa-4f2e-9c26-b50d6b8719c5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100580,7 +100580,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0098b9b-28e6-40fe-891c-5d093926a265", + "id": "554caeda-f6ed-41ec-883d-b74ae044b033", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100636,7 +100636,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2872afd-9038-4551-9fe2-c91273ef6c0a", + "id": "47d6d62a-02cf-4294-bfc4-c7d842abfb99", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -100692,7 +100692,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11827387-6c42-4d9b-90e7-f4de25d373b0", + "id": "77507029-397c-4e61-9e68-3af82c21307e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -100748,7 +100748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e696c22-3482-4393-81a8-0d77f6efe87d", + "id": "339a2fc2-b1fe-474c-8dd7-75539c8ec557", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -100810,7 +100810,7 @@ } }, { - "id": "cf4f3252-16be-4e5e-aa80-532f86ea2047", + "id": "e6f4c4c9-6ee9-4114-a3db-c12748da5d73", "name": "Get Password Sync Group by ID", "request": { "name": "Get Password Sync Group by ID", @@ -100851,7 +100851,7 @@ }, "response": [ { - "id": "82b5c999-ac75-445a-ae14-56f20410ef1e", + "id": "9f1d83b6-8abb-4ebe-a6cf-71f41d29f721", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -100895,7 +100895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d87b1f-d58c-496d-956f-ab87d03ed6e3", + "id": "3286b501-7adf-42ab-9556-983c7ceaa501", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -100939,7 +100939,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85169853-4a92-40ab-9f7b-db73beedd2ca", + "id": "b7733628-fae7-4679-b38a-96236aaa97c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -100983,7 +100983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b756405a-cafc-4848-91da-278d318abd79", + "id": "9258f634-b31c-44e5-96d0-f9d38c6bb647", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101027,7 +101027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66eb5153-3512-40b8-b063-ef2eaec36f6d", + "id": "9c63b13e-ec03-4267-9f7c-80c025e04f86", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101071,7 +101071,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fadb658-841c-419e-8d44-18340a985ed4", + "id": "6e684bce-7a8d-4eb7-b7ad-3a633919a50e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101115,7 +101115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16714371-3a32-4406-952b-9b7272c3337a", + "id": "dc2103f5-cb46-4fa7-8214-d24cee0dcb7b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101165,7 +101165,7 @@ } }, { - "id": "e0f7a283-e7e1-4e01-9efa-ea0f5bf4c84f", + "id": "6f075364-e656-4630-8184-5d94bcb9876f", "name": "Update Password Sync Group by ID", "request": { "name": "Update Password Sync Group by ID", @@ -101219,7 +101219,7 @@ }, "response": [ { - "id": "d3d9e0f5-2540-4b81-9ba6-ddd50979cc0b", + "id": "d15cad69-876e-4f5f-968c-34b7b90a23bb", "name": "Reference to the password sync group.", "originalRequest": { "url": { @@ -101276,7 +101276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4478604-0c3f-41da-82d0-0d6253ef8d07", + "id": "f8da06a5-7bef-406b-80cb-14c71cc33286", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101333,7 +101333,7 @@ "_postman_previewlanguage": "json" }, { - "id": "73abebed-50b1-4d3b-b502-59604353a62f", + "id": "359154f4-c753-4cbb-b962-c96bffefe0ed", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101390,7 +101390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1e96045-d934-4072-b594-1c66d561bf9e", + "id": "8ca7681f-90ff-4daa-9d7c-60f9303f876a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101447,7 +101447,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bcce025-d6e7-4bfc-8a21-7c614fce4031", + "id": "1fb978a1-897c-4c8d-ba50-5cbd759f4193", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -101504,7 +101504,7 @@ "_postman_previewlanguage": "json" }, { - "id": "838dd10b-5fe6-47b6-94c7-775327b14736", + "id": "eeac0531-1d9a-42c3-9b74-cf641ea4648e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101561,7 +101561,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc01f292-4441-4021-a7af-3080ee54dbe1", + "id": "12920bec-7b89-49f9-9b9d-c2c7a501ff39", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101624,7 +101624,7 @@ } }, { - "id": "6979d495-2c09-47e9-ae69-7ba8426845cb", + "id": "dc057832-aa66-4d1a-97eb-63a619a8c885", "name": "Delete Password Sync Group by ID", "request": { "name": "Delete Password Sync Group by ID", @@ -101665,7 +101665,7 @@ }, "response": [ { - "id": "868c37d7-b730-421c-8cc3-920f02c5a2b2", + "id": "969a33a4-a36a-467d-b99c-bc2c83981ba8", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -101699,7 +101699,7 @@ "_postman_previewlanguage": "text" }, { - "id": "bfcdbe4f-da01-4350-b919-1978a9e9787c", + "id": "24986af6-2626-4451-8363-474092c4a4b6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -101743,7 +101743,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8d9a859-0864-41bf-a8a1-3711cd992f45", + "id": "a74a39bb-57f3-4f0c-9327-808e6e632575", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -101787,7 +101787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "294538c7-cefb-4cb8-8162-c92cdad67955", + "id": "7770a84b-733c-44f7-8811-ceab919ac679", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -101831,7 +101831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8017a8e8-bce6-43ed-9ebd-7d3ac790a38f", + "id": "b5376d4c-ccca-4c30-967e-099ea3f6a85e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -101875,7 +101875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2924be1-61cb-417d-9b37-8b44f01376de", + "id": "bd17ff08-9563-47b8-ac0d-7829ae954067", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -101931,7 +101931,7 @@ "description": "Use this API to implement personal access token (PAT) functionality. \nWith this functionality in place, users can use PATs as an alternative to passwords for authentication in Identity Security Cloud. \n\nPATs embed user information into the client ID and secret. \nThis replaces the API clients' need to store and provide a username and password to establish a connection, improving Identity Security Cloud organizations' integration security. \n\nIn Identity Security Cloud, users can do the following to create and manage their PATs: Select the dropdown menu under their names, select Preferences, and then select Personal Access Tokens. \nThey must then provide a description about the token's purpose. \nThey can then select 'Create Token' at the bottom of the page to generate and view the Secret and Client ID. \n\nRefer to [Managing Personal Access Tokens](https://documentation.sailpoint.com/saas/help/common/generate_tokens.html) for more information about PATs.\n", "item": [ { - "id": "15958401-8645-4f81-9ca0-5a54f3c39a0a", + "id": "1043b8fa-58a7-4f12-8620-c24b4384ec8f", "name": "List Personal Access Tokens", "request": { "name": "List Personal Access Tokens", @@ -101979,7 +101979,7 @@ }, "response": [ { - "id": "0c1dd8fb-182d-485d-85a6-505955b9eade", + "id": "e8ba06ad-4a56-41b5-be26-978562de3e68", "name": "List of personal access tokens.", "originalRequest": { "url": { @@ -102041,7 +102041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79964b7b-2751-47ad-a69f-5e10600f6385", + "id": "6f28427a-1b84-4507-bd0f-4d092cc9acc7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102103,7 +102103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed5a77fc-81a6-416d-a8a7-5e4bba46787f", + "id": "f93adec4-6ca0-4bd7-887a-ee8dd9e757f1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102165,7 +102165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2530edc6-2c22-4eae-bcf5-0a0d4d9b075b", + "id": "e24c1220-4525-4c2d-9178-a331a9e51008", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102227,7 +102227,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fb8c80b-d9a6-4903-ba98-7e094549c784", + "id": "921aeefb-91b6-4e37-a980-48463d0feb23", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102289,7 +102289,7 @@ "_postman_previewlanguage": "json" }, { - "id": "394456bd-82fa-4890-bd58-f00b97d770ab", + "id": "84c0c507-aca4-41fc-b1cd-78ab5266ca27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102357,7 +102357,7 @@ } }, { - "id": "d6587a0f-221a-4577-874f-eecaf7c858d5", + "id": "00e58bcf-a0e5-4a28-b676-b62c26f30898", "name": "Create Personal Access Token", "request": { "name": "Create Personal Access Token", @@ -102399,7 +102399,7 @@ }, "response": [ { - "id": "13161888-cb2b-42eb-a01f-78e2f5d18c1c", + "id": "daa41800-8f0e-4fc9-a0dc-4a3e8cf5e604", "name": "Created. Note - this is the only time Personal Access Tokens' secret attribute will be displayed.", "originalRequest": { "url": { @@ -102455,7 +102455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b304af3d-3585-43bc-940f-f33498bf7452", + "id": "f3f7128b-84ac-4926-9f47-ddddb4dc0543", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102511,7 +102511,7 @@ "_postman_previewlanguage": "json" }, { - "id": "614a5c7b-7233-4c11-a32f-3b17de91374c", + "id": "053a4b4a-da97-4140-9b3f-485204722c05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102567,7 +102567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1ac6da6f-cb10-4245-9715-34f9805a4437", + "id": "6b902f7c-eb07-420b-8625-5cb2efe479c6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -102623,7 +102623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f3cfee8-b540-4490-8c59-34d65ff3f0bf", + "id": "fca7161f-1aa9-478d-adb9-0bb921e8d264", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -102679,7 +102679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e193e9eb-5d3d-4ae2-90b0-21b50d18e3a6", + "id": "fcbd7e39-7ca7-4292-a7f6-293e8ea1d1fa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -102741,7 +102741,7 @@ } }, { - "id": "afdca48d-ffed-46e0-8301-412b88577b2d", + "id": "79c22923-c0f9-48ce-bd39-d0971df08d89", "name": "Patch Personal Access Token", "request": { "name": "Patch Personal Access Token", @@ -102795,7 +102795,7 @@ }, "response": [ { - "id": "3e4863db-3f96-4961-9f28-7d6e9f7db590", + "id": "7faf2384-66e5-4ff2-8b09-9b1eeeeaf6eb", "name": "Indicates the PATCH operation succeeded, and returns the PAT's new representation.", "originalRequest": { "url": { @@ -102852,7 +102852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8c83def-fdcc-4244-9cf1-742d2934e9f5", + "id": "d64ea6c0-4dfa-41eb-b015-cd207626e6a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -102909,7 +102909,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d9965c6-17c1-4b5c-8cad-b203584c5469", + "id": "ac87d9f8-12a2-43f7-9acb-acd7aab556b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -102966,7 +102966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "482332f3-8b5f-4651-b53b-2551d4f37883", + "id": "87c66a18-785f-4d94-9a69-d4aa617cd307", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103023,7 +103023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58903bea-9b39-4b25-9543-b7391c92d6b8", + "id": "53ae07d0-a330-49b4-8679-54c79aa42e5f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103080,7 +103080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b990ba2-b647-4f34-9999-b41b6d442109", + "id": "1f724ccb-1bf0-421c-848d-7bcf605f8651", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103137,7 +103137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c62a43f0-edce-4543-8536-832c6fe4997b", + "id": "1ef59176-e88f-4309-a6c4-96d77c53c31a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103200,7 +103200,7 @@ } }, { - "id": "947a23a7-0d7c-4516-87df-805da2a57b3b", + "id": "e229145c-b586-4cdb-96d1-a05ca083ea48", "name": "Delete Personal Access Token", "request": { "name": "Delete Personal Access Token", @@ -103241,7 +103241,7 @@ }, "response": [ { - "id": "8ed00088-c7a0-4781-99ec-980637883785", + "id": "34a55081-7d66-450d-9135-9de69e0f1b88", "name": "No content.", "originalRequest": { "url": { @@ -103275,7 +103275,7 @@ "_postman_previewlanguage": "text" }, { - "id": "d23a3e6c-0b96-439a-abfa-af06dcce5834", + "id": "a668c869-bfb8-4757-adda-0d1a732874df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103319,7 +103319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96a8c986-cd8b-427c-acf6-fa8e7a303324", + "id": "447c1ec8-6392-49f5-9bab-7f64ec29a03b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103363,7 +103363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b4ac545-7685-41eb-ba59-38e6ca6c72da", + "id": "bc6d2c1d-9c64-401d-939a-adf22dcf6a78", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -103407,7 +103407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02fa0f97-ea06-4919-8e6c-69727c535843", + "id": "ca92d7c4-47e4-474c-b0ea-4eacc19792aa", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -103451,7 +103451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f2e109a-652b-45ac-b980-2fcfecf97220", + "id": "44cc995a-ba3d-4a32-bcc2-6ff54d45107a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -103495,7 +103495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a2149b4d-5b10-470f-98ee-08fad71758da", + "id": "80d3d430-b7a5-43a9-852d-a032e2eba8e6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -103551,7 +103551,7 @@ "description": "Use this API in conjunction with [Public Identites Config](https://developer.sailpoint.com/docs/api/v3/public-identities-config/) to enable non-administrators to view identities' publicly visible attributes. \nWith this functionality in place, non-administrators can view identity attributes other than the default attributes (email, lifecycle state, and manager), depending on which identity attributes their organization administrators have made public. \nThis can be helpful for access approvers, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n", "item": [ { - "id": "0c1614fa-108a-485c-80af-8fff22aed1de", + "id": "6628608a-14d6-4a34-9a0b-3b00f65001e2", "name": "Get list of public identities", "request": { "name": "Get list of public identities", @@ -103635,7 +103635,7 @@ }, "response": [ { - "id": "b201adab-9f01-435a-8da1-f18b0c5839b5", + "id": "015d9fe8-4aa0-4d1a-9cb3-15c6e7e3e94c", "name": "A list of public identity objects.", "originalRequest": { "url": { @@ -103733,7 +103733,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad0d333a-1a7a-4f44-b36f-57fc3687691e", + "id": "cbec9c61-d8e6-431a-87d3-a0fe8b684eea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -103831,7 +103831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2addf203-05f8-4806-9f68-f0a071958328", + "id": "c7095fac-ac4d-4306-909e-db4cd42033e3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -103929,7 +103929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47e9ffb9-62d0-4106-9f2b-d5787df84cb9", + "id": "f83d3676-5275-4453-aad2-05b7356acf35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104027,7 +104027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87b5564e-636c-47fe-a47b-1cd83516fab2", + "id": "db5fc0d7-c848-4ff9-90bf-c80a616d2b4e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104125,7 +104125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "98f4ef3a-0b7d-4bcf-8ee6-6fb4298526b6", + "id": "ea2f3d94-c846-4b6a-9a58-2671a6598469", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104235,7 +104235,7 @@ "description": "Use this API to implement public identity configuration functionality. \nWith this functionality in place, administrators can make up to 5 identity attributes publicly visible so other non-administrator users can see the relevant information they need to make decisions. \nThis can be helpful for approvers making approvals, certification reviewers, managers viewing their direct reports' access, and source owners viewing their tasks.\n\nBy default, non-administrators can select an identity and view the following attributes: email, lifecycle state, and manager. \nHowever, it may be helpful for a non-administrator reviewer to see other identity attributes like department, region, title, etc.\nAdministrators can use this API to make those necessary identity attributes public to non-administrators. \n\nFor example, a non-administrator deciding whether to approve another identity's request for access to the Workday application, whose access may be restricted to members of the HR department, would want to know whether the identity is a member of the HR department. \nIf an administrator has used [Update Public Identity Config](https://developer.sailpoint.com/docs/api/v3/update-public-identity-config/) to make the \"department\" attribute public, the approver can see the department and make a decision without requesting any more information.\n", "item": [ { - "id": "362e24e2-afd3-48f5-870c-d511cbaef1fa", + "id": "8c848150-5d8f-43d6-89bc-561dd0b5b956", "name": "Get the Public Identities Configuration", "request": { "name": "Get the Public Identities Configuration", @@ -104264,7 +104264,7 @@ }, "response": [ { - "id": "e76494f0-9ab8-4576-ab6c-5e82b094861b", + "id": "f44fccc7-52c5-49fe-b17e-48c1ab66af4a", "name": "Request succeeded.", "originalRequest": { "url": { @@ -104307,7 +104307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bea0fb8-b48e-4935-bfd4-6ff29a997523", + "id": "d0cf0ca9-e48c-4dcf-83ab-43c0431a440c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104350,7 +104350,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fe86f54-b17b-4c07-b8c3-e2b3b01df6da", + "id": "53a143a7-6c8b-455d-9008-ece168e14668", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104393,7 +104393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30ca435-99ac-470c-842e-3a5266193e48", + "id": "f1f9d1de-a68c-4480-9eb5-49791e38b705", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104436,7 +104436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ffefbf5-72c2-48d2-aa22-9a99bb145241", + "id": "763b8990-5e43-44cd-a4a2-744147c87f1f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104479,7 +104479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b68c24b-8217-44f4-9596-8e2b39b3d27c", + "id": "0b2de5e5-b0ce-439e-ae3c-6c24f4c169df", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104528,7 +104528,7 @@ } }, { - "id": "5bad9fd4-90fa-40c0-bab4-1b1c25d714e4", + "id": "51cbc1b0-42cf-4ada-ad95-c24f7c9fd33e", "name": "Update the Public Identities Configuration", "request": { "name": "Update the Public Identities Configuration", @@ -104570,7 +104570,7 @@ }, "response": [ { - "id": "272e4fdd-b1a3-4669-9f2a-99b7dcb25853", + "id": "5306d290-595b-4615-a268-06796c1dbe13", "name": "Request succeeded.", "originalRequest": { "url": { @@ -104626,7 +104626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6be073c4-9059-42dd-accb-33d360033ee0", + "id": "fe5b8e52-2d4f-42e5-b84c-6086b8a8d133", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -104682,7 +104682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc2729c8-3d15-49b5-971e-ad05f1bdc32c", + "id": "33f22e07-c653-4284-a367-4bddb2c78b2c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -104738,7 +104738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00cadf1e-9933-4520-82e4-1e9623e678e8", + "id": "ee240dd6-5e9b-4351-8d87-1c392487ca36", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -104794,7 +104794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1867004-0cbb-47d2-bcf4-6f9ab85a7cf9", + "id": "acf2e9f9-6166-4119-bae9-70c72426593e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -104850,7 +104850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97495474-0dbe-43eb-befb-62b713f23a80", + "id": "59f1d6a9-ffbd-4887-8e89-82a9b2c9f751", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -104918,7 +104918,7 @@ "description": "Use this API to implement reports lifecycle managing and monitoring.\nWith this functionality in place, users can run reports, view their results, and cancel reports in progress. \nThis can be potentially helpful for auditing purposes. \n", "item": [ { - "id": "8b0c36a2-02e3-42fb-9e99-14865dcea056", + "id": "b43e1589-bfb1-4ffb-9fac-64130990d2c0", "name": "Get Report Result", "request": { "name": "Get Report Result", @@ -104970,7 +104970,7 @@ }, "response": [ { - "id": "ef2e2d42-09dd-45c6-a3fd-f23b68f9b797", + "id": "547bc991-9192-402b-bb58-7294929cd7b4", "name": "Details about report that was run or is running.", "originalRequest": { "url": { @@ -105025,7 +105025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "21e56273-a144-41ca-a5d9-00acad325629", + "id": "06eec2f5-8197-4186-b5ac-003e60eae565", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -105080,7 +105080,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3f1d9a2-e66c-4811-aaaf-3ddd0a59493b", + "id": "3f071b50-9761-4414-84ec-18ec5861c09b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -105135,7 +105135,7 @@ "_postman_previewlanguage": "json" }, { - "id": "832a4aac-7b74-4ab2-9aae-a5d1d0d370d6", + "id": "71e292fa-b214-44c5-91d2-a86e79f69b8c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -105190,7 +105190,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f544a5fa-fc2b-4573-8136-3e48ccfa8382", + "id": "739814f5-064b-4ffa-9971-eec8311e45ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -105245,7 +105245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c88545b-1ddc-4c5a-9685-9e68812c51e7", + "id": "45a27753-1e08-40f5-b21f-c4eb3545344c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -105306,7 +105306,7 @@ } }, { - "id": "ddf93ae4-76d1-44a2-92e4-1755ef7ee025", + "id": "09ba4e74-a258-40f0-a460-565dcb38822c", "name": "Run Report", "request": { "name": "Run Report", @@ -105349,7 +105349,7 @@ }, "response": [ { - "id": "19d22ab1-ec1e-40a5-922f-85318ef857ac", + "id": "37792b3a-e416-456c-a3a9-67e948b68625", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -105406,7 +105406,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb3ae3cb-e794-4ec2-973f-b5cdebe85d51", + "id": "41379e41-2571-48ca-9a1b-5932d41862e3", "name": "Identities Details Report task result.", "originalRequest": { "url": { @@ -105463,7 +105463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c6e5b52-8e4e-4bb5-a196-d429b128e682", + "id": "14bc310b-3026-4acd-a346-4dc99a439526", "name": "Identities report", "originalRequest": { "url": { @@ -105520,7 +105520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0db1b9ba-7124-4f23-b3c5-39351c9bd92f", + "id": "4ebc5c54-0de1-46ce-8391-2a22d8a475a1", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -105577,7 +105577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f16890e6-95ba-493e-97f9-3268de9a0aaf", + "id": "500634be-4dca-42ce-b61b-999fb01ea0a8", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -105634,7 +105634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fea4a89-3a98-4d1a-95fb-15380104a9a3", + "id": "d6d1b24c-72fd-4bb7-8dfe-24faf6986a26", "name": "Search Export report", "originalRequest": { "url": { @@ -105691,7 +105691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3604cd97-f9bd-4fd7-928c-89e70e408313", + "id": "765dae4d-34d7-4c98-9ff7-574da8edcf25", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -105748,7 +105748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b1033fa-46b4-4c9d-9e30-a592f1a96d89", + "id": "73355cc3-bc84-4ea1-abc5-7c66e9f7d1ba", "name": "Account Export report", "originalRequest": { "url": { @@ -105805,7 +105805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2941dcbd-8fa4-423a-8cbd-305ee0123845", + "id": "593a130b-47ef-4b9c-a2b7-5bf24fa2b414", "name": "Identities Details report", "originalRequest": { "url": { @@ -105862,7 +105862,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f50dd09-8229-4e20-8102-269979e342b9", + "id": "0637731d-b32f-401e-af3b-b102cf3b13d0", "name": "Identities report", "originalRequest": { "url": { @@ -105919,7 +105919,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47d595b9-51bb-4600-8e94-32889692ebc4", + "id": "bcaff528-8f40-469b-bbc2-ef407edb14bf", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -105976,7 +105976,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90f69366-fe3a-4732-94cf-a09de0186054", + "id": "8648e60f-79ef-44ed-b1a9-1f7fa670a34c", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -106033,7 +106033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dddf4b63-b4ae-4eb7-8271-7d3e050133b2", + "id": "69683271-d001-4062-bd06-daa3e6fcb01a", "name": "Search Export report", "originalRequest": { "url": { @@ -106090,7 +106090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7a3097c-691b-4640-9f85-b766e0227e3b", + "id": "0be899c5-baec-4d08-84fd-9e0081a074a2", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -106147,7 +106147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c115437-c69a-4c30-b6bc-d9117a6b3b3c", + "id": "47d4eceb-e50d-40dc-b841-c64094174ecb", "name": "Account Export report", "originalRequest": { "url": { @@ -106204,7 +106204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12f6ea59-c6a8-4d22-a1b8-2ec7a59ac649", + "id": "f41edec5-b694-45c7-8113-48c298197fb0", "name": "Identities Details report", "originalRequest": { "url": { @@ -106261,7 +106261,7 @@ "_postman_previewlanguage": "json" }, { - "id": "471b1311-bc21-4411-b7cb-558c0fb90a64", + "id": "0e3384b7-5422-49d8-af0f-e306b6091cf4", "name": "Identities report", "originalRequest": { "url": { @@ -106318,7 +106318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fcb47a19-7ab3-47f8-8eed-f33ed4b02229", + "id": "eeb7f90b-d8d2-4e0e-bee6-e99155c8d9d4", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -106375,7 +106375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcbc8e8f-146c-4fdd-add0-c699ddd558e6", + "id": "a2cea75b-8a51-463d-a661-a3b635ed765e", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -106432,7 +106432,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56115a12-5be4-4c3f-a1c6-f4b3d19a3c79", + "id": "a57daba4-c44d-4624-a070-eb72738ce230", "name": "Search Export report", "originalRequest": { "url": { @@ -106489,7 +106489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daec103c-ca1b-41b6-a019-ff289e408f25", + "id": "111fc8fa-1b56-4e5a-a07d-48edbc70f066", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -106546,7 +106546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d444076-ad25-4365-9a90-a802e4eba7f3", + "id": "f13966c0-368f-4971-9852-83626e5e8b05", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -106603,7 +106603,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fc9ba7a-9b5c-4087-8aff-a11f66e6434d", + "id": "82327184-201f-4536-8681-d9967e616833", "name": "Identities Details report", "originalRequest": { "url": { @@ -106660,7 +106660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e64399b-ac6d-4fad-aedf-47db892371c9", + "id": "13b3239c-5588-464e-8b11-6e48aba32089", "name": "Identities report", "originalRequest": { "url": { @@ -106717,7 +106717,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a22a3c-22af-4c12-9582-e0194fa7bb5e", + "id": "87092c9f-e0c0-408d-b608-63f8667f6c73", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -106774,7 +106774,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd28778c-5c6c-41df-94fd-f64010ec7685", + "id": "1f64320e-53de-4fca-8f0d-0f45ecde0a46", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -106831,7 +106831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c820d28-60b3-45fa-83ec-ad622ca3b3ce", + "id": "7fd2dc4b-8cba-47bc-8b81-cd89ba233ff8", "name": "Search Export report", "originalRequest": { "url": { @@ -106888,7 +106888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6969d053-94c3-41c1-af63-c494bd2c681b", + "id": "e45a4c90-6080-47e4-9915-4ceada867898", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -106945,7 +106945,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a3e6960-39f3-4c6f-bea3-bb6d0dd35da2", + "id": "4ef8f46f-d058-4308-8913-15c54990df61", "name": "Account Export report", "originalRequest": { "url": { @@ -107002,7 +107002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be11f62c-114d-446b-aff2-45d3d7922b9a", + "id": "13feb75a-e682-45d5-a993-a9c8470933ff", "name": "Identities Details report", "originalRequest": { "url": { @@ -107059,7 +107059,7 @@ "_postman_previewlanguage": "json" }, { - "id": "560c9db3-37a0-4dd6-ac20-411b140b6760", + "id": "873a8601-5117-40fd-a8da-614b1b60d656", "name": "Identities report", "originalRequest": { "url": { @@ -107116,7 +107116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c4024e4-8fa6-4aa6-83cb-5dd5f566167c", + "id": "0052eb0f-fdbb-4bd9-b24f-eda8a690f2e8", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -107173,7 +107173,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fe7ed44-16d7-42c2-8f9f-3a7b0b6a40e1", + "id": "a4dae919-7007-4170-a3df-f82915bbf994", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -107230,7 +107230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5fa4e8b1-ad5d-486b-9a7d-3ecfae3e20bd", + "id": "1fac7207-de5e-4e00-89f0-2ac97de58504", "name": "Search Export report", "originalRequest": { "url": { @@ -107287,7 +107287,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f82fbf3b-4ba6-4f86-bcc2-e5a864d91b1b", + "id": "ee5e427c-1a8f-4fc8-9978-2fff8ecf5996", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -107344,7 +107344,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06b2233d-528e-4898-9a85-1c619d0861be", + "id": "31e46a29-16b5-4c97-904a-195e484abdb7", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -107401,7 +107401,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9b72e34-5d69-4aab-b9f6-3d679e3f550b", + "id": "be5debf8-5115-4bec-8e84-b9be5935226a", "name": "Identities Details report", "originalRequest": { "url": { @@ -107458,7 +107458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71d6a6c7-03a5-4312-b3f5-c308b63075b0", + "id": "63f1c5d8-d53b-4ed8-80ee-19814ca8eaf6", "name": "Identities report", "originalRequest": { "url": { @@ -107515,7 +107515,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8dd33f1c-fea0-4309-ada6-4e9e2a269577", + "id": "f65dcd00-6cad-4d97-990f-b8613f652312", "name": "Identity Profile Identity Error report", "originalRequest": { "url": { @@ -107572,7 +107572,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e1aeb3f2-8149-4b2d-9f0a-ff0ca7c966a2", + "id": "b8036902-82aa-43e4-9255-a485f7df79b5", "name": "Orphan Identities report", "originalRequest": { "url": { @@ -107629,7 +107629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09c44a16-9da9-43e2-898d-6bb5b3296590", + "id": "7e77a2e6-7db2-487a-b9af-908192e87abb", "name": "Search Export report", "originalRequest": { "url": { @@ -107686,7 +107686,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0361057d-0c8b-4fd7-9ca3-9138df35ea98", + "id": "f2a73931-5ccb-4cf6-bd09-3f5b60370206", "name": "Uncorrelated Accounts report", "originalRequest": { "url": { @@ -107749,7 +107749,7 @@ } }, { - "id": "f9e213fd-5518-4775-abf6-0ef0d9e917a1", + "id": "08cecbb0-bc4c-4352-82eb-e7404de1736a", "name": "Cancel Report", "request": { "name": "Cancel Report", @@ -107791,7 +107791,7 @@ }, "response": [ { - "id": "d44aa810-d78e-41a0-ad91-392994fd5405", + "id": "33ebf9bf-48ca-46e6-8a66-1ed455ffdda6", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -107826,7 +107826,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6e3c0dc7-98ea-417b-977d-0dc60f5d03c2", + "id": "194c417d-6533-401f-a6f5-2b29e498afdc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -107871,7 +107871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97ec74fb-cec2-4f3c-9799-1750dbd97adc", + "id": "b2b0b7dd-a158-4740-98c7-00f616650f92", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -107916,7 +107916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bafc0bd-9f54-40f7-9a11-2338064f195d", + "id": "1b555263-12d1-48f8-9ce6-7d1dc0e4b721", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -107961,7 +107961,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc6d9640-414c-453f-86b3-2d7eb59afc89", + "id": "51081e72-a1c0-47c9-87dc-1bd9ac79cc3d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108006,7 +108006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea86ec0c-a6a7-411f-a455-7cc9fe12ecdb", + "id": "a72adcba-6f12-4e37-b61c-e7fee64c28f0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108057,7 +108057,7 @@ } }, { - "id": "aaed1a9d-cea3-4eee-8ede-b16c9c76a9e9", + "id": "d3247561-0159-47f3-9109-25acdd8efe60", "name": "Get Report File", "request": { "name": "Get Report File", @@ -108126,7 +108126,7 @@ }, "response": [ { - "id": "3f6ab4b4-ea05-43be-bb5d-99854cfb3d0c", + "id": "0f72f4cd-16b0-4984-97a9-ef86e30af95e", "name": "Report file in selected format. CSV by default.", "originalRequest": { "url": { @@ -108202,12 +108202,12 @@ "value": "attachment;filename=\\\"fileName\"" } ], - "body": "et ut", + "body": "in exercitation quis Ut", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "84a0ad49-a4b9-48ea-a5db-ae5386b79c81", + "id": "eb885b4a-c8f6-4953-ad3d-54823c53cca6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -108279,7 +108279,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a2244ee-12a5-4fdc-b755-debdc163223f", + "id": "0c091785-664b-430d-bbbd-f72f7f8bcaef", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -108351,7 +108351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f2fcb25-deca-4b30-8002-96bab7d6af28", + "id": "307036e6-1271-4e9d-a426-da72667011a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -108423,7 +108423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78e3d069-e18f-405a-b168-d158ee26ea10", + "id": "d592dd7a-cc82-444a-be82-6646d394510a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -108495,7 +108495,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95a5089a-0d0c-47ae-a115-c88ba81126d0", + "id": "c932ff53-fb30-46ea-a597-c78a5d8e53fa", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -108567,7 +108567,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbe37086-8744-43f7-921b-1d4f0c7ef7da", + "id": "0f879d42-b5e8-48b4-8229-a1c9514b7475", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -108651,7 +108651,7 @@ "description": "Use this API to implement requestable object functionality. \nWith this functionality in place, administrators can determine which access items can be requested with the [Access Request APIs](https://developer.sailpoint.com/docs/api/v3/access-requests/), along with their statuses. \nThis can be helpful for administrators who are implementing and customizing access request functionality as a way of checking which items are requestable as they are created, assigned, and made available.\n", "item": [ { - "id": "f5df7781-6763-46cd-9c5c-4f2991a2aebc", + "id": "1854ce89-f3b8-44a3-be4e-5b7bbbc33d1a", "name": "Requestable Objects List", "request": { "name": "Requestable Objects List", @@ -108762,7 +108762,7 @@ }, "response": [ { - "id": "1443e7d3-3c7d-42d6-b445-45cbc9904bca", + "id": "a26987ee-32ed-41bb-b016-37469e793532", "name": "List of requestable objects", "originalRequest": { "url": { @@ -108887,7 +108887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "490cfab6-390e-4b43-a077-5b3b868f39e0", + "id": "d5b4ed3c-8f4f-4b7d-b529-8a9d3c43cdbc", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109012,7 +109012,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f6341f9f-b996-4ded-b02a-1dfc9d7eb12e", + "id": "13f9644b-ec8c-47c9-8a5c-d6bc38d5f527", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109137,7 +109137,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a8c3e0f-ce43-46a4-b526-068c5501a231", + "id": "00775a2d-af29-49e1-8452-f1a9d3d8f2a9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -109262,7 +109262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f31a1f5-d6b4-4734-a8f7-61fa469567b8", + "id": "9ba5b5e0-87ec-4715-a751-352e1fda29c9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -109387,7 +109387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "204098df-8b7c-4775-8991-26525edda866", + "id": "22a630e2-70f7-470b-b15b-f595b10540bb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -109524,7 +109524,7 @@ "description": "Use this API to implement and customize role functionality.\nWith this functionality in place, administrators can create roles and configure them for use throughout Identity Security Cloud. \nIdentity Security Cloud can use established criteria to automatically assign the roles to qualified users. This enables users to get all the access they need quickly and securely and administrators to spend their time on other tasks.\n\nEntitlements represent the most granular level of access in Identity Security Cloud. \nAccess profiles represent the next level and often group entitlements. \nRoles represent the broadest level of access and often group access profiles. \n\nFor example, an Active Directory source in Identity Security Cloud can have multiple entitlements: the first, 'Employees,' may represent the access all employees have at the organization, and a second, 'Developers,' may represent the access all developers have at the organization.\n\nAn administrator can then create a broader set of access in the form of an access profile, 'AD Developers' grouping the 'Employees' entitlement with the 'Developers' entitlement.\n\nAn administrator can then create an even broader set of access in the form of a role grouping the 'AD Developers' access profile with another profile, 'GitHub Developers,' grouping entitlements for the GitHub source.\n\nWhen users only need Active Directory employee access, they can request access to the 'Employees' entitlement.\n\nWhen users need both Active Directory employee and developer access, they can request access to the 'AD Developers' access profile.\n\nWhen users need both the 'AD Developers' access profile and the 'GitHub Developers' access profile, they can request access to the role grouping both. \n\nRoles often represent positions within organizations. \nFor example, an organization's accountant can access all the tools the organization's accountants need with the 'Accountant' role. \nIf the accountant switches to engineering, a qualified member of the organization can quickly revoke the accountant's 'Accountant' access and grant access to the 'Engineer' role instead, granting access to all the tools the organization's engineers need.\n\nIn Identity Security Cloud, adminstrators can use the Access drop-down menu and select Roles to view, configure, and delete existing roles, as well as create new ones. \nAdministrators can enable and disable the role, and they can also make the following configurations: \n\n- Manage Access: Manage the role's access by adding or removing access profiles.\n\n- Define Assignment: Define the criteria Identity Security Cloud uses to assign the role to identities. \nUse the first option, 'Standard Criteria,' to provide specific criteria for assignment like specific account attributes, entitlements, or identity attributes. \nUse the second, 'Identity List,' to specify the identities for assignment.\n\n- Access Requests: Configure roles to be requestable and establish an approval process for any requests that the role be granted or revoked. \nDo not configure a role to be requestable without establishing a secure access request approval process for that role first. \n\nRefer to [Working with Roles](https://documentation.sailpoint.com/saas/help/access/roles.html) for more information about roles.\n", "item": [ { - "id": "d75348e7-2f16-46df-bdb9-d4279b5a27b1", + "id": "1149bef7-55cc-460a-a482-4d06b6df44e9", "name": "List Roles", "request": { "name": "List Roles", @@ -109626,7 +109626,7 @@ }, "response": [ { - "id": "b792aeb8-774d-4981-a9d0-2ffbc87e5ab4", + "id": "23f3f9a0-72c4-4c2d-962b-a400215a4855", "name": "List of Roles", "originalRequest": { "url": { @@ -109742,7 +109742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2014e7a6-c4e2-4727-99e2-970ca776c9e7", + "id": "a16c66a9-a1ae-48b1-ab28-a075344d984c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -109858,7 +109858,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9dc41ac8-0a9f-4025-b398-034cf33f2a33", + "id": "cfbee8ae-5e93-44a2-97b4-96a1697acd7b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -109974,7 +109974,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cc58f7ac-b41f-4955-b8ec-b0b1681cbe7c", + "id": "9a21f0f3-57a0-4f31-bd00-8eeac349a569", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110090,7 +110090,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9fc25732-9376-4c10-859f-c0c4c768254a", + "id": "3c3932ab-4fb1-4a9e-9caa-4fdaaa545a96", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110206,7 +110206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f1bf4e2-64ad-4fb7-ad98-a78b7f95566a", + "id": "94d7a588-2a1a-4e68-a048-e26a67ca3d29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110328,7 +110328,7 @@ } }, { - "id": "4db4ab27-004a-4b62-ae9a-ea41476dab2a", + "id": "fa1d7d5c-d30d-4e2c-9077-098f45852430", "name": "Create a Role", "request": { "name": "Create a Role", @@ -110370,7 +110370,7 @@ }, "response": [ { - "id": "45b68490-972c-4c80-8eb2-46b2278b1f90", + "id": "a14307d0-5283-4f79-a112-12e487a78891", "name": "Role created", "originalRequest": { "url": { @@ -110426,7 +110426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c35cc99b-4594-42aa-8148-bc00d10958f6", + "id": "ef00e735-708a-44f0-b023-fdaa930adb90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110482,7 +110482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9556c814-e519-4a20-b34f-92a1840dc08d", + "id": "13ed756e-3826-4203-8c4c-abbc771f4106", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110538,7 +110538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea67facc-9eec-4578-a5e6-538ffaa3eb45", + "id": "249a6af1-6c9f-48ed-a3ec-d43eb1c24df3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110594,7 +110594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c641b2cb-e20c-46f2-82e5-fb254e75af73", + "id": "ffb6f3d1-5914-4e3f-8315-2a4451ced5da", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110650,7 +110650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c919f8d-8b9f-4133-b77d-be919d509627", + "id": "7be733a1-70e9-4576-ae1f-f90f59cb212c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -110712,7 +110712,7 @@ } }, { - "id": "bc4e44ed-1dfb-4d16-9f27-1fa2eda5b342", + "id": "caf55f01-307a-4970-a183-80a695ec5a7b", "name": "Get a Role", "request": { "name": "Get a Role", @@ -110753,7 +110753,7 @@ }, "response": [ { - "id": "d6cfb6a9-4d5a-4b30-af70-27fe50dca0f9", + "id": "5aa995e0-bd7e-4cfb-9fa5-0071d1f1ff7c", "name": "List of all Roles", "originalRequest": { "url": { @@ -110797,7 +110797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c9753da-bf92-4358-ad2b-77f11c68b596", + "id": "76b14de9-69bc-4918-abcd-dd049f0c865d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -110841,7 +110841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56603523-2920-4940-a005-2715a6fe5dd2", + "id": "2d093333-6c07-45e4-bd3f-48172e233140", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -110885,7 +110885,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da649b9c-8cee-423d-bbe0-d29f7d7c3fca", + "id": "447ad084-413c-45bb-80f5-8a9a7d034ba2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -110929,7 +110929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4613de6e-2d7c-44e1-a993-650e21d03ef0", + "id": "73d94867-bfbb-4c83-8cc3-589d124f90ee", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -110973,7 +110973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "919b2790-c61f-4775-bd36-a5d7c054f3f8", + "id": "8953bfa3-10d8-4390-b0c9-c53aaefae7c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -111023,7 +111023,7 @@ } }, { - "id": "bdcea9f6-f3f1-4514-88a2-44181710d080", + "id": "79bcdc29-f0f4-48a3-8939-ce6d309177d2", "name": "Patch a specified Role", "request": { "name": "Patch a specified Role", @@ -111077,7 +111077,7 @@ }, "response": [ { - "id": "b2916d53-8530-4b09-9772-d5c803ac4b24", + "id": "47f1d94f-50df-4e2d-a21a-a1917a9d3242", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -111134,7 +111134,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6a43826-1d79-4a1a-87dc-a206d1841d08", + "id": "7a491b40-54d1-4529-acec-8ad4d98a4241", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -111191,7 +111191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7ff502-2ad5-4ec5-9222-3ebe5d5dd1e9", + "id": "3b50f7e3-d587-46bf-8937-7f089ab893e5", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -111248,7 +111248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75a71750-711f-4360-9b78-1b83a150f839", + "id": "6d8c780c-c974-414f-adfd-93eeee0cd05d", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -111305,7 +111305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59e01de4-e20f-41f4-b4d0-b93c81223be7", + "id": "f7d8f45c-2972-4a0f-baf9-d892707e2f39", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -111362,7 +111362,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ebffc85-41f5-449f-9d5e-a4a267301f4f", + "id": "8df7aa72-6e85-4b6a-b3b3-b991805d2f3c", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -111419,7 +111419,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05f7985a-ddb5-4f38-a283-94b3d9e766c8", + "id": "e8f68d26-841c-470d-aeaa-f38a127d2c41", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -111476,7 +111476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2abe35d-038e-4c48-a7d9-215971ebf16f", + "id": "b2807b7b-1486-4a28-bb54-dfa4fae2f577", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -111533,7 +111533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b702012-2395-4564-869f-7ea175e049ec", + "id": "4a22aecb-a5b6-4063-acc3-74ed9e142685", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -111590,7 +111590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3412a8cc-8c06-4968-96bb-3a71fddb539a", + "id": "9151302c-7dc2-4813-a8dc-2ef66e370e84", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -111647,7 +111647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a45086-4162-45ac-b08d-7d4ce639b2e0", + "id": "9920d80a-75cd-4ed5-b34d-205816751863", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -111704,7 +111704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e32212b8-24b0-465f-976c-e15fced401a9", + "id": "982e0c04-dd9b-41f7-ab3e-03ca4fa57cd6", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -111761,7 +111761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fc4f4de-416a-4fc0-b6f0-f44fcd740421", + "id": "549d59ca-83fe-4d1d-9ae2-f4864e2d8672", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -111818,7 +111818,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7be21d2-f72f-462d-8c7a-6be73dfbd43a", + "id": "aa62337a-a207-4400-ae9d-70d8570baa6c", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -111875,7 +111875,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3d6a9f8c-37bf-48ad-b850-4522e4e44b2c", + "id": "57558718-a35e-40bd-9123-2fa1581e5395", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -111932,7 +111932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "089db52f-1edf-4f25-bb0a-dcedee7f4d86", + "id": "4adbeab8-3597-41b9-9c15-59fbdecf72c6", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -111989,7 +111989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf6e25aa-4bdf-4ae2-9098-cbeb6713e3af", + "id": "74b349dd-c0f2-4a93-b9f1-6bdbe7e79c99", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -112046,7 +112046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b17bfc4-dc20-4c16-9be6-769410404e58", + "id": "fc159396-9eb3-445d-8af0-78ce191747e4", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -112103,7 +112103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "31c5ab2f-7860-46b0-ba36-e38bab6507d7", + "id": "031b1e3b-3d4c-4046-93f3-d645c88bd29a", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -112160,7 +112160,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da828e16-c36b-4347-9746-3fb6bc20cbd8", + "id": "a5e97b9b-a30d-4778-be42-0b68a282767e", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -112217,7 +112217,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b3dd406-d327-4f42-848d-d17a0552ebda", + "id": "8f8364d3-93ae-45f6-8b9d-2a0ae633fd40", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -112274,7 +112274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff057644-d3b5-4e5e-a89c-b97c8d4c1d1d", + "id": "b7d745e4-caca-423a-8a54-82204166ad93", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -112331,7 +112331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfdecf1e-858f-470b-a47c-759b76b4645a", + "id": "8f220516-e152-4438-bdc9-8e2fc35ca9c4", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -112388,7 +112388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "981301e7-5ab9-44b4-bae9-2f97960a6459", + "id": "a6ba0a3d-eab2-493e-8c69-41326ffcaa2c", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -112445,7 +112445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f673a639-52f4-4d57-8e9a-f0041da4ef80", + "id": "6eeb7e14-8866-4545-9826-29945b70d26e", "name": "Make a Role Requestable and Enable it in One Call", "originalRequest": { "url": { @@ -112502,7 +112502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "420e012a-0fbd-41ce-b2c6-6b46e75b7fd3", + "id": "8771c585-48f5-418f-bb81-d6b748dfcd2a", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -112559,7 +112559,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7873660e-df2a-4e06-b10d-3aed3b1d3396", + "id": "3a059596-1231-4b59-bb77-582cbc1d7476", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -112616,7 +112616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e2346e7-fe30-4eb1-885e-ce539bbd0a5e", + "id": "e35cfbc9-fbc3-40f6-b533-e35832880bbd", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -112673,7 +112673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89e5bfbf-e109-412e-b66e-f7542f4dde40", + "id": "5e6c731e-e85c-487a-ad15-1ce8a1fb723e", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -112730,7 +112730,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec37f7c9-9d82-4b2a-ab5f-b5479ae13a9a", + "id": "667e3002-1559-4470-b409-4770345d15d2", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -112787,7 +112787,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec0a91fe-0252-4b65-a9db-5dfb76891c7c", + "id": "bedf734d-b13b-453c-9415-7aa3587df36c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -112844,7 +112844,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2568d26-c768-4540-99bd-27ae127a1498", + "id": "1fc265e1-b6d9-469a-baef-9377b0e35e07", "name": "Assign a Role to a Segment", "originalRequest": { "url": { @@ -112901,7 +112901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "152e57c3-c866-4157-9607-554f30223a51", + "id": "867907a1-f08b-416d-8038-d5e9895a306f", "name": "Set the Membership Selection Criteria to a List of Identities", "originalRequest": { "url": { @@ -112958,7 +112958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2fdb716f-7ffa-42e7-9643-93e4487492d8", + "id": "ebf7b61a-2f31-4a9c-90cb-fec7a94d197d", "name": "Set the Membership Selection Criteria to a Standard Expression", "originalRequest": { "url": { @@ -113015,7 +113015,7 @@ "_postman_previewlanguage": "json" }, { - "id": "192f5807-b04a-454f-a652-f236d648bcd1", + "id": "8daa380f-afde-417a-aac6-18685c8e6155", "name": "Add a New Clause as the Child of an Existing Standard Expression", "originalRequest": { "url": { @@ -113072,7 +113072,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5e85e9d-8577-4269-a291-0c76c9fae512", + "id": "885b1a11-8023-4ffc-81a8-160de61356df", "name": "Assign a Access Model Metadata to a role", "originalRequest": { "url": { @@ -113135,7 +113135,7 @@ } }, { - "id": "dc91dcfd-9d86-4837-b8d2-4c4cd59d0c1d", + "id": "fa917d45-5835-4ddb-ac13-e92ccc7d3308", "name": "Delete a Role", "request": { "name": "Delete a Role", @@ -113176,7 +113176,7 @@ }, "response": [ { - "id": "219ffec3-a98e-4951-a436-3c979ee2a6ce", + "id": "5da0d0db-f5af-414e-bb60-a93f2cfd6c74", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -113210,7 +113210,7 @@ "_postman_previewlanguage": "text" }, { - "id": "0ae5e8b2-006c-425d-9c8e-b48c7ea07f8c", + "id": "f1055ce9-6946-4986-bda0-1259812fc263", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -113254,7 +113254,7 @@ "_postman_previewlanguage": "json" }, { - "id": "009d1b34-79ab-478b-86ca-a20b7ef0ea1b", + "id": "894ac9d6-423c-46df-b923-7e3440706655", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113298,7 +113298,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f1129e6-a8b1-47e4-a0a3-e120d6c644fe", + "id": "04ec00ad-74b1-41fe-96dc-2306afc4ddc8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113342,7 +113342,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02f36d7e-afba-413b-b679-5462f991d89a", + "id": "9ab8b25c-4c2a-4602-92b1-b69fb2479c70", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113386,7 +113386,7 @@ "_postman_previewlanguage": "json" }, { - "id": "875bfc52-d9a1-418b-b2d1-6143e0d487b5", + "id": "baae838c-bbf5-4fb5-937a-b33e0fe70406", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113436,7 +113436,7 @@ } }, { - "id": "9929e8a3-a561-42f7-bf45-c87eeee319f5", + "id": "932484d0-a83a-4876-bb03-bdb29c7af678", "name": "Delete Role(s)", "request": { "name": "Delete Role(s)", @@ -113479,7 +113479,7 @@ }, "response": [ { - "id": "3a70cc51-51e1-41c9-a122-2f972b6a13ae", + "id": "ea6e4714-a5eb-44f8-a72d-232704b28cf8", "name": "Returns an object with the id of the task performing the delete operation.", "originalRequest": { "url": { @@ -113536,7 +113536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f1892613-cfa3-434b-af12-c57f155ee02f", + "id": "1cebe332-20d3-4651-b6e5-d84d910f0736", "name": "400.1 Bad Request Content", "originalRequest": { "url": { @@ -113593,7 +113593,7 @@ "_postman_previewlanguage": "json" }, { - "id": "feb8bbcf-ffd6-49c8-9673-b60ba72665f8", + "id": "0dba4e34-8690-4391-bfef-a58af3002c6e", "name": "400.1 Role ids limit violation", "originalRequest": { "url": { @@ -113650,7 +113650,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec907572-0155-429e-9055-766251bca376", + "id": "97e1ba5c-cfd4-4a48-8382-04ceae49e011", "name": "400.1.404 Referenced object not found", "originalRequest": { "url": { @@ -113707,7 +113707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9e22451-f607-4930-86fd-cba1a8aadba4", + "id": "5621c207-2ac0-4f13-93f4-3e6d7e2f85ad", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -113764,7 +113764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "102e3487-fca2-430b-a2b7-1abb15a7acb8", + "id": "06c61a97-bc72-402a-a0b2-06146c476b03", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -113821,7 +113821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1300aa7c-1e0a-4a7a-864c-719327eef8a4", + "id": "2d87b88d-4f42-4468-89d0-b5fe3e4edddc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -113878,7 +113878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22e9387c-97b8-4db1-8a37-14a9898df48d", + "id": "d8f704fe-081d-48ff-8c48-88118160c576", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -113941,7 +113941,7 @@ } }, { - "id": "7e051574-157a-4642-9a0a-28356c6a05bf", + "id": "abf93000-ebea-43cf-9d56-fb95fc848d51", "name": "List Identities assigned a Role", "request": { "name": "List Identities assigned a Role", @@ -114026,7 +114026,7 @@ }, "response": [ { - "id": "e939f06c-1aa4-4018-a1d2-adf2ca6ea9b7", + "id": "aac049e4-2fe0-45c7-a38b-8ada6609d23c", "name": "List of Identities assigned the Role", "originalRequest": { "url": { @@ -114117,7 +114117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a535eb3f-d49b-481c-9594-91c1ade40c6a", + "id": "c4d8fd6f-c142-4ed5-857c-9bdc59dd0190", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114208,7 +114208,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7d9234a-21dc-49fa-a2d5-5832d0a61a1b", + "id": "de8fe530-00eb-4d1a-b3f3-3a9680049f9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114299,7 +114299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2933d67d-0249-404d-a519-2767b6e7e61e", + "id": "736c7140-8e37-4e25-b387-8e43ca3a1449", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114390,7 +114390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f02f8b6d-5c3c-473e-a295-885410bb519a", + "id": "b81226bc-6adb-4b3a-bb01-5ffdac89a5a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114481,7 +114481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "55481014-6e09-4d0d-979e-450144d5005f", + "id": "a82758e2-449c-4ef2-bbd5-3f9c53320659", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114584,7 +114584,7 @@ "description": "Use this API to implement saved search functionality. \nWith saved search functionality in place, users can save search queries and then view those saved searches, as well as rerun them. \n\nSearch queries in Identity Security Cloud can grow very long and specific, which can make reconstructing them difficult or tedious, so it can be especially helpful to save search queries. \nIt also opens the possibility to configure Identity Security Cloud to run the saved queries on a schedule, which is essential to detecting user information and access changes throughout an organization's tenant and across all its sources. \nRefer to [Scheduled Search](https://developer.sailpoint.com/docs/api/v3/scheduled-search/) for more information about running saved searches on a schedule. \n\nIn Identity Security Cloud, users can save searches under a name, and then they can access that saved search and run it again when they want. \n\nRefer to [Managing Saved Searches](https://documentation.sailpoint.com/saas/help/search/saved-searches.html) for more information about saving searches and using them.\n", "item": [ { - "id": "6f362f23-9b89-4127-9a3f-6f13af5fe3fc", + "id": "d03109c6-ebb7-4cea-9109-2b72b7ddf5d6", "name": "Create a saved search", "request": { "name": "Create a saved search", @@ -114626,7 +114626,7 @@ }, "response": [ { - "id": "cdcf4421-1a7b-4efd-9242-675fff0c5146", + "id": "4da8a331-4e67-4c5c-85a8-2f97c21ab8ad", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -114682,7 +114682,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ff08d97-5c7c-47f0-8ef9-b79603cc49ab", + "id": "4daa581a-3e64-43c2-9647-72953d93941f", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -114738,7 +114738,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42965e9d-4892-4e63-8bf7-5ddd64aa4902", + "id": "b72b2bc5-111a-4267-a41f-f7a976431a9f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -114794,7 +114794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ed441a6-c364-42ce-8f66-f08c2a723a5a", + "id": "9cb3aded-ac71-4893-9050-33523a1b1cdb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -114850,7 +114850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89e467a1-b569-45e8-beb1-e91b1fb55e5c", + "id": "5a585e05-04ec-499d-bc32-9fe457e5bdc8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -114906,7 +114906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4a13979-caf2-4e72-82fd-34e8d227714f", + "id": "cd3c8f5e-a892-472e-a79d-a26bbac60f0e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -114968,7 +114968,7 @@ } }, { - "id": "7f509e91-6951-4199-a014-b1c524cba775", + "id": "561312e2-ece5-4279-bfb8-23e820e22951", "name": "A list of Saved Searches", "request": { "name": "A list of Saved Searches", @@ -115034,7 +115034,7 @@ }, "response": [ { - "id": "bca649d2-0568-4985-8bb5-6975c8b35897", + "id": "1b842473-7539-469f-86a7-0be42f930fac", "name": "The list of requested saved searches.", "originalRequest": { "url": { @@ -115123,7 +115123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6bb00b85-9a3a-405d-bbb2-5193069371b9", + "id": "a1d67d42-38ed-4d10-8425-eff26e07fe87", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115203,7 +115203,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4e6bf73-234e-4ea3-9d97-bbf5d24ec799", + "id": "be4cc1c0-cdb8-4004-941a-f485b8b9f7b5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115283,7 +115283,7 @@ "_postman_previewlanguage": "json" }, { - "id": "95b2844a-1db3-4154-b869-d4a2f4067a93", + "id": "de09ab08-63f1-4bda-a896-c63e3f28b701", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115363,7 +115363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7a558852-ab95-4ae3-8aef-e099a9635237", + "id": "f3267654-44bb-44c7-af45-2f80d825ba8b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115443,7 +115443,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b31b43cb-6943-477b-bb55-eed071c7f126", + "id": "5660bf9e-2970-4f1a-9908-0e5490de69e7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115529,7 +115529,7 @@ } }, { - "id": "4f2b7b2a-bcb1-4b55-bfdf-ec3e1d61c13c", + "id": "57dfdff5-002c-470f-9b06-fcbd4c58d3a4", "name": "Updates an existing saved search\n", "request": { "name": "Updates an existing saved search\n", @@ -115583,7 +115583,7 @@ }, "response": [ { - "id": "6c35dbfd-a063-4496-870c-d3ba6b99909b", + "id": "aa9e0cd7-44e9-4d3c-9f30-d8a31dc897e6", "name": "The persisted saved search.", "originalRequest": { "url": { @@ -115640,7 +115640,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c7a5bb1-7d79-40a1-bb2d-d2494d02a6b5", + "id": "4df383be-a74b-46a4-af1d-1185a040fb23", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -115697,7 +115697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae383996-d1bf-4030-84a9-a21721817b42", + "id": "70526fda-4712-4c26-be4e-a58f5722729d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -115754,7 +115754,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e756fd22-1806-44b1-96a3-9df149ea8298", + "id": "83bd1b8e-af2a-4a3a-8888-79777f46feaa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -115811,7 +115811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa9ed23e-15d5-458f-8f7f-d38b1b90bb7e", + "id": "70cdcc6d-a89c-47cd-99c9-4fd04c66ab6f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -115868,7 +115868,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a354ee5a-e0c7-4bb1-86f9-1647f1cfb393", + "id": "840d2ef1-bf0c-436a-ad1c-0e1b58b487ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -115931,7 +115931,7 @@ } }, { - "id": "292a3e1a-d204-4189-941a-cbdfcd08440a", + "id": "b4056e10-e4e6-4983-bb68-afc0ed179484", "name": "Return saved search by ID", "request": { "name": "Return saved search by ID", @@ -115972,7 +115972,7 @@ }, "response": [ { - "id": "957c78f1-2ab1-41b6-adcb-dba6deaac680", + "id": "f62d9e9d-1686-43c5-9dbf-164ba045480f", "name": "The requested saved search.", "originalRequest": { "url": { @@ -116016,7 +116016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e758230-9214-4ce1-b933-addfc7976f21", + "id": "597bcf72-b76d-429e-a162-c2f23e665c94", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116060,7 +116060,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4bf2f430-5f6a-4085-8ed1-7ff3c8ce17ea", + "id": "dda73017-0e31-4d3d-97b7-c2738a263050", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116104,7 +116104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3a10d053-a37c-4bc4-b92c-e37e3cb69418", + "id": "3952b991-f1b2-43ca-9f53-a9edf61bd803", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116148,7 +116148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc67d00a-5ceb-4fa4-b4fc-186c04474391", + "id": "8cdcc1a1-b259-437a-949d-6d4dc99efcea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116192,7 +116192,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09e62a39-df6a-4370-9b7b-86f5d2b92980", + "id": "00b514b3-37cc-4e48-8650-988e1ddbfc15", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116236,7 +116236,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c6f4919-3784-4e97-ad4f-ece304333c6c", + "id": "a283eb24-d082-4677-8a05-165115113bb5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116286,7 +116286,7 @@ } }, { - "id": "12f268c0-3f08-43df-a7f9-8a23fbe9108a", + "id": "be30bdf4-b6c0-482b-89b0-192754fe3f38", "name": "Delete document by ID", "request": { "name": "Delete document by ID", @@ -116327,7 +116327,7 @@ }, "response": [ { - "id": "cad6f82e-9d86-4d8f-a895-d45ee6e0d04b", + "id": "d5fd4a73-4705-429c-9049-fb960b152703", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -116361,7 +116361,7 @@ "_postman_previewlanguage": "text" }, { - "id": "a6a89e79-e8ff-4001-ba33-b3a87a82a5c6", + "id": "c1cae253-8cdf-4fd2-81da-05ed2b2e76df", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -116405,7 +116405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d190420-0dbc-4dab-bbc3-645d4b67798d", + "id": "ef11a64a-faf9-4e36-9e99-bd671d04f5e4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -116449,7 +116449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5bc363a3-9472-40d3-9db1-a5c3dd5e4021", + "id": "72695b56-9994-46cf-addc-046d34937676", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -116493,7 +116493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ec1f61ce-87e7-44dd-b714-228fd84ead92", + "id": "a21ab6b8-9910-46f4-b650-98266d3f408a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -116537,7 +116537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7630fc0b-831b-4a7f-91af-4fa814e40374", + "id": "d67c4721-0f06-4aae-9241-95063f893f53", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -116581,7 +116581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c328545-eff7-4c92-83a2-d28f0a20a736", + "id": "0e3e740f-a7cf-41c8-afb5-360461921b7d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -116631,7 +116631,7 @@ } }, { - "id": "1ac15ca3-d9c3-4fed-9cc9-eb0192082817", + "id": "ab085170-8e23-4233-b89c-d544e07fae94", "name": "Execute a saved search by ID", "request": { "name": "Execute a saved search by ID", @@ -116686,7 +116686,7 @@ }, "response": [ { - "id": "cd4a761b-6f14-480d-9872-d552028d09ae", + "id": "550938d5-43e8-4309-8d65-bfac03a5a3dd", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -116734,7 +116734,7 @@ "_postman_previewlanguage": "text" }, { - "id": "ff6b1457-62f1-4c5e-b4d8-9beaa6e51c54", + "id": "474a40f5-89a5-49fd-8343-f07021473d42", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -116792,7 +116792,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c2756a5-5cc4-46f1-8df6-1a0a9dd5ed01", + "id": "618921e5-4646-440f-a6ef-e75c331e3954", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -116850,7 +116850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffc01820-a1bb-4b74-b8e3-084b2d982069", + "id": "2d1a277e-af1c-483b-b637-994b9adf77c5", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -116908,7 +116908,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96a90a8d-1dfa-423f-a5f3-fdcfc88aad87", + "id": "adac5920-82c0-47dc-872e-91658408297d", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -116966,7 +116966,7 @@ "_postman_previewlanguage": "json" }, { - "id": "07f77139-cab1-4f4c-a389-440655d91e05", + "id": "1509e5ac-c251-4211-9aef-dff1f6c3b460", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -117024,7 +117024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57c7b76f-56a7-4561-98a3-afe57717ff60", + "id": "b36d6e91-f2df-4ac1-a576-ce24b8cb656c", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -117082,7 +117082,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eec0cf9e-59ed-4165-a481-0a0ceb6e3ac6", + "id": "4cc735f5-7fb9-4910-8e8f-7c6f29f608dd", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -117140,7 +117140,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3b7f6a9-5167-494b-8825-c34905dfe733", + "id": "80d3fbf3-1546-478f-8305-489a035a3838", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -117198,7 +117198,7 @@ "_postman_previewlanguage": "json" }, { - "id": "441cc2e8-0a55-4bbc-9897-a695d680cb71", + "id": "ea927c19-c1e9-4d5c-807e-97738acef8b1", "name": "Triggered by Scheduled Search", "originalRequest": { "url": { @@ -117256,7 +117256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17706065-11c4-4996-90a7-0a29fbd19f0e", + "id": "33f314a0-4be1-4d96-8f76-99770a1f0aea", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -117314,7 +117314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97e156ab-6efa-4e12-a6e9-7b0a5e593d05", + "id": "b7c6e737-1ef2-4164-adcb-7d37fa81e1ae", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -117372,7 +117372,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e11eb6f-0708-47db-abe0-09967bbf308b", + "id": "4af50c8d-1957-4bf3-90a3-e579f5091230", "name": "Triggered by UI Test", "originalRequest": { "url": { @@ -117442,7 +117442,7 @@ "description": "Use this API to implement scheduled search functionality. \nWith scheduled search functionality in place, users can run saved search queries on their tenants on a schedule, and Identity Security Cloud emails them the search results. \nUsers can also share these search results with other users by email by adding those users as subscribers, or those users can subscribe themselves. \n\nOne of the greatest benefits of saving searches is the ability to run those searches on a schedule. \nThis is essential for organizations to constantly detect any changes to user information or access throughout their tenants and across all their sources. \nFor example, the manager Amanda Ross can schedule a saved search \"manager.name:amanda.ross AND attributes.location:austin\" on a schedule to regularly stay aware of changes with the Austin employees reporting to her.\nIdentity Security Cloud emails her the search results when the search runs, so she can work on other tasks instead of actively running this search.\n\nIn Identity Security Cloud, scheduling a search involves a subscription. \nUsers can create a subscription for a saved search and schedule it to run daily, weekly, or monthly (you can only use one schedule option at a time). \nThe user can add other identities as subscribers so when the scheduled search runs, the subscribers and the user all receive emails. \n\nBy default, subscriptions exclude detailed results from the emails, for security purposes. \nIncluding detailed results about user access in an email may expose sensitive information.\nHowever, the subscription creator can choose to include the information in the emails. \n\nBy default, Identity Security Cloud sends emails to the subscribers even when the searches do not return new results. \nHowever, the subscription creator can choose to suppress these empty emails. \n\nUsers can also subscribe to saved searches that already have existing subscriptions so they receive emails when the searches run. \nA saved search can have up to 10 subscriptions configured at a time. \n\nThe subscription creator can enable, disable, or delete the subscription. \n\nRefer to [Subscribing to Saved Searches](https://documentation.sailpoint.com/saas/help/search/saved-searches.html#subscribing-to-saved-searches) for more information about scheduling searches and subscribing to them.\n", "item": [ { - "id": "39b79005-d9c7-4197-b0f1-aae3d81940e1", + "id": "a1fce647-12c4-4677-8674-b05f24a248bc", "name": "Create a new scheduled search", "request": { "name": "Create a new scheduled search", @@ -117484,7 +117484,7 @@ }, "response": [ { - "id": "e83e4480-f656-4f5a-ad68-00dedf5ce0d0", + "id": "05244241-2a5f-43f5-850e-99a9600fd30c", "name": "Daily Search", "originalRequest": { "url": { @@ -117540,7 +117540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7faa621f-7430-47d1-8953-b263fb340b33", + "id": "03efdcbf-80ec-4e4d-8413-5bb6eb2526b0", "name": "Weekly Search", "originalRequest": { "url": { @@ -117596,7 +117596,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f462759-c03a-46ca-9043-02deac159746", + "id": "0ff352e0-986b-406d-a049-721017fa51bc", "name": "Monthly Search", "originalRequest": { "url": { @@ -117652,7 +117652,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ef7ee33e-e0f4-412e-9062-b6d80fa6faca", + "id": "51e0dc8c-20cd-49de-a442-98d26233c7d1", "name": "Annual Search", "originalRequest": { "url": { @@ -117708,7 +117708,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5cddebc-974e-4a36-bf57-53f4c8f6210a", + "id": "23bdc566-8d8d-4506-87a8-8684fee5a925", "name": "Calendar Search", "originalRequest": { "url": { @@ -117764,7 +117764,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aa677e6-e2ad-4c78-ad35-bf29318856b6", + "id": "d44eebed-48d8-42c2-af79-806df4d47029", "name": "Daily Search", "originalRequest": { "url": { @@ -117820,7 +117820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "652e48e8-1f22-4d75-9f4f-22bb12c3b1c9", + "id": "55bf2bf8-830b-46fd-a246-0d7e08ec9d17", "name": "Weekly Search", "originalRequest": { "url": { @@ -117876,7 +117876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "593c20bb-cfa7-4dbb-b284-5b6bd0d0f9fc", + "id": "561eb0d9-cbc1-4be8-bee3-a835b4309445", "name": "Monthly Search", "originalRequest": { "url": { @@ -117932,7 +117932,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a5245c-6fdc-4e38-a601-dbdcc424d6aa", + "id": "69347b39-3517-4fea-be12-8ddd6c67332a", "name": "Annual Search", "originalRequest": { "url": { @@ -117988,7 +117988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac987f25-d2fe-47b3-83a4-0ee05b1483ec", + "id": "277a3437-2188-48c2-95c9-b14e7937b406", "name": "Calendar Search", "originalRequest": { "url": { @@ -118044,7 +118044,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e1c4ec3-db66-4d74-9020-81a2b80705bb", + "id": "22c066f4-9817-4d09-836f-b1278723c8f0", "name": "Daily Search", "originalRequest": { "url": { @@ -118100,7 +118100,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a4b065b-1ee7-44dc-b9a6-ba88d2a619e2", + "id": "e5324934-09b4-4de5-8e30-bf857674845a", "name": "Weekly Search", "originalRequest": { "url": { @@ -118156,7 +118156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26855579-b6bf-4845-8224-e8b3c36b7afb", + "id": "2dc3bb89-f456-4646-bab1-63a76682e99c", "name": "Monthly Search", "originalRequest": { "url": { @@ -118212,7 +118212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27ccc74e-32e7-4eb8-824b-11e1012088cb", + "id": "53ac38b7-ae13-4c53-afee-d2fc633a9dea", "name": "Annual Search", "originalRequest": { "url": { @@ -118268,7 +118268,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97081b1f-bc26-4091-8d87-2056011ffa64", + "id": "7982c322-48c8-445e-b1c5-7e2040c3a09c", "name": "Calendar Search", "originalRequest": { "url": { @@ -118324,7 +118324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "596db152-fdda-4b7d-b41d-cb1feabe135e", + "id": "672e8ebe-38c2-4183-ab19-fecfc26544a5", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -118380,7 +118380,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b88c0efe-c8e5-4d1b-baad-1e0c267915c1", + "id": "e0b82573-00a9-4285-9198-d9f02b92852b", "name": "Weekly Search", "originalRequest": { "url": { @@ -118436,7 +118436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76e143fe-bcea-4a7e-b53c-02d9504079ae", + "id": "1638898e-b2b4-4127-b353-99ea0d4e186f", "name": "Monthly Search", "originalRequest": { "url": { @@ -118492,7 +118492,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3066e8a1-bfa9-4ffb-ba15-82a84e67b13e", + "id": "447e1cc9-e5d6-4419-8cfa-388062305294", "name": "Annual Search", "originalRequest": { "url": { @@ -118548,7 +118548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "def99d61-2527-481d-95ab-797e527d8f6a", + "id": "fe3c4438-2c29-40d1-9eee-dc4e7e0a2530", "name": "Calendar Search", "originalRequest": { "url": { @@ -118604,7 +118604,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d828e534-2c03-496d-abbd-33f366929137", + "id": "5668bab4-d0df-4142-b896-654b5c8137a6", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -118660,7 +118660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ee0e4e7-a968-4d35-8cd2-36c637f4c1ad", + "id": "82ffb622-c294-4965-be8c-b2e075496194", "name": "Weekly Search", "originalRequest": { "url": { @@ -118716,7 +118716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ee9a6f2-d9a1-4fb2-9754-5c274f481b61", + "id": "1c924c7c-1838-402d-9d3d-5bfe8dcd947e", "name": "Monthly Search", "originalRequest": { "url": { @@ -118772,7 +118772,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e639e9ca-2021-4f02-97dc-73e39889c07d", + "id": "9daadd24-464a-4b94-9057-ccd25c1abd1a", "name": "Annual Search", "originalRequest": { "url": { @@ -118828,7 +118828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da4769fe-e01f-48f1-b5b8-b9aac0432367", + "id": "085fbab0-56f8-4a8e-a4e5-e06375f4b47b", "name": "Calendar Search", "originalRequest": { "url": { @@ -118884,7 +118884,7 @@ "_postman_previewlanguage": "json" }, { - "id": "835da754-c96b-40a3-b1fd-1aba2b663464", + "id": "69c27ae9-b80d-4a4d-911b-7a12a6a3bb48", "name": "Daily Search", "originalRequest": { "url": { @@ -118940,7 +118940,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c988400-5631-4722-9a9e-814d3f8e55d3", + "id": "c78481e1-2e42-4eda-bbd6-c458d6c40774", "name": "Weekly Search", "originalRequest": { "url": { @@ -118996,7 +118996,7 @@ "_postman_previewlanguage": "json" }, { - "id": "985855a6-0f7e-44fe-a655-a90e3dc1b51e", + "id": "84c80eaa-97c2-46dc-bafe-e55c783ac751", "name": "Monthly Search", "originalRequest": { "url": { @@ -119052,7 +119052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00eaad35-bacf-48d8-b37e-5d606a3a65dc", + "id": "ffdc9eac-1ffb-462f-abd4-125ea23c34df", "name": "Annual Search", "originalRequest": { "url": { @@ -119108,7 +119108,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca3b8d5c-b9e6-438b-94bf-904354938d60", + "id": "59f74435-365d-4e38-95d1-39c440c08c07", "name": "Calendar Search", "originalRequest": { "url": { @@ -119164,7 +119164,7 @@ "_postman_previewlanguage": "json" }, { - "id": "685b2a0a-7b79-4d43-93cc-664b9e8a6694", + "id": "ff70fc69-4781-4736-a890-c614f126c77c", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -119220,7 +119220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "672cea62-fe02-4ddc-b294-f5adced66638", + "id": "22d23853-3d38-4c34-9ec6-816b5c442a4f", "name": "Weekly Search", "originalRequest": { "url": { @@ -119276,7 +119276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c24076e-4fc0-4949-a7dc-19bfb7b8ccec", + "id": "61b76010-0271-4ee5-b582-77d7a32c6429", "name": "Monthly Search", "originalRequest": { "url": { @@ -119332,7 +119332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c393be4d-036d-44cb-a187-d67de00020e1", + "id": "7d358031-2f66-43ec-8e06-41a9b0392a25", "name": "Annual Search", "originalRequest": { "url": { @@ -119388,7 +119388,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64b837ec-2fca-459a-8fa8-9667582d9719", + "id": "c765a008-be8f-4a06-8ec1-cba6a8d68edd", "name": "Calendar Search", "originalRequest": { "url": { @@ -119450,7 +119450,7 @@ } }, { - "id": "9383a221-e2ba-4297-8c38-c9ca8ec13dee", + "id": "6471bb87-5cb9-468a-a86e-99959b1b79f6", "name": "List scheduled searches", "request": { "name": "List scheduled searches", @@ -119516,7 +119516,7 @@ }, "response": [ { - "id": "2eb33d87-572e-4a02-babd-e4f6a19dc2c6", + "id": "f9f6b1cd-e1c5-4041-b6d1-b513baab9a5f", "name": "The list of requested scheduled searches.", "originalRequest": { "url": { @@ -119605,7 +119605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63f37662-3eb8-44c0-9b25-3d821f697f79", + "id": "ac7027e5-20be-4404-bee4-16a67be11dc4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -119685,7 +119685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1b20770-4fdf-4a58-8595-09b0ddbe73c9", + "id": "dfb2561e-c075-429d-85e0-1b5e89f1109c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -119765,7 +119765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "708ce930-dee9-4919-8544-a7dee337de4b", + "id": "ddf7c831-2caf-4cee-acd4-b2184b4d1d31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -119845,7 +119845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b7f5fb35-abbf-4f39-bece-4d3e80d0f703", + "id": "90136687-dbf3-44ee-b197-4c5a7804af06", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -119925,7 +119925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "75fa4a9c-5040-4920-aa29-bec837824160", + "id": "437527fc-5ea6-43af-b236-def4160b5728", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120005,7 +120005,7 @@ "_postman_previewlanguage": "json" }, { - "id": "419cdb74-5d6d-40c2-b788-ac48cd63a434", + "id": "6a826faf-8e88-4617-984e-a11fc9dfd54c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120091,7 +120091,7 @@ } }, { - "id": "f9175c6a-0de4-4266-a34e-cb9a49b164ed", + "id": "fdf88571-34d9-48f9-ad32-5d5fba150520", "name": "Update an existing Scheduled Search", "request": { "name": "Update an existing Scheduled Search", @@ -120145,7 +120145,7 @@ }, "response": [ { - "id": "d350b802-8cf7-4f2b-a890-f3bda87a70f0", + "id": "f3f85bf3-5c54-4579-b5f7-be3c21c69b30", "name": "The persisted scheduled search.", "originalRequest": { "url": { @@ -120202,7 +120202,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14b6ef3f-807c-4444-9a6d-75a564819541", + "id": "e814eb4d-68a6-4b46-a650-5a5d838265ea", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120259,7 +120259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eae15e92-108a-4599-9ebf-cddfa802f44d", + "id": "25fad88d-1785-485f-8d8a-5b581d3f8d15", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120316,7 +120316,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7979d4b-1dd7-4183-9a65-02fc1e3bfd98", + "id": "7427ad1e-df2c-4a7b-aeca-7b0bc9c91925", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120373,7 +120373,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd6d4518-4bf1-4370-9ecb-3d61bad36822", + "id": "96d549ab-0d1a-4022-8a5b-3551b6934aca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120430,7 +120430,7 @@ "_postman_previewlanguage": "json" }, { - "id": "541503d8-38a4-4978-a827-47258178b2cc", + "id": "14893ee3-2cb6-40bd-9dcb-513303d33478", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120487,7 +120487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "137aceae-ea3c-49d0-aeed-4c0dafb026dd", + "id": "3a97f88f-dd96-48d5-aec2-e6a142ccea9b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120550,7 +120550,7 @@ } }, { - "id": "56891b74-19ec-494b-9776-e372338d4d02", + "id": "df26c35d-0f71-42f5-8768-9f2c2a99f695", "name": "Get a Scheduled Search", "request": { "name": "Get a Scheduled Search", @@ -120591,7 +120591,7 @@ }, "response": [ { - "id": "80e4b30a-2f2f-44e2-8f7c-bb0f44d2b5b7", + "id": "b42b8072-abea-42f5-9291-45757a026be3", "name": "The requested scheduled search.", "originalRequest": { "url": { @@ -120635,7 +120635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eee92d2f-b4a6-4e7f-a6e4-60885411092a", + "id": "81695f57-7be5-4230-9693-c35856468d9c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -120679,7 +120679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0470cb05-eb1d-4f14-ab69-ead40be31f86", + "id": "00c007cb-3edf-4348-81a3-1f47879fac97", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -120723,7 +120723,7 @@ "_postman_previewlanguage": "json" }, { - "id": "233fea45-9557-4574-8cd3-7709d3618e1e", + "id": "9e162c74-e2d6-41c8-be7d-3f241e62a78d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -120767,7 +120767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "415c611e-e476-4bb9-bed7-948c50437660", + "id": "8d98a3c8-34b2-4ec6-a8c6-de18bc21b290", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -120811,7 +120811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d618a1-28ca-453b-b030-2bd660705fb7", + "id": "91dcb47d-9740-42f8-be9a-5476bb5cdcba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -120855,7 +120855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50407ae5-bf0b-4b53-bf49-c9fb4b843d19", + "id": "c61da791-b48e-4733-9e3c-82dbeba8c604", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -120905,7 +120905,7 @@ } }, { - "id": "e0881a70-cdff-4a46-8d43-47291710cd47", + "id": "e500642c-11c9-49c5-afe2-118b20aa3802", "name": "Delete a Scheduled Search", "request": { "name": "Delete a Scheduled Search", @@ -120946,7 +120946,7 @@ }, "response": [ { - "id": "fac95475-d685-4855-9280-89a8a6271bf4", + "id": "77a781ed-9abd-447b-84a1-4626e83efdac", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -120980,7 +120980,7 @@ "_postman_previewlanguage": "text" }, { - "id": "9c1e0b89-fd51-4ba7-81d5-d20cda791158", + "id": "a5c39242-c0e0-4642-a9a1-e490a515dd84", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121024,7 +121024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1fc7ffff-ed7a-42fe-acab-df34fa0a6036", + "id": "27db067a-af82-49ed-a2e1-ad2e0b3a14b3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -121068,7 +121068,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c279e98-eb48-4d8e-8595-1b3909004485", + "id": "b6ff6c42-e1f6-495d-b9e0-d2c2578cd459", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121112,7 +121112,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b310532-0cc4-440f-964c-3a85af2990f4", + "id": "d4d7d715-9c8e-495e-8031-f6db9562b685", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121156,7 +121156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2cb0b372-adbb-4c6d-a525-34ccdeae4593", + "id": "194096a9-b2f3-4c9e-94d1-2d177bf5bf6a", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -121200,7 +121200,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6267145-8e9a-4fc5-a6c9-7b1f88f6bec2", + "id": "89ce1913-04b6-44fb-bf93-7d3acf36981b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -121250,7 +121250,7 @@ } }, { - "id": "bb9b0d17-9240-4995-8d48-0c77272ad3de", + "id": "6008b3cd-b74e-41ac-9f6d-01f274d313b2", "name": "Unsubscribe a recipient from Scheduled Search", "request": { "name": "Unsubscribe a recipient from Scheduled Search", @@ -121305,7 +121305,7 @@ }, "response": [ { - "id": "9f516be1-8775-4242-b46d-1b903f0cdf53", + "id": "cde8db4c-9b20-46a9-b1a4-4022e7edc2a7", "name": "No Content - Indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -121353,7 +121353,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b1dbbeb4-8940-463c-8902-55ca71ebe7dc", + "id": "b371bd80-a409-493f-9cec-16c0abd05c6b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -121411,7 +121411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5c63cb93-ee45-4b08-8a59-06dcc7342310", + "id": "37973a60-54cb-4995-a6d5-3d74a05e02e0", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -121469,7 +121469,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f603a45-9f4f-49ad-a02b-1bae8e7022e7", + "id": "cd207ab0-e007-432a-a242-09557503da6e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -121539,7 +121539,7 @@ "description": "Use this API to implement search functionality. \nWith search functionality in place, users can search their tenants for nearly any information from throughout their organizations. \n\nIdentity Security Cloud enables organizations to store user data from across all their connected sources and manage the users' access, so the ability to query and filter that data is essential. \nIts search goes through all those sources and finds the results quickly and specifically. \n\nThe search query is flexible - it can be very broad or very narrow. \nThe search only returns results for searchable objects it is filtering for. \nThe following objects are searchable: identities, roles, access profiles, entitlements, events, and account activities. \nBy default, no filter is applied, so a search for \"Ad\" returns both the identity \"Adam.Archer\" as well as the role \"Administrator.\"\n\nUsers can further narrow their results by using Identity Security Cloud's specific syntax and punctuation to structure their queries. \nFor example, the query \"attributes.location:austin AND NOT manager.name:amanda.ross\" returns all results associated with the Austin location, but it excludes those associated with the manager Amanda Ross.\nRefer to [Building a Search Query](https://documentation.sailpoint.com/saas/help/search/building-query.html) for more information about how to construct specific search queries. \n\nRefer to [Using Search](https://documentation.sailpoint.com/saas/help/search/index.html) for more information about Identity Security Cloud's search and its different possibilities. \n\nThe search feature uses Elasticsearch as a datastore and query engine. \nThe power of Elasticsearch makes this feature suitable for ad-hoc reporting.\nHowever, data from the operational databases (ex. identities, roles, events, etc) has to be ingested into Elasticsearch. \nThis ingestion process introduces a latency from when the operational data is created to when it is available in search. \nDepending on the system load, this can take a few seconds to a few minutes. \nPlease keep this latency in mind when you use search.\n", "item": [ { - "id": "876c20c2-8752-4b83-80a2-2780743bf932", + "id": "4273f0bd-8bea-4c5d-8e07-fa70d89fd52a", "name": "Perform Search", "request": { "name": "Perform Search", @@ -121609,7 +121609,7 @@ }, "response": [ { - "id": "4fbf919d-5f1d-4ce1-9af7-c5b6759144aa", + "id": "240491b2-1bb4-44ff-afba-18aa387214c0", "name": "A collection of AccessProfiles", "originalRequest": { "url": { @@ -121702,7 +121702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8f12667-10b0-44d2-a60e-ebec58d6c73b", + "id": "59be62de-aec3-40d0-99f1-86df10f40281", "name": "A collection of Entitlements", "originalRequest": { "url": { @@ -121795,7 +121795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e7f80036-9a42-4249-9d24-6cd82ffba583", + "id": "09bb3f5f-193c-4989-859a-c5c9b1b89eb0", "name": "A collection of Events", "originalRequest": { "url": { @@ -121888,7 +121888,7 @@ "_postman_previewlanguage": "json" }, { - "id": "906e8ecc-2a9e-45de-af08-8296002634c7", + "id": "55753e8d-ef88-4180-970a-b457ad52556d", "name": "A collection of Identities", "originalRequest": { "url": { @@ -121981,7 +121981,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fbcb9c8e-4762-4730-89f8-981836f8a570", + "id": "efc236cf-6175-4baa-bc42-56996d278bd9", "name": "A collection of Roles", "originalRequest": { "url": { @@ -122074,7 +122074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed80970c-c249-4cb8-a138-6e0c5a5beca8", + "id": "f453924a-2262-4de1-8ab2-8d3f0a8646ca", "name": "Filter with Exists", "originalRequest": { "url": { @@ -122167,7 +122167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66999e8d-c56f-44f9-bc3b-340105e75f09", + "id": "ab0ccd60-aceb-4510-b7a0-ce49ea305a07", "name": "Filter with Range", "originalRequest": { "url": { @@ -122260,7 +122260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b82bc698-d59f-45a8-bc24-81b97cde35a8", + "id": "d409e7c9-faf9-48fa-8ae8-99c8db5ee332", "name": "Filter with Terms", "originalRequest": { "url": { @@ -122353,7 +122353,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ce4c396-7620-41b6-a52f-af45666cb3e8", + "id": "d73dc836-78c9-41b5-b130-17cba2ddbbca", "name": "Query with Fields", "originalRequest": { "url": { @@ -122437,7 +122437,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f40d842-91eb-47bf-b752-9bab276f63d5", + "id": "0fae2891-1415-4d60-ba93-e731abcc292e", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -122521,7 +122521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac5d3291-63ad-48b0-917e-afa099d89fa7", + "id": "57474fc1-e1eb-4a32-a4dc-142651c906d3", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -122605,7 +122605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d52910d-822b-40e1-952c-a178f5fda5bd", + "id": "c4e5d2dd-53ff-4f03-835f-a4222366d780", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -122689,7 +122689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9ce6d95-6998-448f-b5cd-aa8caf558545", + "id": "80446fa3-becd-427c-a24e-aa523848f55d", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -122773,7 +122773,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35550ef1-fc71-4b56-abf4-81892e257769", + "id": "b8a57be1-0e3d-4560-b48f-b1d3c5f717d3", "name": "Filter with Exists", "originalRequest": { "url": { @@ -122857,7 +122857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e8acd617-3a62-4e81-8994-9b0b36781aca", + "id": "a4cc2146-e80c-43df-81ec-707d3e86ed16", "name": "Filter with Range", "originalRequest": { "url": { @@ -122941,7 +122941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdfb32d5-37eb-42ec-b49c-c1d61f3322b1", + "id": "dc59daed-0ce2-4a02-9f97-02c7bd3f6daf", "name": "Filter with Terms", "originalRequest": { "url": { @@ -123025,7 +123025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "499ed861-b959-41f2-8bbd-40e0fb76a049", + "id": "3bea6ebd-6257-41a2-aa77-ba61ccee9d8a", "name": "Query with Fields", "originalRequest": { "url": { @@ -123109,7 +123109,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba739e9a-ca26-454a-87d9-224737832f3f", + "id": "58fb625b-b0ee-4573-8dcf-18ed1bec8ee7", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -123193,7 +123193,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee44d502-d2c1-4eb0-aad4-32252f7c330b", + "id": "d980c721-8b00-4f95-8c0d-60eeb23cf985", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -123277,7 +123277,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3ac59b9f-8f8f-4490-b03c-b3dfbb1b9d4b", + "id": "48079fe8-ed20-4a21-88d7-2a108fd3b0f1", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -123361,7 +123361,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad0dfaf2-4505-4f91-84e1-35c7e70c5cd2", + "id": "1aa2d39e-c02f-4800-a49b-9af55ab64d17", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -123445,7 +123445,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f703280-9951-4a11-a499-78f79dce8dcf", + "id": "1e9ae185-2f77-4a1b-a165-d5dc39a00afb", "name": "Filter with Exists", "originalRequest": { "url": { @@ -123529,7 +123529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b105c3e-1223-488b-89e2-fdcc6851b7d4", + "id": "7bfc4d64-9e02-44a8-8098-7dcb9ef2b95b", "name": "Filter with Range", "originalRequest": { "url": { @@ -123613,7 +123613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89bf1592-b211-4a19-90c9-24b08530e55b", + "id": "6a236aec-69a9-4302-9486-ace4f72bffe5", "name": "Filter with Terms", "originalRequest": { "url": { @@ -123697,7 +123697,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d5ca366-a72a-47cb-8050-41f0bbee5df9", + "id": "c9bb2be7-53b1-46a8-946c-950b9b199d29", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -123781,7 +123781,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e67e73a-c5b4-4d08-9e84-4d3576342f57", + "id": "4cbe79f7-9bab-4691-bfc6-cfcd34bd25dc", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -123865,7 +123865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f3dd396-9141-41fe-9b0d-e3f79bb05f9f", + "id": "6f269d80-ae1e-43df-9c18-c59409dabb8c", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -123949,7 +123949,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3a3cb41-85a7-4f43-bde4-1f5eed8e8275", + "id": "00f7396e-c070-40a5-8ded-833398d5c8e7", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -124033,7 +124033,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39686d44-b1d4-420e-9970-774ff71830f7", + "id": "16c20904-9459-4535-8e21-29885588a00e", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -124117,7 +124117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "670eadd2-ecb5-4f34-873e-e4cdbda4891a", + "id": "83a3abad-b0f3-40c0-8559-8966cbf85b7c", "name": "Filter with Exists", "originalRequest": { "url": { @@ -124201,7 +124201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a11f046-c764-488e-b72d-bf697a379e09", + "id": "fca55f1d-f353-451d-8a3e-c3869420c5ae", "name": "Filter with Range", "originalRequest": { "url": { @@ -124285,7 +124285,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a032881d-b94e-40e8-8e6f-5d615e77c81f", + "id": "c8fde3b1-bbba-4db9-8248-511f14233895", "name": "Filter with Terms", "originalRequest": { "url": { @@ -124369,7 +124369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adc67dd4-9ceb-4348-8131-a91b88f608a0", + "id": "6848d753-7ec1-450c-b22b-8af0d085c243", "name": "Query with Fields", "originalRequest": { "url": { @@ -124453,7 +124453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d680cde-8f14-4855-b82b-4f2e68523a9b", + "id": "e9d28e13-74bf-4de1-8079-0e793778f633", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -124537,7 +124537,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ae0906b4-3e15-44ce-ad97-633565db71ae", + "id": "260393b8-ad86-4088-8b6a-6e41cdd5af8a", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -124621,7 +124621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adaaa01a-d00e-46e1-8453-cf9277da9597", + "id": "a744727b-4b7e-4d49-9941-7d4570948b43", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -124705,7 +124705,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8e73ceb-f01f-4876-881f-e26cfc3945d8", + "id": "dfe48af3-5749-4541-984b-25d325895ec6", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -124789,7 +124789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "40952775-4d35-4212-bb3b-99c0fcc2609c", + "id": "b5ac9883-3424-40d8-802a-cffa29986654", "name": "Filter with Exists", "originalRequest": { "url": { @@ -124873,7 +124873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dcf2e05c-c795-41f8-9f13-31be4550f723", + "id": "f42e333f-1fe2-484f-99a8-83dbcc15d9ed", "name": "Filter with Range", "originalRequest": { "url": { @@ -124957,7 +124957,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00589391-e4e6-41ea-860c-cc88cb2f675f", + "id": "c136da22-f9e5-4fe8-aa8f-823214767988", "name": "Filter with Terms", "originalRequest": { "url": { @@ -125041,7 +125041,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3aff0ff-b925-4178-976d-ed2a47642992", + "id": "3804c562-c640-4543-92e9-021bee1dc720", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -125125,7 +125125,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c24ed4f6-0d0e-4676-821f-85eed2ed3078", + "id": "86a9a990-8c86-4560-8620-f5ea539d8b1e", "name": "Query with TimeZone", "originalRequest": { "url": { @@ -125209,7 +125209,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e75c290-5d94-4d01-be0c-039bbaefd28e", + "id": "1f725668-a475-46b6-aaf6-94d2e8576c1b", "name": "Query with InnerHit", "originalRequest": { "url": { @@ -125293,7 +125293,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b5439a9d-fcc3-45c5-98d0-4cf714631bd6", + "id": "1b3cfe8d-0922-4f2e-a148-66a3ead978f4", "name": "TypeAheadQuery", "originalRequest": { "url": { @@ -125377,7 +125377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb75f75a-791f-40fa-a1eb-07296e26c840", + "id": "8fa6e302-7459-4294-b0c3-81e4626c5db7", "name": "TypeAheadQuery with NestedType", "originalRequest": { "url": { @@ -125461,7 +125461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c4b4a04-1f3c-44a0-94a6-4464c9a6c474", + "id": "839ef847-2462-4be3-a48a-1989829ec0e3", "name": "Filter with Exists", "originalRequest": { "url": { @@ -125545,7 +125545,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd5843bf-98cf-44f3-91ee-2343da7177ca", + "id": "e6487ebc-46cc-49fd-8b87-33f6e8200375", "name": "Filter with Range", "originalRequest": { "url": { @@ -125629,7 +125629,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6a7fb65-1f16-4e96-bdfd-4b92f9737994", + "id": "d8a17017-0aa1-41f1-9ba1-cf1c357be1d6", "name": "Filter with Terms", "originalRequest": { "url": { @@ -125719,7 +125719,7 @@ } }, { - "id": "2f03e452-43fc-4834-9cdd-8c85692cb5d2", + "id": "4d4dd353-fff5-48af-b022-409d2c18c093", "name": "Count Documents Satisfying a Query", "request": { "name": "Count Documents Satisfying a Query", @@ -125762,7 +125762,7 @@ }, "response": [ { - "id": "474fd020-e46b-4daa-9939-0e18c18089cf", + "id": "a09322be-8d5c-44ec-96f4-99b87da99a5b", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -125819,7 +125819,7 @@ "_postman_previewlanguage": "text" }, { - "id": "aeca3020-dbcd-4935-ae80-7a174c31d78d", + "id": "ae3bae15-b8f8-491b-be2a-96f56386bd1a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -125876,7 +125876,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97a557c1-0917-4cad-9d66-1e12333ff50f", + "id": "b5b02898-2305-489e-b605-207edf4b97a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -125933,7 +125933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d125e19-3b5d-4853-ad5a-91ad6d84f013", + "id": "47620769-14f8-44ae-9ed6-5c36f95283d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -125990,7 +125990,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5e2c9d8-5eb8-4cf2-8c46-b7cb395a90ec", + "id": "0a401d70-ebed-4fb8-8e18-8adf354da2ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -126047,7 +126047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f880cf4b-fc12-48f9-bfe0-3951a9389601", + "id": "a4d4e9ee-ec85-4064-983c-df8a619fe5a6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -126110,7 +126110,7 @@ } }, { - "id": "9ee3dbd8-fe41-49da-936d-0a9e57b231ae", + "id": "e0c2ac38-b9a0-426e-b94a-b301a29caa65", "name": "Perform a Search Query Aggregation", "request": { "name": "Perform a Search Query Aggregation", @@ -126181,7 +126181,7 @@ }, "response": [ { - "id": "75188818-2ff6-4312-b7fe-1214e89b7d18", + "id": "566a077c-9bb6-45ec-8206-4ada338203cb", "name": "MetricAggregation", "originalRequest": { "url": { @@ -126275,7 +126275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f1cd0fc-76b5-4c23-bdcc-057e95a00479", + "id": "4ed475c5-bc9c-436e-bfb2-33c7e30f34c1", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -126369,7 +126369,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b14e64bc-3f5c-4127-b179-ce6621d1736c", + "id": "e3a94ca8-c53a-4a46-b01c-fa08a935cb85", "name": "BucketAggregation", "originalRequest": { "url": { @@ -126463,7 +126463,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b2e4254-c6bd-4f85-97c4-60332a50d1d4", + "id": "a48e8044-01fb-48cc-a2bf-986e3b8fbdd0", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -126557,7 +126557,7 @@ "_postman_previewlanguage": "json" }, { - "id": "476bdbf1-5907-4ee5-8e30-bcffa9c999a4", + "id": "210a057e-7d69-4ee7-9ded-e57267929300", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -126651,7 +126651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48b0cdfd-d2b1-4bd6-af9d-835173c28d77", + "id": "06ecc104-271d-4e12-854f-38d43e9b160a", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -126745,7 +126745,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35de8895-b7b5-4ec9-b8ca-3a3f709ea359", + "id": "6ffe1cff-1155-4883-b86a-1482406075a7", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -126839,7 +126839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "64ac3dfc-ba7a-4410-a534-ce023168dc95", + "id": "f9a9fdc1-9324-4de9-a251-89ed03cc542a", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -126933,7 +126933,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7734141-ed42-41a8-86cb-e08624e6706c", + "id": "086a37ab-3b04-4be9-b4e9-0c1b6c46a0a2", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -127027,7 +127027,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8431044-4147-444e-b7bf-41cc7a8e75be", + "id": "fa21bdc5-7f84-4d48-9c0a-6fe9adabb1cd", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -127121,7 +127121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "385b9493-cb23-4a63-be04-d6c260d960e2", + "id": "89561862-f7ac-4a4d-a777-3788ea60380d", "name": "MetricAggregation", "originalRequest": { "url": { @@ -127206,7 +127206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5fa7785-a949-43ca-b750-2b992e2532da", + "id": "1ca1e335-5041-4158-9fe8-8647c084dd31", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -127291,7 +127291,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d57b225e-b023-43aa-b0fc-de6d3965bd4d", + "id": "671cc190-7dc7-43b9-a880-3af5730e58ed", "name": "BucketAggregation", "originalRequest": { "url": { @@ -127376,7 +127376,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8cd2ca2a-58da-4334-b793-b5d69eb52cd6", + "id": "1b4e89e0-54a4-47aa-b53b-75509ac859a4", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -127461,7 +127461,7 @@ "_postman_previewlanguage": "json" }, { - "id": "083c7eb8-fe86-4075-a1ee-2cfa916ad0b1", + "id": "19a519a1-35e8-4cb0-b1f1-7ce7acced72c", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -127546,7 +127546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b556e3d-00af-4076-bf25-7c30f35770d3", + "id": "c590a30f-e577-4b4f-b684-11c1b604e7e7", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -127631,7 +127631,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03ff4076-737d-42a2-bcfd-d94d1cfe4f9b", + "id": "7a961d9d-dd58-4603-9ed6-45ed340fc7ef", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -127716,7 +127716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bcbaa249-a568-4e14-81ba-4c30d800f9c5", + "id": "699225e5-42a9-4b7d-9ab4-0db14be9567d", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -127801,7 +127801,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca07acac-5d99-4335-b421-87a1baa4e714", + "id": "ceadf031-17f2-46aa-bdae-296af09c08f9", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -127886,7 +127886,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4db7b00b-a290-496b-8cfc-27fde785fc81", + "id": "55ae2989-1415-4d23-8e37-2a69616699c5", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -127971,7 +127971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "927aad6f-e58e-4b56-b888-346ba2aa6cfa", + "id": "91591d3f-c449-4aac-bea7-0efac85ae41a", "name": "MetricAggregation", "originalRequest": { "url": { @@ -128056,7 +128056,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f5f4e298-32e0-4065-93f2-be3c70f5df2f", + "id": "8a81eb6a-0048-47e1-84bb-177a2addf7b5", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -128141,7 +128141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f72e97ca-88e6-4a1b-a49c-427670da98d8", + "id": "88e821f7-6e94-4ad1-b8bd-c2a68f358136", "name": "BucketAggregation", "originalRequest": { "url": { @@ -128226,7 +128226,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b154df17-29e5-48ab-9ce0-26a6dd3c10d9", + "id": "6a85a6ea-58cf-4461-9b58-8a0b9d846f2d", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -128311,7 +128311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d7d47d1-96e4-43fb-b6cf-d26438b813a9", + "id": "4c40243c-2053-4023-8102-5c54a7006924", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -128396,7 +128396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10ea9f8b-d838-4eec-8f52-c1bab81866a9", + "id": "63301c55-c00a-4766-a21e-b06bea4fb296", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -128481,7 +128481,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ab8bb92-4e11-456c-a50b-7804d689dafb", + "id": "872982d7-7c1f-42b6-a258-d5d2a9a28133", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -128566,7 +128566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "587c9694-fbfa-4dc9-bd51-fb6d964edf8d", + "id": "379b4090-c9a5-4b04-b2ae-02257bc08800", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -128651,7 +128651,7 @@ "_postman_previewlanguage": "json" }, { - "id": "734fc2da-f64c-4f28-97d5-5e7f0d4dbf13", + "id": "9e4592f3-1d7e-42e8-91aa-c1ab67031633", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -128736,7 +128736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29eb3669-2f3b-4cf6-8031-6cb1c5b86c92", + "id": "8c4f51d2-14ab-47dc-aa5e-c2e58fc9bdfc", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -128821,7 +128821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61d8ff98-3b2e-43c3-a247-dc73d11b3599", + "id": "9df4fa07-1c19-4e43-8fc1-dcc2a168ca93", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -128906,7 +128906,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be30a689-c6b8-4de9-93f1-a23c37120cae", + "id": "07f04bb7-18be-4cd2-bd83-4b42b9ab3cdb", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -128991,7 +128991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d18ee907-1bcb-48aa-9532-29a1b8e18289", + "id": "75aa6639-6b55-4d4a-bba3-4a7f927f370f", "name": "BucketAggregation", "originalRequest": { "url": { @@ -129076,7 +129076,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73f53ce-07f3-41e5-a6ff-c05751b4f8ce", + "id": "dc21db6d-40ef-43a0-8cb9-0bc6eac4283a", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -129161,7 +129161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8fa9ebe-ceae-4bca-9900-43ba1a6e62a4", + "id": "81814a6c-65fd-42b9-99d6-a2cae99cb804", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -129246,7 +129246,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9db5bb9d-eec2-48af-a42a-d1ff868b7af1", + "id": "41395de2-a40b-4d92-9880-924b0931ef75", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -129331,7 +129331,7 @@ "_postman_previewlanguage": "json" }, { - "id": "670df783-fb82-4115-9cbf-0b7624e255cc", + "id": "14146cf3-ba0a-4047-b543-cb2ef738591f", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -129416,7 +129416,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18286b18-02f2-49f5-ab18-6e8b8efa47ff", + "id": "ab2620ae-5554-4ca9-b54d-ce60e1b60a1f", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -129501,7 +129501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8220067-bdd8-4e5a-b3b2-9d60c4d48a31", + "id": "c7c6fcf3-d1be-4503-a7e5-cdf464caa8e0", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -129586,7 +129586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c319bbdc-01ee-4514-bf95-8fe0b8f1255e", + "id": "26645aa5-1757-4e0e-8433-063fedeec612", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -129671,7 +129671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cdef6f34-7745-43c1-9497-816cd24dd58e", + "id": "8da6b306-3209-4f0a-aa28-1d4a1f50ec54", "name": "MetricAggregation", "originalRequest": { "url": { @@ -129756,7 +129756,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4720007-0bac-42d5-b797-296517655d78", + "id": "bf8fb561-f863-40d6-8cb2-f026063ecd9c", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -129841,7 +129841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6813a808-9b36-4ca2-8021-a860c99819f3", + "id": "c433a0b4-8269-4702-8f6c-b479a21c21a3", "name": "BucketAggregation", "originalRequest": { "url": { @@ -129926,7 +129926,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad78a582-59a2-4b5f-be0c-b4c418fc366d", + "id": "2f348fbb-715e-4280-8527-2ab52d7af922", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -130011,7 +130011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "880767e7-8208-4f6d-afa0-b613a51bbf57", + "id": "4fa05c56-e33c-4519-bfaa-452bb65f081b", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -130096,7 +130096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2c460706-9f58-467e-b41a-4e56ec693bf4", + "id": "108f638f-0399-4d58-891e-738cc5fc1c76", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -130181,7 +130181,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1f34a36c-b8ae-40b3-b938-99fc91eca776", + "id": "856564f7-7008-4d39-b8c4-b66e803f8f4a", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -130266,7 +130266,7 @@ "_postman_previewlanguage": "json" }, { - "id": "12af1601-fdbf-4b8b-a0e9-598eb628fc4a", + "id": "0ed0ac63-2f9b-4906-a7be-2ce3d92c15aa", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -130351,7 +130351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6659d1f-9a0e-4ab4-8d5d-b82601ea714c", + "id": "3cb837a9-e5c1-43a5-95a9-54d722b7e12b", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -130436,7 +130436,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7307d09-a004-48af-bf53-3e91b077962f", + "id": "601ab05e-16a8-4da9-8e05-1233ccd0edf3", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -130521,7 +130521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e091359-5535-48f1-a8b9-f95ad0298bc0", + "id": "3871ef79-b559-4afc-9618-2dfe1b87f7bf", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -130606,7 +130606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7233862-2a1a-4ad5-8ae5-30c5188ad0a9", + "id": "90789d9d-e9ac-4090-8e07-37dad22e58f5", "name": "MetricAggregation using DSL", "originalRequest": { "url": { @@ -130691,7 +130691,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c0d9ec4-f611-4073-a954-8dd5238f5c3d", + "id": "0c57d649-bfe8-43f6-bb29-1d391a32a539", "name": "BucketAggregation", "originalRequest": { "url": { @@ -130776,7 +130776,7 @@ "_postman_previewlanguage": "json" }, { - "id": "936ce56f-de17-4e21-b282-13b9f4f188ad", + "id": "7bc22e57-84e2-4f72-b995-9bdbe1911ce8", "name": "BucketAggregation using DSL", "originalRequest": { "url": { @@ -130861,7 +130861,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50b3442c-a3d1-45f3-97bf-00d9e835ff07", + "id": "60622c5f-5c16-4588-8db8-00be58316d6b", "name": "NestedAggregation with BucketAggregation", "originalRequest": { "url": { @@ -130946,7 +130946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b2de1abb-557d-4402-9cc2-44a9c7197ece", + "id": "13898b23-60f4-46ee-8833-c1b6ccb3cd74", "name": "NestedAggregation with BucketAggregation using DSL", "originalRequest": { "url": { @@ -131031,7 +131031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "390aad8e-2aad-4c4b-b35e-165cb7f94116", + "id": "fb3fed73-5d6c-49a6-88e7-a53dcf95230c", "name": "NestedAggregation with FilterAggregation and BucketAggregation", "originalRequest": { "url": { @@ -131116,7 +131116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3afa4315-f72b-461f-906d-a07006623143", + "id": "b793941d-154e-4cbb-a4f0-7cba9c67d9ca", "name": "NestedAggregation with FilterAggregation and BucketAggregation using DSL", "originalRequest": { "url": { @@ -131201,7 +131201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "043d60b2-9f22-47f8-b235-39b5847a79b5", + "id": "510af49f-79f5-45e9-825a-f3636e10417d", "name": "BucketAggregation with SubAggregation", "originalRequest": { "url": { @@ -131286,7 +131286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18ef9a24-a291-45ed-80f7-f08f9519d2c8", + "id": "9c787e60-3e33-4e5b-ad90-c606fc38d1b6", "name": "BucketAggregation with SubAggregation using DSL", "originalRequest": { "url": { @@ -131377,7 +131377,7 @@ } }, { - "id": "a3fd4961-23fb-4e79-9e74-7bd7c6bb0de7", + "id": "c36d22dd-c41d-467a-adf2-4628c2a6c5c6", "name": "Get a Document by ID", "request": { "name": "Get a Document by ID", @@ -131429,7 +131429,7 @@ }, "response": [ { - "id": "e520c9f0-f804-4142-ad5e-48e612646a70", + "id": "a19df013-fcf8-438c-b92b-5bc2c1f7a699", "name": "AccessProfile", "originalRequest": { "url": { @@ -131474,7 +131474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c1a4126-36d2-4247-8a72-a155f311c58e", + "id": "f4ded704-9c08-4413-b866-aafe74a5eac7", "name": "Entitlement", "originalRequest": { "url": { @@ -131519,7 +131519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26a0bd49-7650-4aa8-a821-ec6b328b37a0", + "id": "b9bfef24-6551-43b5-b2c5-cabcc36e593b", "name": "Event", "originalRequest": { "url": { @@ -131564,7 +131564,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3c8171f-a565-46d0-9666-0940d8efff83", + "id": "3bde2f46-8465-4964-806d-9ebd106f2319", "name": "Identity", "originalRequest": { "url": { @@ -131609,7 +131609,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b8f1dcf-7c20-43e8-b432-d2fbffa1d6e0", + "id": "fd75f2e5-62f0-464d-97f0-daf4d091ab4e", "name": "Role", "originalRequest": { "url": { @@ -131654,7 +131654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2216228d-7748-42fd-b94f-f34a8b70f6fa", + "id": "c6ba53ed-9ce9-45aa-b5d2-577d08a1fd73", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -131699,7 +131699,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cf914a3-0088-4445-82cc-53794e1b8f1a", + "id": "c7114af7-2ac6-413f-8cd5-62f22d8734cf", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -131744,7 +131744,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37f2bdb5-4b17-4d8b-8a0d-8e77a87be47b", + "id": "e0bf84fb-362e-451e-853a-263df3211be3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -131789,7 +131789,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d8248c33-cf1b-400e-8e59-cee7463f28c3", + "id": "279ce9c5-d55b-4fcf-b379-d9956a3a79c9", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -131834,7 +131834,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93f0bb5e-a064-49fc-abc3-dfd4aca5dfac", + "id": "339b2edd-cf45-4ada-8f27-9c49674274bd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -131879,7 +131879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c253c7e-776a-49f0-b456-74b815cc6f52", + "id": "7a168b41-7b9f-4c2a-a7ba-aa4377d5b480", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -131936,7 +131936,7 @@ "description": "Use this API to implement search attribute configuration functionality, along with [Search](https://developer.sailpoint.com/docs/api/v3/search).\nWith this functionality in place, administrators can create custom search attributes that and run extended searches based on those attributes to further narrow down their searches and get the information and insights they want. \n\nIdentity Security Cloud (ISC) enables organizations to store user data from across all their connected sources and manage the users' access, so the ability to query and filter that data is essential. \nIts search goes through all those sources and finds the results quickly and specifically. \n\nThe search query is flexible - it can be very broad or very narrow. \nThe search only returns results for searchable objects it is filtering for. \nThe following objects are searchable: identities, roles, access profiles, entitlements, events, and account activities. \nBy default, no filter is applied, so a search for \"Ad\" returns both the identity \"Adam.Archer\" as well as the role \"Administrator.\"\n\nUsers can further narrow their results by using ISC's specific syntax and punctuation to structure their queries. \nFor example, the query \"attributes.location:austin AND NOT manager.name:amanda.ross\" returns all results associated with the Austin location, but it excludes those associated with the manager Amanda Ross.\nRefer to [Building a Search Query](https://documentation.sailpoint.com/saas/help/search/building-query.html) for more information about how to construct specific search queries. \n\nRefer to [Using Search](https://documentation.sailpoint.com/saas/help/search/index.html) for more information about ISC's search and its different possibilities. \n\nWith Search Attribute Configuration, administrators can create, manage, and run searches based on the attributes they want to search. \n", "item": [ { - "id": "12ed6c4a-e78d-4d02-bde8-77ed295ea844", + "id": "d60328d6-e457-43b4-a6a5-0f40ef4b299e", "name": "Create Extended Search Attributes", "request": { "name": "Create Extended Search Attributes", @@ -131979,7 +131979,7 @@ }, "response": [ { - "id": "f27e8a09-aa51-4538-8875-4979f65ea13f", + "id": "1d04cc9b-a42f-41af-bdf1-016da7db03db", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -132036,7 +132036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7f1dd8f-2b8f-4f3a-acdb-6cf912d9a0bf", + "id": "0d286b63-e54e-4087-abe3-ff2221455bad", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132093,7 +132093,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90379d20-2235-42da-b3a1-500634b58ee0", + "id": "964faad9-6bc4-4fa4-93ae-6f8cff11a211", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132150,7 +132150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9feac95-7e84-42c1-a64b-33dd2ec4526f", + "id": "e7073e4c-6d14-4860-9faa-72031bc9f0cf", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132207,7 +132207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "05c26931-08eb-4d2c-873a-76d90357392d", + "id": "fe2a64d3-4902-4d07-8607-687e3b88d377", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132264,7 +132264,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7d4cd3aa-8b66-4dad-a2a2-2fac81b28a91", + "id": "2efa4ae8-4b1a-48d4-9bbc-a3808ec0de32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132321,7 +132321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c679bdb-f949-463e-9b85-762b5a55ddcb", + "id": "eaafe425-d2e9-4376-a819-29f48514e97d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132384,7 +132384,7 @@ } }, { - "id": "ecd1079f-d302-418c-819d-1c2f470820e3", + "id": "7779cd23-8405-49e9-a0e5-3eef1f593912", "name": "List Extended Search Attributes", "request": { "name": "List Extended Search Attributes", @@ -132414,7 +132414,7 @@ }, "response": [ { - "id": "e43455ea-ca06-4cda-93d0-4783dae785c6", + "id": "fa5b80d4-4fef-424d-8407-8369bbde48e4", "name": "List of attribute configurations in IdentityNow.", "originalRequest": { "url": { @@ -132458,7 +132458,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd6e78a0-3584-458c-8c03-abeb8fecaf2f", + "id": "40a5852f-13b2-4412-b129-cd6ea2f106aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132502,7 +132502,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49431ec8-41df-4de6-b5e4-2f24b42765d5", + "id": "1406bc87-b483-4519-8a5a-2667068f263d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132546,7 +132546,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30a8f2bc-ce15-4830-aa76-2148935c89c8", + "id": "2a87a3e4-55dd-4e98-aa3d-4c65710d0546", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132590,7 +132590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "825467d4-3901-40e7-b498-1d2a120a6eea", + "id": "5e059fc2-7dd6-4915-9154-e831afe7d963", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -132634,7 +132634,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cec89ef2-35d9-48af-8d4e-4942ae036d32", + "id": "fdba5883-f5ab-4121-9a22-5950f7b82904", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -132684,7 +132684,7 @@ } }, { - "id": "686f4f5e-d239-4101-a07c-624aade064fc", + "id": "afee655b-ac78-4fc4-be72-d83d0311466e", "name": "Get Extended Search Attribute", "request": { "name": "Get Extended Search Attribute", @@ -132726,7 +132726,7 @@ }, "response": [ { - "id": "87f2015c-cc90-431c-ba8f-5de1f40afffa", + "id": "8589e543-e517-4fec-8a6c-48e8887e1cec", "name": "Specific attribute configuration in ISC.", "originalRequest": { "url": { @@ -132771,7 +132771,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa695689-5a15-4925-b6e8-d726683af4c8", + "id": "da633c60-1abb-48e3-97ef-604ae38a6527", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -132806,7 +132806,7 @@ "_postman_previewlanguage": "text" }, { - "id": "975a0520-598a-4143-90a9-5a445fc7c582", + "id": "a7af05fe-b2c3-4eef-8389-fbb83489a0ab", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -132851,7 +132851,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ac01da-d34a-408d-a0ca-76df6b8751c5", + "id": "ed0a1af4-6782-49cc-9da2-f2eabcad4356", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -132896,7 +132896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6bfbb08-5ddb-4c94-bf4a-a27c5c3cdc83", + "id": "cf27b19f-cec7-49f9-844c-0c14fc6c675b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -132941,7 +132941,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87c26324-7f58-42b2-8608-1085c99de2a9", + "id": "2824feca-665d-4cb1-9cd8-c4ad8d9a3265", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -132986,7 +132986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60728a19-fee3-45d4-b520-e83f49e820b2", + "id": "6641ebdf-4bd5-448b-9e02-4bb1abb561d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133031,7 +133031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09b5de44-7fec-49ff-9263-b405b195be9b", + "id": "b2a6c966-3eac-4c6f-940e-5d6b9267fc94", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133082,7 +133082,7 @@ } }, { - "id": "e4525acb-cd15-4eac-88fd-0c27343d4576", + "id": "c8e318b2-d7da-49f0-af1e-5ed03851f112", "name": "Delete Extended Search Attribute", "request": { "name": "Delete Extended Search Attribute", @@ -133124,7 +133124,7 @@ }, "response": [ { - "id": "7ac2a8a8-09fa-4997-9c6e-2990bd175748", + "id": "b4cf88ae-217d-40e5-8d6d-ca590524ee9f", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -133159,7 +133159,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8eddb750-6649-44b5-a299-0cbe91cec43c", + "id": "422eb333-4194-4237-b28a-719e16135138", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133204,7 +133204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e79ea9a8-2347-4c43-bfac-d2e66c9207a5", + "id": "545244b7-4731-4ab1-a075-74aa7c351a21", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133249,7 +133249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c849029f-3dc8-4a50-94a4-0c3a2cac94f1", + "id": "106326e8-a688-4175-bed0-04434e0b3db2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133294,7 +133294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0a9b90a-110d-4745-8506-90cda6977224", + "id": "3b3d455a-a68c-4a0f-8699-d05cc9a2d34b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133339,7 +133339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b1c4c19-2a3d-43c3-b71d-f5d44f2cb4af", + "id": "bbe57bae-6ecc-4165-a9c3-533ec5dbb6d5", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133384,7 +133384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a094f058-41a8-4f1d-b222-44e8d75438e2", + "id": "7439d59a-384f-4390-af73-7be0a181833c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133435,7 +133435,7 @@ } }, { - "id": "a9e71b1a-1c1b-44a0-81b1-07fd965fe632", + "id": "932f572c-40b8-4978-9066-8b1dbb708afd", "name": "Update Extended Search Attribute", "request": { "name": "Update Extended Search Attribute", @@ -133490,7 +133490,7 @@ }, "response": [ { - "id": "13c640af-733a-4819-9ae7-0acd35ae7dd4", + "id": "8d51d1fb-0b48-4abc-a6e2-48cb31794c03", "name": "The updated search attribute configuration.", "originalRequest": { "url": { @@ -133548,7 +133548,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d96f4e5-68d4-4602-9580-adb7c3150ffe", + "id": "de741225-3e8d-4872-a1c3-63c1b887240b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -133606,7 +133606,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c6e2fc5-5b50-45b9-ab54-a724aa19853b", + "id": "8d36dab2-9723-44ec-8f84-01ae0b31b5d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -133664,7 +133664,7 @@ "_postman_previewlanguage": "json" }, { - "id": "80148de3-e1f2-456b-925e-e6380f092c72", + "id": "3d54893d-def0-41bb-a7d4-5a4f6339a7e3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -133722,7 +133722,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be388f73-9191-4118-a05c-4be2e5a23992", + "id": "1160eb6b-2e10-4419-a6a8-c867e011fa15", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -133780,7 +133780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ac653d2f-65d5-4123-b3c3-c0ad101a88b0", + "id": "874aa6d3-02f8-4df4-ba4c-aabfb70d3922", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -133838,7 +133838,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e10d872-31aa-4a33-b25c-7a3faba8129a", + "id": "a7368402-b058-4ec2-8cbf-7d9f7b23f8b5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -133908,7 +133908,7 @@ "description": "Use this API to implement and customize access request segment functionality. \nWith this functionality in place, administrators can create and manage access request segments. \nSegments provide organizations with a way to make the access their users have even more granular - this can simply the access request process for the organization's users and improves security by reducing the risk of overprovisoning access. \n\nSegments represent sets of identities, all grouped by specified identity attributes, who are only able to see and access the access items associated with their segments.\nFor example, administrators could group all their organization's London office employees into one segment, \"London Office Employees,\" by their shared location. \nThe administrators could then define the access items the London employees would need, and the identities in the \"London Office Employees\" would then only be able to see and access those items.\n\nIn Identity Security Cloud, administrators can use the 'Access' drop-down menu and select 'Segments' to reach the 'Access Requests Segments' page. \nThis page lists all the existing access request segments, along with their statuses, enabled or disabled. \nAdministrators can use this page to create, edit, enable, disable, and delete segments. \nTo create a segment, an administrator must provide a name, define the identities grouped in the segment, and define the items the identities in the segment can access.\nThese items can be access profiles, roles, or entitlements. \n\nWhen administrators use the API to create and manage segments, they use a JSON expression in the `visibilityCriteria` object to define the segment's identities and access items. \n\nRefer to [Managing Access Request Segments](https://documentation.sailpoint.com/saas/help/requests/segments.html) for more information about segments in Identity Security Cloud.\n", "item": [ { - "id": "cb159310-c56f-4d3b-8ebd-80357611b583", + "id": "c8b1023b-b798-448f-9337-604dfb3b78d2", "name": "Create Segment", "request": { "name": "Create Segment", @@ -133950,7 +133950,7 @@ }, "response": [ { - "id": "f525f3f1-4651-428f-b70a-f23e29fdb211", + "id": "bf999a05-b00a-4be6-872a-e4f7db9e62b1", "name": "Segment created", "originalRequest": { "url": { @@ -134006,7 +134006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3ae0da9-8e9b-4fb4-b353-f904ae6b4bc2", + "id": "9b58efed-2943-4aab-b9ca-9550eb1bb852", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134062,7 +134062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c42bebc7-1708-4f61-8673-2b415617cd3d", + "id": "3e33b33a-367a-4bcc-99c0-0f6845c0bb93", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134118,7 +134118,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d879a1e-7edb-4170-8532-7c1951dc5643", + "id": "b0613902-bbcc-47b4-a6e1-d5eda4b72184", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134174,7 +134174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6ea74371-d765-4686-be15-32460560e5f4", + "id": "e6203ac8-7bb7-45d9-8347-2c46df800283", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134230,7 +134230,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6747aa4e-6088-459d-b77f-89a59696bcf1", + "id": "686c91f0-5af9-43ad-bac0-645b437fd684", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134292,7 +134292,7 @@ } }, { - "id": "e71f17c6-db4c-46a0-96d4-22dddfa4c9c7", + "id": "79db8aee-418a-4804-9700-3793a05b3906", "name": "List Segments", "request": { "name": "List Segments", @@ -134349,7 +134349,7 @@ }, "response": [ { - "id": "23bd2d00-fd2f-44b4-915e-24f4620f7224", + "id": "18033749-b074-4389-be92-01aa177a8c0c", "name": "List of all segments", "originalRequest": { "url": { @@ -134420,7 +134420,7 @@ "_postman_previewlanguage": "json" }, { - "id": "157da4f7-bae0-4040-90a8-89bf6bd92cbc", + "id": "768b8d4b-78fb-451a-89d1-082203821668", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134491,7 +134491,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7588a542-e7f2-4ca1-954b-87574eb17d65", + "id": "0b732b90-473d-4e66-bb62-499e8b375757", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134562,7 +134562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d680a2a2-7ca3-423a-8eb7-fd774ef26aa4", + "id": "6ca38cf9-32a2-4cd0-90e9-dc54850ea7e6", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134633,7 +134633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3e66b99-4649-4b48-8481-9427b3860f2d", + "id": "664a569b-5c76-4fcd-97c5-d7c2055f99e8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -134704,7 +134704,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6673cd3a-c345-4959-a0dc-73df0833f2e2", + "id": "d59aed0e-4712-41af-a795-a7338cb05491", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -134781,7 +134781,7 @@ } }, { - "id": "eb83862f-d6e0-42f8-b789-1f9f6d7e2551", + "id": "d719e3c6-02cb-482d-84c6-66eec1b4bc6d", "name": "Get Segment by ID", "request": { "name": "Get Segment by ID", @@ -134822,7 +134822,7 @@ }, "response": [ { - "id": "6dcc5995-d47f-48d8-ac13-0190ac10aea1", + "id": "a37ad99a-99f3-4eec-af45-4e935283e793", "name": "Segment", "originalRequest": { "url": { @@ -134866,7 +134866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d503da68-23f7-4b50-821e-9c7dbe3cfa21", + "id": "bc801f8d-6839-4ac3-aea9-7fa0a39c7fde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -134910,7 +134910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6dcc94a4-fa93-4573-adc2-5b0851c87cd4", + "id": "d8b927e4-5b73-414f-a5cb-6bf42ed96ada", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -134954,7 +134954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27d16030-4ca4-4525-93e4-e63c33c4f26c", + "id": "eb56c396-9d09-4e52-bd6e-b72bde6ac128", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -134998,7 +134998,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b25aa02b-1762-435b-87ef-9ea4589c9f19", + "id": "0ff10a24-502c-4378-8175-a97c02cc6d60", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135042,7 +135042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cb57e7e-d731-4771-9992-78794a189405", + "id": "61cb9d92-5dfc-497d-a7e0-66d6cb7f26a2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135086,7 +135086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0dc7471-ce7f-4e04-9bf8-d09912a55eb5", + "id": "5c295ab4-ee9b-420d-ad43-b6bbbfcd5cc1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135136,7 +135136,7 @@ } }, { - "id": "b3d86f66-64de-4209-934d-b2151760fc54", + "id": "bccfd073-280a-49f0-acfd-49c9b0c30a9a", "name": "Delete Segment by ID", "request": { "name": "Delete Segment by ID", @@ -135177,7 +135177,7 @@ }, "response": [ { - "id": "975369f3-935e-4049-9cd9-bcdbf839707c", + "id": "f5942d16-dc6b-4478-a862-b63a42672bfd", "name": "No content.", "originalRequest": { "url": { @@ -135211,7 +135211,7 @@ "_postman_previewlanguage": "text" }, { - "id": "8990a6bc-3c3a-4b2a-8e98-009583b1ca12", + "id": "b2e18423-9c1a-4e0f-8e27-15195742ee67", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135255,7 +135255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9a6aafc2-cee4-4e7a-8a53-1982ada01022", + "id": "98ec0e7b-2735-48c3-af41-cfa5ed630701", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135299,7 +135299,7 @@ "_postman_previewlanguage": "json" }, { - "id": "959127fa-d78a-4f9c-b9fc-e687a48a2048", + "id": "dc87f83a-728f-4dec-a73f-bad2b10d3ace", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135343,7 +135343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f0c6bca-0734-47b5-b71f-ae6c874e6516", + "id": "1e326a7a-53a7-4d79-bddc-9aee17fa2bc1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135387,7 +135387,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f64841f-ae6b-48dd-a7a3-c2b66acaaaf8", + "id": "e9c08659-c11a-4a4e-ad60-5fc6d341382c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135431,7 +135431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "607270ea-5851-4931-865b-13cdb03dfa25", + "id": "96672f4e-cd30-482b-9c4f-202ae4b3d463", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135481,7 +135481,7 @@ } }, { - "id": "59815a2f-60bd-4004-bc84-de6bfd1bd671", + "id": "552c8dd6-676a-4b1d-a751-e01e233cf3f2", "name": "Update Segment", "request": { "name": "Update Segment", @@ -135535,7 +135535,7 @@ }, "response": [ { - "id": "c3766888-5f68-4c6d-996d-cdcf834141b8", + "id": "9a429e39-ca06-4487-b397-000e4864dcee", "name": "Indicates the PATCH operation succeeded, and returns the segment's new representation.", "originalRequest": { "url": { @@ -135592,7 +135592,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6cba12ce-b938-4c84-bfdd-a12a60ecd6c2", + "id": "5f6b0ccd-16d0-4b29-9f26-67c2ac5ef4aa", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -135649,7 +135649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9b7a52f-3849-41aa-9f15-55c0d1d097c2", + "id": "cf28cd90-991f-4cd4-b45d-1d504071d163", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -135706,7 +135706,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bfa842c-8962-4de6-9f72-d0a5a0f7a968", + "id": "71451091-302b-4169-9d26-0144b62fae4b", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -135763,7 +135763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "85a4e5b7-f0e0-48eb-aee4-827e0a3c6c43", + "id": "0b9400cf-90c6-47df-b05a-4c095221292f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -135820,7 +135820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f5ef567-d5a8-4688-8174-caf4ae7003d6", + "id": "cc6bcd58-96d1-40d3-9b1d-d49888664e58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -135877,7 +135877,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1491b36b-050c-46da-932e-4b116d45d548", + "id": "f04a4660-f752-4470-8384-d1c37ea6dad8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -135946,7 +135946,7 @@ "description": "Use this API to build an integration between Identity Security Cloud and a service desk ITSM (IT service management) solution. \nOnce an administrator builds this integration between Identity Security Cloud and a service desk, users can use Identity Security Cloud to raise and track tickets that are synchronized between Identity Security Cloud and the service desk. \n\nIn Identity Security Cloud, administrators can create a service desk integration (sometimes also called an SDIM, or Service Desk Integration Module) by going to Admin > Connections > Service Desk and selecting 'Create.'\n\nTo create a Generic Service Desk integration, for example, administrators must provide the required information on the General Settings page, the Connectivity and Authentication information, Ticket Creation information, Status Mapping information, and Requester Source information on the Configure page. \nRefer to [Integrating SailPoint with Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html) for more information about the process of setting up a Generic Service Desk in Identity Security Cloud.\n\nAdministrators can create various service desk integrations, all with their own nuances. \nThe following service desk integrations are available: \n\n- [Atlassian Cloud Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_cloud/help/integrating_jira_cloud_sd/introduction.html)\n\n- [Atlassian Server Jira Service Management](https://documentation.sailpoint.com/connectors/atlassian/jira_server/help/integrating_jira_server_sd/introduction.html)\n\n- [BMC Helix ITSM Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_ITSM_sd/help/integrating_bmc_helix_itsm_sd/intro.html)\n\n- [BMC Helix Remedyforce Service Desk](https://documentation.sailpoint.com/connectors/bmc/helix_remedyforce_sd/help/integrating_bmc_helix_remedyforce_sd/intro.html)\n\n- [Generic Service Desk](https://documentation.sailpoint.com/connectors/generic_sd/help/integrating_generic_service_desk/intro.html)\n\n- [ServiceNow Service Desk](https://documentation.sailpoint.com/connectors/servicenow/sdim/help/integrating_servicenow_sdim/intro.html)\n\n- [Zendesk Service Desk](https://documentation.sailpoint.com/connectors/zendesk/help/integrating_zendesk_sd/introduction.html)\n", "item": [ { - "id": "1e2f6289-a831-4a8b-af1b-9260ee0bed9a", + "id": "4ccb43c0-4b45-44c2-860c-b72c21c3f97e", "name": "List existing Service Desk integrations", "request": { "name": "List existing Service Desk integrations", @@ -136021,7 +136021,7 @@ }, "response": [ { - "id": "828e3532-2a0f-466a-91d6-d9e023e4f839", + "id": "bb866002-9e5b-4125-84c0-d85fde89b9f3", "name": "List of ServiceDeskIntegrationDto", "originalRequest": { "url": { @@ -136110,7 +136110,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3542c938-6d11-4901-b4ac-f7931eba46da", + "id": "02ebe74e-1248-46be-9b9e-4924fc56c711", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136199,7 +136199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "970c121e-fc34-4c67-a73a-ad0f75fd75d5", + "id": "be77c145-b91b-406c-9fa1-0fa5ed0e6bdc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136288,7 +136288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c0cc85b9-537a-4cb1-9be3-0672e660a8b8", + "id": "42c25265-69bf-44ee-a27c-6d4bcc7c8c0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136377,7 +136377,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4abb24f8-c62d-437a-8834-cc3872126a28", + "id": "73b9c979-143b-406e-aed2-8e51efc5f854", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136466,7 +136466,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5084091c-8f52-40e9-9ccc-ff428bfc02e9", + "id": "7b7efa94-d898-4d57-91c1-2b3f7ce9f7c4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -136555,7 +136555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd47cf79-e999-4303-9878-b990c551f7fd", + "id": "f63faca9-089d-47e9-95d3-b446b1ac201c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -136650,7 +136650,7 @@ } }, { - "id": "3e00a5d6-47b6-4be0-8099-8942434f7bee", + "id": "4d8145eb-1912-49ee-90c9-8e29e3961b3c", "name": "Create new Service Desk integration", "request": { "name": "Create new Service Desk integration", @@ -136692,7 +136692,7 @@ }, "response": [ { - "id": "213e8c4f-7245-4e21-ac29-bd520d75dc07", + "id": "240b0371-c48f-4e3c-9f76-52169d31d6db", "name": "Details of the created integration", "originalRequest": { "url": { @@ -136748,7 +136748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0f76de69-8e8a-4c27-94b3-813c9cfb623f", + "id": "588229f3-19fb-4d6b-b3c4-66e8c2d5d430", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -136804,7 +136804,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ca86601b-a6e1-4890-ba1a-0fe282544680", + "id": "099a3917-1541-4379-90f1-e0df7bb76edc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -136860,7 +136860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "729224c5-95e5-4dee-af18-e20ab003307d", + "id": "cc2f7b65-b25b-478a-8819-96a51cb292d2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -136916,7 +136916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed2b55d2-2717-4b14-86cc-911d132a5557", + "id": "c707c1f0-060e-403d-a918-bb6404e7e588", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -136972,7 +136972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b35985fd-036f-4794-bab9-391bf286ad1b", + "id": "4fb357d2-e4ee-4aaa-b540-f1d6e5d95c00", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137028,7 +137028,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1b0809d-dd88-4ef8-949c-a693db3f12cc", + "id": "a17cdc58-09c7-49de-86a3-c11d4bd55932", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137090,7 +137090,7 @@ } }, { - "id": "f8013ad6-eee3-45ca-a988-614a7e912ed3", + "id": "9db5885b-8d05-4710-a9a0-1b038f5143a9", "name": "Get a Service Desk integration", "request": { "name": "Get a Service Desk integration", @@ -137131,7 +137131,7 @@ }, "response": [ { - "id": "32acfda4-6097-4958-bb41-ceb60649d633", + "id": "62357ac5-caac-4229-a6db-4ad93dbe8466", "name": "ServiceDeskIntegrationDto with the given ID", "originalRequest": { "url": { @@ -137175,7 +137175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4530489b-a3af-42f4-b3a1-abae233f2579", + "id": "459cf029-db33-401a-9594-cb0eda76ee6a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137219,7 +137219,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47e9c76c-21c3-4883-ac46-9b657b50a1ec", + "id": "75196ad2-005c-41ff-9d81-3aeb1846439c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137263,7 +137263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d08699bd-f513-4725-b961-231cb4e20991", + "id": "a8f27d8c-e367-4552-ba8e-65f26f3d0fb8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137307,7 +137307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c5c695c-fb3c-4901-a1b2-375280905bf5", + "id": "437ed24b-acb1-4c78-885b-0f095d66774f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137351,7 +137351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "811fed98-b4fa-4759-b442-a1cb42bac9da", + "id": "7fff57d5-a4ef-4a78-89dd-d431d811b9b3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137395,7 +137395,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3284f5e1-43a0-4089-8f4d-dc220dd4aaef", + "id": "00e2b833-2eda-45d6-bf1f-d5e7a5d1ebf8", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137445,7 +137445,7 @@ } }, { - "id": "605c6e6e-c561-4c2d-821b-7c808f572bf1", + "id": "a034ca1a-0e0f-42be-94be-4e06e53bbe99", "name": "Update a Service Desk integration", "request": { "name": "Update a Service Desk integration", @@ -137499,7 +137499,7 @@ }, "response": [ { - "id": "79aaf56a-71e0-4390-ade6-c939c7d6b1df", + "id": "c5c53461-9657-46b2-84fa-ebf328af6d14", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -137556,7 +137556,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11ba3074-e23e-42b7-83e8-d1202afccc8a", + "id": "4267a226-3c1e-45af-bc4e-29268255bfd9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -137613,7 +137613,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e9a721c-6d48-4b48-b937-f60dbc3192eb", + "id": "0ebbd740-b896-4061-8bb4-170f313a39a1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -137670,7 +137670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27dc5341-809e-49a0-a818-81c438de0434", + "id": "82dd07e2-abe5-4a1d-9de0-b6229b6f0cf1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -137727,7 +137727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cbe11da8-488c-4144-bb2e-99a15a2db94a", + "id": "79fa7391-dca1-4157-8b33-45a8252291c1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -137784,7 +137784,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99cfd6e3-e4cb-4dcb-9a77-80aac3027065", + "id": "7447585d-697d-4b5b-af52-51283208ac20", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -137841,7 +137841,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25bceaa9-79b9-4bfc-adb1-c87e09c642de", + "id": "bdbf4b04-5f12-4846-86b4-904e2c928259", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -137904,7 +137904,7 @@ } }, { - "id": "7c831416-dcd8-45d4-80bb-3fe94e4410b5", + "id": "21adfc77-4ddd-44f9-867f-62a18c096028", "name": "Delete a Service Desk integration", "request": { "name": "Delete a Service Desk integration", @@ -137945,7 +137945,7 @@ }, "response": [ { - "id": "a229e4e1-0eb1-4194-87f3-6775775e27eb", + "id": "c0fe3726-ac1c-4765-80c2-27ee8ea4e2f1", "name": "Service Desk integration with the given ID successfully deleted", "originalRequest": { "url": { @@ -137979,7 +137979,7 @@ "_postman_previewlanguage": "text" }, { - "id": "5bfd544f-062a-4d32-bbf0-d3f2009db8b6", + "id": "fd44d60b-11ea-4859-8da2-b12dc19845bd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138023,7 +138023,7 @@ "_postman_previewlanguage": "json" }, { - "id": "faba8d87-2acb-4dad-b455-386ab98c4c82", + "id": "57d15313-c9aa-4952-b50d-cb0df1cc646c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138067,7 +138067,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5821f8d4-9570-4870-bd7f-a2085cb149ca", + "id": "339a2fcf-d401-4036-8e7f-42c62fc816a2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138111,7 +138111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43745474-308f-47f7-b70a-318623c29635", + "id": "e5503d30-8a5e-4c80-bc14-cf7212be6aa4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138155,7 +138155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47694291-5eb4-4b78-b1c4-685bee24160a", + "id": "6179d7ac-9d44-406c-af4c-6ff97c50abde", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138199,7 +138199,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd9c8717-ab40-4733-854e-9c4b924e1429", + "id": "fd618028-c62a-4adc-93a4-18d291844a07", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138249,7 +138249,7 @@ } }, { - "id": "b7e27bc8-5c87-4d83-bdcf-f199ad5a490f", + "id": "27ba5d8a-9c7b-45d8-bff3-22477b2226b5", "name": "Patch a Service Desk Integration", "request": { "name": "Patch a Service Desk Integration", @@ -138303,7 +138303,7 @@ }, "response": [ { - "id": "b7647673-2ae5-4bf4-be1e-a03d46399fe1", + "id": "2c18c5cd-c5ff-423c-a074-67695cf89c08", "name": "ServiceDeskIntegrationDto as updated", "originalRequest": { "url": { @@ -138360,7 +138360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f8be60a-bb91-4101-9d7a-e2e70891c406", + "id": "c2786a3f-eaeb-4eeb-90d0-888bfd25430d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138417,7 +138417,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4717ebf-e1dd-4a28-a891-a8f17368b641", + "id": "ba601e2e-61a5-445c-b174-6f38ee663523", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138474,7 +138474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "842dbf30-2c1e-432e-944c-d2648670ff5f", + "id": "d3a8a225-55b5-47cc-9918-206e2b382ebb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138531,7 +138531,7 @@ "_postman_previewlanguage": "json" }, { - "id": "61c4d803-3720-4393-a135-cd45bbc49c33", + "id": "ea25d3f7-6ec5-44a7-a77c-4dbd3ae65605", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138588,7 +138588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13517f3c-02c0-429f-b81e-2c7d6f37688d", + "id": "67a99a0c-2e9a-44db-a0ac-0e2687f7c527", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -138645,7 +138645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76db8c41-a167-42a4-bf87-1bd953b7964d", + "id": "d6a0ec21-2763-48f4-83e7-b54df6e58d3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -138708,7 +138708,7 @@ } }, { - "id": "63bb5687-ebc3-411f-8f9e-f1d5e673a675", + "id": "02811b4c-8437-421f-8704-c45e6d617a50", "name": "List Service Desk integration types", "request": { "name": "List Service Desk integration types", @@ -138738,7 +138738,7 @@ }, "response": [ { - "id": "f0e5690d-7953-47a8-a11e-82227abbb4fe", + "id": "68657736-efcb-4250-97ec-9d7ae93f2f20", "name": "Responds with an array of the currently supported Service Desk integration types.", "originalRequest": { "url": { @@ -138782,7 +138782,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a26f6e86-6a7e-4c9a-82d0-b717d4e834b3", + "id": "b73350cb-2b85-4f4a-94e9-9b29f6a71ae9", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -138826,7 +138826,7 @@ "_postman_previewlanguage": "json" }, { - "id": "09aa6575-6096-43ba-bec5-eac82c9fceb0", + "id": "27cba35d-cc58-415a-88c1-ed0d47f66976", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -138870,7 +138870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f558b5b2-f9b3-4b98-8f87-4229af3a40a7", + "id": "d52c1ac8-9688-47e1-b828-34bd040ceda5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -138914,7 +138914,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5181874d-5c5a-433f-b263-d414a5ac978e", + "id": "0871cc53-1a7d-4994-9861-d13098ce1ee1", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -138958,7 +138958,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df7a1d8e-206c-48ca-8c65-d746e8ef493d", + "id": "c277a8ad-812e-47d4-92a4-02c8c8241be8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139002,7 +139002,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0979f0b0-d1e2-411e-bc83-48b1fa9029d8", + "id": "b09e6a50-776f-4f9f-8386-fc2a19890011", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139052,7 +139052,7 @@ } }, { - "id": "760b9375-055c-4225-bc43-cbc0fcd36dff", + "id": "cb624705-37f3-446b-9d69-52a1f0e8b482", "name": "Service Desk integration template by scriptName", "request": { "name": "Service Desk integration template by scriptName", @@ -139094,7 +139094,7 @@ }, "response": [ { - "id": "143bd704-021a-4bf3-8c2b-d0a9bad63631", + "id": "dd3e4fd0-f552-47d1-8dcb-12d599998579", "name": "Responds with the ServiceDeskIntegrationTemplateDto with the specified scriptName.", "originalRequest": { "url": { @@ -139139,7 +139139,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9dc524f-f7ae-43c3-a088-699108ce1092", + "id": "08eba50b-438e-41d5-8b58-ceaf4ea4ca2b", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139184,7 +139184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09842cb-ec54-4409-999a-a55ea6055661", + "id": "63c8b87b-ee87-4333-8d72-10fea289875f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139229,7 +139229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa832b4d-805c-4a21-a9b9-0ffb76962daf", + "id": "e6f9ff64-905f-427f-8ce1-c9b920370092", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139274,7 +139274,7 @@ "_postman_previewlanguage": "json" }, { - "id": "620fec49-207c-4978-9bce-8fcd4ddadc9d", + "id": "de8e4dce-5836-432a-9635-774beddd4450", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139319,7 +139319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00c722bd-b628-45ae-babb-89273f7c0fd7", + "id": "9a5842de-c5df-4d9a-8158-afa67da35323", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139364,7 +139364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33a81386-46cc-45ad-99a9-8207536340b3", + "id": "6a53b897-6a48-41c0-8771-6d2b40adb887", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139415,7 +139415,7 @@ } }, { - "id": "e88b56ff-c1d1-48ef-850a-226e59c9a687", + "id": "1b647307-6351-480d-829a-f3ffb8a9dbf6", "name": "Get the time check configuration", "request": { "name": "Get the time check configuration", @@ -139445,7 +139445,7 @@ }, "response": [ { - "id": "5b482cbc-77bd-4140-a29c-4c68fd300082", + "id": "090a5e38-21af-430d-9773-241060cb2572", "name": "QueuedCheckConfigDetails containing the configured values", "originalRequest": { "url": { @@ -139484,12 +139484,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9f254a11-53ca-421a-b015-471eaf9f6e64", + "id": "5b75d8d2-f961-4e53-a7db-8ad6fdad0b6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139533,7 +139533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52048a8a-92c1-45fa-93c9-77a3e96a2aab", + "id": "a14aad4e-d05f-4183-ab73-90fec52a3976", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139577,7 +139577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3db205e-1f11-48ba-96e3-9ff3bd48209a", + "id": "2df6bb6a-31b3-4082-9079-818946ad03c3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -139621,7 +139621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "956babc5-26bc-4f33-a323-2d2d23000b2a", + "id": "c7b4245c-ade1-49bd-a55c-4ef2ba4a5a3c", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -139665,7 +139665,7 @@ "_postman_previewlanguage": "json" }, { - "id": "46d1fb87-d6e7-41b0-9093-c30cd646e085", + "id": "152eb2dc-fd38-4fe1-873c-8b474fe44e16", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -139709,7 +139709,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e5c1349-0e0f-4881-ab89-182ffbad5be3", + "id": "0d2b559f-dc46-42c6-a583-7e372c3b0aa0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -139759,7 +139759,7 @@ } }, { - "id": "9f218dd9-88c0-49da-a3e4-f31abe26e165", + "id": "be0ccf26-41ee-4a8d-82e7-1588709e8413", "name": "Update the time check configuration", "request": { "name": "Update the time check configuration", @@ -139791,7 +139791,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -139802,7 +139802,7 @@ }, "response": [ { - "id": "00f56234-acbf-4c94-affa-595c0ea091b7", + "id": "127625dd-29b3-4115-b569-432582f7156a", "name": "QueuedCheckConfigDetails as updated", "originalRequest": { "url": { @@ -139837,7 +139837,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -139854,12 +139854,12 @@ "value": "application/json" } ], - "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "body": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "26264cdd-b6db-4485-af7d-d6fdc5fc5915", + "id": "a082954d-c0c3-4b68-a737-3a76da480f55", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -139894,7 +139894,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -139916,7 +139916,7 @@ "_postman_previewlanguage": "json" }, { - "id": "549f7567-3e49-4bcc-bda1-d737a94a9c11", + "id": "9b63e8be-ca92-4bbd-8113-709405802ba4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -139951,7 +139951,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -139973,7 +139973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54809e3a-205b-428c-a840-507720c1fc79", + "id": "7bd3f88e-0be7-4f49-a0c2-ef0803fca547", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -140008,7 +140008,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -140030,7 +140030,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04f5c57f-3b2a-4a05-9a73-bcbc51cf11c1", + "id": "d9f538db-4092-4c3b-8ee8-9d6360cfc028", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -140065,7 +140065,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -140087,7 +140087,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52155e34-941c-416e-96ae-4847971cd9b5", + "id": "f68afab8-6a82-48cf-9eef-ce2286a85831", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -140122,7 +140122,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -140144,7 +140144,7 @@ "_postman_previewlanguage": "json" }, { - "id": "847e6a5b-788c-4be0-8ab2-136201ff9c42", + "id": "02fbacf7-8e13-4579-9988-0ebf073fc347", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -140179,7 +140179,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"dolore est esse\",\n \"provisioningMaxStatusCheckDays\": \"in anim\"\n}", + "raw": "{\n \"provisioningStatusCheckIntervalMinutes\": \"laboris deserunt con\",\n \"provisioningMaxStatusCheckDays\": \"officia\"\n}", "options": { "raw": { "headerFamily": "json", @@ -140213,7 +140213,7 @@ "description": "Use this API to implement and manage \"separation of duties\" (SOD) policies. \nWith SOD policy functionality in place, administrators can organize the access in their tenants to prevent individuals from gaining conflicting or excessive access. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nTo create SOD policies in Identity Security Cloud, administrators use 'Search' and then access 'Policies'.\nTo create a policy, they must configure two lists of access items. Each access item can only be added to one of the two lists.\nThey can search for the entitlements they want to add to these access lists.\n\n>Note: You can have a maximum of 500 policies of any type (including general policies) in your organization. In each access-based SOD policy, you can have a maximum of 50 entitlements in each access list. \n\nOnce a SOD policy is in place, if an identity has access items on both lists, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies. \n\nTo create a subscription to a SOD policy in Identity Security Cloud, administrators use 'Search' and then access 'Layers'.\nThey can create a subscription to the policy and schedule it to run at a regular interval. \n\nRefer to [Managing Policies](https://documentation.sailpoint.com/saas/help/sod/manage-policies.html) for more information about SOD policies. \n\nRefer to [Subscribe to a SOD Policy](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html#subscribe-to-an-sod-policy) for more information about SOD policy subscriptions.\n", "item": [ { - "id": "cb58863f-b0a8-4577-862a-f8a2c5ef9dcf", + "id": "06b50c27-93a3-4b1f-b0d6-66ddb01fe4c9", "name": "Create SOD policy", "request": { "name": "Create SOD policy", @@ -140255,7 +140255,7 @@ }, "response": [ { - "id": "7509467b-8e91-44bb-80fb-61ec5f66ac3a", + "id": "fd10c544-1ee0-4dfc-baf9-60f45fde5e0e", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -140311,7 +140311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03945cb6-7663-4389-94d5-e1840d9df927", + "id": "add14e5f-e44e-472b-b37a-58c1e9384efb", "name": "General Policy", "originalRequest": { "url": { @@ -140367,7 +140367,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d63ff60-e4cc-4b43-95b6-91200f33ccc9", + "id": "25bbe5b3-b373-4d59-98bf-c478497a3f2c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -140423,7 +140423,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a0e08417-6e82-4487-83d3-68bc1b7721c3", + "id": "4e2718b7-e0e1-44e6-bf3c-0d7a99fb7e70", "name": "General Policy", "originalRequest": { "url": { @@ -140479,7 +140479,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2151d3eb-4985-4c5a-89a7-73068af40a67", + "id": "52c77883-5018-4695-8ccb-9b3358682f07", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -140535,7 +140535,7 @@ "_postman_previewlanguage": "json" }, { - "id": "86373a8f-5221-471e-aeba-3b430e8425fd", + "id": "00ffbe57-7bd2-4635-a3bf-bac6f3c3630c", "name": "General Policy", "originalRequest": { "url": { @@ -140591,7 +140591,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9602f10-cef6-4d9b-b976-0b70b997446e", + "id": "cbb0d641-ccab-417a-8add-b46c1b333528", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -140647,7 +140647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a4b26f-d87b-4c66-bb5e-5d90229e94a5", + "id": "884226f7-c474-4f3c-8657-812ebaaa0c02", "name": "General Policy", "originalRequest": { "url": { @@ -140703,7 +140703,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a880f56a-48d2-4ad6-9200-3edbc0eb77df", + "id": "c89afb95-9bdf-4b08-969b-507df0e5c68b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -140759,7 +140759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e782bd2-e221-4891-b867-9d0c8327565d", + "id": "da5cf7af-fb95-4d07-adb9-ac4eedabec82", "name": "General Policy", "originalRequest": { "url": { @@ -140815,7 +140815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa6db410-0634-4968-b3fe-03f459b3fcca", + "id": "fb97261c-273f-485e-974c-93c7f8fc7473", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -140871,7 +140871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a61f0600-beb0-495e-8238-6ba892b26bda", + "id": "24aed094-286a-4568-bc7c-98cebb6c7eec", "name": "General Policy", "originalRequest": { "url": { @@ -140933,7 +140933,7 @@ } }, { - "id": "36ca0512-a8a1-467e-ab62-e6d8314ef9be", + "id": "66985fe4-64bf-4b68-8868-c65d7da38b80", "name": "List SOD policies", "request": { "name": "List SOD policies", @@ -141008,7 +141008,7 @@ }, "response": [ { - "id": "eaee46e6-f9da-4d7d-bd1d-546839747156", + "id": "5f9cc3b1-5b1b-4268-a016-188b69b69e48", "name": "List of all SOD policies.", "originalRequest": { "url": { @@ -141097,7 +141097,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27bb4a7e-9999-4161-afce-9f4668d9acda", + "id": "44c29560-11c8-43ed-8b38-38fcb8418823", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141186,7 +141186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd2a5d8f-4df3-4988-b94e-6c13e73b0628", + "id": "01a72468-ddd8-4962-84aa-1f824c3af7ce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141275,7 +141275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e4e40a8-1037-46e1-8042-f4e1f9c02a58", + "id": "e4f04064-4c29-4b03-9daf-c6c8bcfac3d5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141364,7 +141364,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fa1cd8f6-836e-48a8-ae08-849734d2c87c", + "id": "e29a9733-61a6-4a72-93f9-824dd8e04dbb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141453,7 +141453,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c5f8f45b-648b-40fe-a61c-d4c5885c4f5b", + "id": "cf4543e4-3edc-4b0a-96de-7df738393d6e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141548,7 +141548,7 @@ } }, { - "id": "05544c56-ed5d-41f0-a1d1-7e91185f6785", + "id": "bf1d9b0e-388f-435b-8528-7ac92a99942c", "name": "Get SOD policy by ID", "request": { "name": "Get SOD policy by ID", @@ -141589,7 +141589,7 @@ }, "response": [ { - "id": "1d913c27-f1f0-4aed-9acc-e163a698010b", + "id": "04a732d9-7cd4-4fa6-a5fb-17e0f5ebdf2b", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -141633,7 +141633,7 @@ "_postman_previewlanguage": "json" }, { - "id": "270f919b-f251-4303-ae07-ca8b50c5e2ff", + "id": "08314a6c-7273-4600-b5d8-020fedda1df0", "name": "General Policy", "originalRequest": { "url": { @@ -141677,7 +141677,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a43f4780-56ad-40c7-9edc-322280a4a0f5", + "id": "9d563483-781c-48bc-9d04-2ff7bdd7ff89", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -141721,7 +141721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8411a8f2-abeb-4fcd-8017-a05ffe7b28d3", + "id": "1ae39c20-1c8e-455e-9d68-50b1313345dd", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -141765,7 +141765,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a3bf245d-31b3-4a2e-a126-20cb2a9c3b18", + "id": "0de93025-bc35-4248-8f9c-c90e72ea67af", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -141809,7 +141809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f81cc947-9785-47fb-9684-6d87cd3fd8fa", + "id": "78719342-0ff6-45f2-8fae-b9a1cb8bc30a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -141853,7 +141853,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b696824a-435c-4984-a4d5-8d47fe9e18a8", + "id": "06510736-a675-41ab-b55e-247040250d3c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -141897,7 +141897,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92589c57-ab18-4b6e-b514-2882c0bdb014", + "id": "79f7b6cc-1f19-4da4-98f7-7a8eba2341aa", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -141947,7 +141947,7 @@ } }, { - "id": "56794e19-197e-4127-89f0-1479f1080aad", + "id": "b52e71b6-2ab1-4544-a4e7-a552f394fdb8", "name": "Update SOD policy by ID", "request": { "name": "Update SOD policy by ID", @@ -142001,7 +142001,7 @@ }, "response": [ { - "id": "469333cb-2e5d-44ba-91b1-3ea1709f3706", + "id": "64b73040-4847-4d84-87b8-166693fe5654", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -142058,7 +142058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed01b898-7c62-4973-970b-ae7830becf48", + "id": "acb25d19-2d72-4218-9a26-608152691d40", "name": "General Policy", "originalRequest": { "url": { @@ -142115,7 +142115,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d554d86-3cc7-4885-99ae-b50ce959e551", + "id": "5ded9026-c693-4cf2-9018-48c91b2459aa", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -142172,7 +142172,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1106d352-ef04-4fad-96d3-154d1127dbb5", + "id": "41b9ec73-8031-4cfb-9271-a06885589817", "name": "General Policy", "originalRequest": { "url": { @@ -142229,7 +142229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dee4fdae-7c7d-42bd-8865-d28493804ff6", + "id": "8d8c75c9-1305-4edd-a435-ec80396dd26c", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -142286,7 +142286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f9587bda-9592-4d6d-b16b-d04603d48227", + "id": "721a0f9f-7a71-4fe7-b2eb-b7fc50402de8", "name": "General Policy", "originalRequest": { "url": { @@ -142343,7 +142343,7 @@ "_postman_previewlanguage": "json" }, { - "id": "99411d50-2c46-427d-ac86-3e1c78c6369a", + "id": "4800b473-484e-454f-bd41-24206ab0ee46", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -142400,7 +142400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c19083ec-5a36-48cd-b873-af8f6b2d5c40", + "id": "a461fb70-5669-4dcc-836f-de98fd966a4b", "name": "General Policy", "originalRequest": { "url": { @@ -142457,7 +142457,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f71f6367-878d-4a8f-8a92-ad70ab13a333", + "id": "ecb22857-816d-4426-90e0-ab00341c1d05", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -142514,7 +142514,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66913cf1-e85f-4605-a445-901bfe3b83c6", + "id": "79e28b24-02b9-4fcb-a92c-85c5a49ee53d", "name": "General Policy", "originalRequest": { "url": { @@ -142571,7 +142571,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5cff0aa7-a8a1-40fc-964e-7c180e8d9ff0", + "id": "6c3b29e5-e110-4210-994b-c1e579d58bc2", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -142628,7 +142628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94b19ca8-cb34-41b4-b88a-26731d3d6402", + "id": "5455ce78-245e-479b-abf4-bd5713afe061", "name": "General Policy", "originalRequest": { "url": { @@ -142685,7 +142685,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48921f19-0b20-477d-90cc-54c0e3ae7ca3", + "id": "6bcc6535-699b-4b87-b01d-0295bb8026bb", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -142742,7 +142742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02c50277-0ce6-4a18-9f3b-5642aa7a5028", + "id": "77fb18c3-b300-4402-93bd-226c74f2f40e", "name": "General Policy", "originalRequest": { "url": { @@ -142805,7 +142805,7 @@ } }, { - "id": "12865924-696b-4f0a-bcdd-2829c4fc34c3", + "id": "5c351e96-c86f-48ca-b9e9-dfd7fd1b74df", "name": "Delete SOD policy by ID", "request": { "name": "Delete SOD policy by ID", @@ -142856,7 +142856,7 @@ }, "response": [ { - "id": "1f877b55-27fc-427f-952a-e65f31690fba", + "id": "a7575620-dd46-478c-ab35-7b3b5d1d756e", "name": "No content.", "originalRequest": { "url": { @@ -142900,7 +142900,7 @@ "_postman_previewlanguage": "text" }, { - "id": "cb471d1b-d565-48e5-bcc8-3d003c257683", + "id": "7e4d3d28-1199-4341-8e00-cd4b1a11f599", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -142954,7 +142954,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c287363c-02f7-43d2-a576-11c31e2dc78f", + "id": "746136c3-8dea-4c86-a49c-ab7353a4be66", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -143008,7 +143008,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f78d3e03-5aa4-4ef5-abe9-4f0620380726", + "id": "aaa09631-08e0-4c31-894b-1e56d070a662", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -143062,7 +143062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "090f3ca7-fee3-42b7-b242-cda1b20bf6fa", + "id": "5c6adf19-fa4a-4ab6-974e-163aa84011b8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -143116,7 +143116,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51cfb206-37d5-4ef4-968b-50bbadead4c7", + "id": "e4b9e416-1411-4dde-ac8e-f34c98f7935e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -143170,7 +143170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4887da4-a316-4dec-8fdd-34bbb22c4c97", + "id": "3e51b991-b2ad-4cf4-8a16-ad2d49798d32", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -143230,7 +143230,7 @@ } }, { - "id": "e731e613-eb6a-4e20-8b5e-ff78c02ff4ca", + "id": "33cb4ed9-1c35-4285-b575-c836e4ea8efd", "name": "Patch SOD policy by ID", "request": { "name": "Patch SOD policy by ID", @@ -143284,7 +143284,7 @@ }, "response": [ { - "id": "c79b36f6-8528-4d37-b257-04cdcebb3ee6", + "id": "2c77a281-819d-49fc-9a7d-edac171cf9f7", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -143341,7 +143341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "63db49c3-4e1e-44dc-a942-5dff760cec1b", + "id": "0f8a2a29-aaf1-4fe6-845f-fb5961a58761", "name": "General Policy", "originalRequest": { "url": { @@ -143398,7 +143398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bfb69907-63c1-4797-971f-1abc1930e454", + "id": "bc3396e9-daa7-4470-b83c-a5d331af95c5", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -143455,7 +143455,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ced3b1ac-d233-4e53-90c0-632d000cfd40", + "id": "35e08b98-b4b9-4986-9502-59d5595d4da5", "name": "General Policy", "originalRequest": { "url": { @@ -143512,7 +143512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60b33103-68bf-4133-8034-d0bf7f0498b2", + "id": "818b5626-35fc-42da-b154-9d65920ffeec", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -143569,7 +143569,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a7b7843-6ec2-4f9e-96f4-ac733ee17990", + "id": "57167356-2b9d-49a1-a815-14cc2d8a7e4e", "name": "General Policy", "originalRequest": { "url": { @@ -143626,7 +143626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b4cd7e6a-d900-43a2-9381-fa8515d98b8b", + "id": "69daf121-2232-445f-8b1a-c16f2c1e5b1e", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -143683,7 +143683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d631cd73-3a4e-4892-911c-41d0707a0999", + "id": "25b98ac4-ab8f-4375-aaae-d3e384b39e71", "name": "General Policy", "originalRequest": { "url": { @@ -143740,7 +143740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "90d1368a-bbc0-41cb-bacf-a625f18080d2", + "id": "05cd8d36-7ec8-4495-a6c7-a0ab52ab402d", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -143797,7 +143797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af0b4f20-cfcd-4db9-ae7b-61ff89f56aa7", + "id": "9c7a1776-5b9c-421d-9c0d-d1e029baee77", "name": "General Policy", "originalRequest": { "url": { @@ -143854,7 +143854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41fcc074-acdf-42f9-adb2-bc9aec4332d9", + "id": "ece6654e-42f2-4cb4-88b6-82fc8524fba2", "name": "Conflicting Access Based Policy", "originalRequest": { "url": { @@ -143911,7 +143911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4fe0078f-8293-4c28-826e-a92672612dc5", + "id": "d2a614b9-7bc9-463f-985e-5fda17b27b89", "name": "General Policy", "originalRequest": { "url": { @@ -143968,7 +143968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b8f99e2-84a8-40d5-b1ad-567014fee9de", + "id": "3e46b8f4-500a-4a79-b9f6-2ad559e6fa3e", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -144025,7 +144025,7 @@ "_postman_previewlanguage": "json" }, { - "id": "15d4a8e3-5c67-4c2d-9f74-51c5309d8ec9", + "id": "fb45e3b5-1465-4e03-8493-d2d0d446c859", "name": "General Policy", "originalRequest": { "url": { @@ -144088,7 +144088,7 @@ } }, { - "id": "5a1ba06f-098f-4ff7-9a29-7d073d5e0d77", + "id": "afc789d3-1fc9-4983-8547-84418ac89ecf", "name": "Evaluate one policy by ID", "request": { "name": "Evaluate one policy by ID", @@ -144130,7 +144130,7 @@ }, "response": [ { - "id": "7911f350-47ee-4f12-8f42-3859fc9fb7eb", + "id": "e81e7431-7d84-455e-b2f0-c846d0a66407", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -144175,7 +144175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc68b6fc-22ad-4baf-9ae1-e9fea37b945a", + "id": "7728e521-a3a2-4c61-8f80-6a55f179ec43", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144220,7 +144220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d7ac30c-846c-45e3-b540-f366751e0e79", + "id": "7cf5c3d5-4dd2-4ef4-8567-3c4ab80eb0fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144265,7 +144265,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ec26065-7979-407e-94e7-b4399f089ce0", + "id": "a2a477cf-f18d-40bc-b459-7ce8990a844f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144310,7 +144310,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dd0fdc63-c611-4567-8f20-759f12470e99", + "id": "ad29c4a3-31c4-461d-8025-2eb2cce227ef", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144355,7 +144355,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d92f0049-d1a0-42fa-983f-38c064f0f334", + "id": "a8837baa-34e0-4fca-8cc5-9e3fddb25498", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144406,7 +144406,7 @@ } }, { - "id": "1cf1d717-24c2-4497-9845-aa40235389f1", + "id": "600e38f3-81f8-4ba7-ac58-9b20b3b09326", "name": "Get SOD policy schedule", "request": { "name": "Get SOD policy schedule", @@ -144448,7 +144448,7 @@ }, "response": [ { - "id": "d36eb810-badc-4c12-a9a0-13c8bf0c7b85", + "id": "b4963f3a-8763-4186-a48f-b4b225e04833", "name": "SOD policy schedule.", "originalRequest": { "url": { @@ -144493,7 +144493,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d357531-9906-45a4-94cb-cb3198ae48e6", + "id": "d3558956-9672-4317-a8bd-acf5427dfdde", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144538,7 +144538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "019c690d-5254-46b0-b023-0b8d19d5d06e", + "id": "c64a1bc7-f6ec-4a00-9f6e-fc80ffaa978c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144583,7 +144583,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a83ad851-6303-4bc9-856e-54c90a0481e7", + "id": "439c699a-3a4a-4eab-b2db-5d4efeaa7ab2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -144628,7 +144628,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cfbdd1a-9fbd-47d2-9dc1-fba0868bb302", + "id": "6691cbbc-015b-4b74-860e-d229049a6ea1", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -144673,7 +144673,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1695799a-6574-4d29-a879-42f36af29571", + "id": "56ef5eeb-1fa6-4bf8-8c5f-d76da1eb7926", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -144724,7 +144724,7 @@ } }, { - "id": "8e5bd141-769b-416c-84a8-5225e7148f72", + "id": "976a8865-3e23-4a63-865c-2ef45f1abde6", "name": "Update SOD Policy schedule", "request": { "name": "Update SOD Policy schedule", @@ -144779,7 +144779,7 @@ }, "response": [ { - "id": "f423756d-a8ff-4fb3-8b8d-c50188c423c5", + "id": "c840f509-614f-48e1-9da8-e2f0066a4c0a", "name": "Created or updated SOD policy schedule.", "originalRequest": { "url": { @@ -144837,7 +144837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94ff3f66-f8bb-49f9-9eab-a33da5555adf", + "id": "192531b1-faec-442b-bd63-d237bfca8365", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -144895,7 +144895,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ea58d3c5-1fa2-40f9-a66b-9f0d142d6ea7", + "id": "89fa4434-7c7d-4afa-9f48-20c7be5a2602", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -144953,7 +144953,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94d4757a-9e32-487a-9d6c-71d9d781f7d8", + "id": "c78d17ba-83de-46b0-83b9-6c02b087639a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145011,7 +145011,7 @@ "_postman_previewlanguage": "json" }, { - "id": "58ecba1f-56d4-47ce-a10c-ecdfc5cebb2a", + "id": "25065dd2-b817-4c69-9a18-4651c7f3ddb9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145069,7 +145069,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fd2b16e-a7ff-461b-92f3-1a4adb1e1c92", + "id": "3c566bb3-92e8-499b-b5e2-f2ad7dfedf41", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145133,7 +145133,7 @@ } }, { - "id": "9a0548c9-8cd7-4221-acc8-ebea4536af65", + "id": "0b6ffd7d-b2f8-4834-8534-6f8d5c716010", "name": "Delete SOD policy schedule", "request": { "name": "Delete SOD policy schedule", @@ -145175,7 +145175,7 @@ }, "response": [ { - "id": "2f1275c9-3c0f-4b66-8297-4bba81e4c8cf", + "id": "718250f4-24c7-48c9-bf6a-12ef29aebce0", "name": "No content response.", "originalRequest": { "url": { @@ -145210,7 +145210,7 @@ "_postman_previewlanguage": "text" }, { - "id": "785508bd-6949-424d-b363-5e3d3e86df23", + "id": "e8f279b5-eeb0-4ab3-9005-219f29d766b8", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145255,7 +145255,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04de2574-876d-4c04-9a09-69e12b957445", + "id": "d26cd554-5f0a-41b3-88a5-a7e09b523c13", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145300,7 +145300,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33adf64a-bf21-435c-a9c9-8c16a2ecbd6b", + "id": "24a6e2e6-b4f0-40d7-b107-63aed53784c4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145345,7 +145345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9248a553-3a59-4c45-b45b-b610648581bc", + "id": "4040678c-1dde-46d5-8e41-8f1a1344150f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145390,7 +145390,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7ea8c2d-0b45-40e5-a21f-a90e2ccd2a80", + "id": "d72eebae-b430-4dc9-984f-f70352b175c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145435,7 +145435,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23cd4485-e568-4d50-8646-1a608f6bec2e", + "id": "36e26cab-c629-49ea-850d-d0e283cbac2f", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145486,7 +145486,7 @@ } }, { - "id": "4d512a06-015f-4f9e-b0e7-1f4359255db8", + "id": "dfdb2c2b-26a3-4d0a-9185-7db79637ac22", "name": "Runs SOD policy violation report", "request": { "name": "Runs SOD policy violation report", @@ -145529,7 +145529,7 @@ }, "response": [ { - "id": "6e04403f-2ada-4fb5-8559-1fa1b7a193df", + "id": "ebaaa806-c031-4561-b932-c15a54308e62", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -145575,7 +145575,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba2e0408-0280-4079-b55e-a8b45108dd4b", + "id": "3b15d8fa-a525-45db-978d-a5e22c59dbfb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145621,7 +145621,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf0aeda9-18d1-4900-a2bb-e849c2d3ddcf", + "id": "7f1ff6f9-d67b-4c4a-a104-1b88f8f624d5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -145667,7 +145667,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a4f4037-a624-4268-bc78-ba5858a9c808", + "id": "87953b89-d3b4-4a07-b926-4dc7c97bfd9d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -145713,7 +145713,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c588e669-fad4-4d0e-b3f3-bf71693dc393", + "id": "b452932a-d4c1-476a-84c1-ef5be3d6df42", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -145759,7 +145759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a098c09-fb49-41d0-a3be-05ab56a303ff", + "id": "49caab8c-8034-444d-a464-0cf5122f2de6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -145805,7 +145805,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02d4896f-429a-45dc-a42c-1475f6b87fe3", + "id": "04b65994-13a2-4577-ade5-972a37c0083c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -145857,7 +145857,7 @@ } }, { - "id": "a104078c-05e5-4727-8bee-bfd4668cdcca", + "id": "ee4d7fed-62aa-45d2-b514-7cfaee823a0b", "name": "Get SOD violation report status", "request": { "name": "Get SOD violation report status", @@ -145899,7 +145899,7 @@ }, "response": [ { - "id": "6b69eb5c-f456-4ae7-abe0-437b2bad0e72", + "id": "6237c3ac-c5f2-41c5-ae11-15f5f2537c2f", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -145944,7 +145944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "872509c1-d35b-4286-993a-900ea48dbfc4", + "id": "3d25f4b9-2e23-4bf9-bb3c-bca7fcccff9d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -145989,7 +145989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "56b2d45f-cda7-4ed1-a482-17a77a984e8f", + "id": "47f90e61-9482-42ce-894f-3e67068e3033", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146034,7 +146034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0afad8c2-b1a4-437a-ae0d-ec23cf567cc4", + "id": "570e78e0-67fc-4f45-8b2e-def96117bb16", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146079,7 +146079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b137c4f3-ed60-435d-9aa7-3248815ae59d", + "id": "ac9cccf0-19bc-4d89-97a4-78d824979920", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146124,7 +146124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b0a5c3b-bcf4-449e-834c-1199682c2c73", + "id": "5678a6f6-3e1e-425f-9247-d8af11275449", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146169,7 +146169,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a9421070-6908-41bb-9391-0cbb99b688d0", + "id": "1773d223-06fb-4006-a281-4d3e05530e1b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146220,7 +146220,7 @@ } }, { - "id": "4760cee5-6e8a-4fc1-ba28-0793aab654b8", + "id": "6005a7d2-fd18-4310-a2f8-ec6c8fbc0e00", "name": "Get violation report run status", "request": { "name": "Get violation report run status", @@ -146262,7 +146262,7 @@ }, "response": [ { - "id": "34879706-a468-49ed-9269-a17e63e7df00", + "id": "eeb7a7a8-0a2e-49ac-9438-f55e163bb6f7", "name": "Status of the violation report run task.", "originalRequest": { "url": { @@ -146307,7 +146307,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f590497f-65bf-4046-bf98-9800267b9f81", + "id": "e668c026-7c70-40bf-8f21-d51d134eb933", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146352,7 +146352,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c6565fc-9bd2-4021-8d7f-f28b32a4e37b", + "id": "57fa6594-92c6-4b6f-b398-edee68928838", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146397,7 +146397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b961faa4-a613-4545-ac0c-0eaa0b09fef8", + "id": "9333a25e-5dc5-4e09-b910-13e8a58a6c28", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146442,7 +146442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0b137dc6-1982-4029-b791-d0c79593975d", + "id": "24d0b057-0828-4bbb-9152-ca26ea0a8a40", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -146487,7 +146487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4de6b916-7f71-4eae-951b-9bc5d364b30d", + "id": "c7428a30-971e-4a98-b13c-b99263119f7c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146532,7 +146532,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db516fde-0abf-4db9-b6b2-bedeb61744eb", + "id": "705cad32-97c8-4405-973f-8b26dac1ddab", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146583,7 +146583,7 @@ } }, { - "id": "4aac507a-0a25-48a2-b0f8-d909f558a586", + "id": "0abd14c7-31cc-4972-8676-a0ed4e5a59e0", "name": "Runs all policies for org", "request": { "name": "Runs all policies for org", @@ -146626,7 +146626,7 @@ }, "response": [ { - "id": "5af638ba-25cb-4d8a-9e1f-189e63fb1841", + "id": "a14b5b9c-6ba5-4a80-9544-ba197503d7fb", "name": "Reference to the violation report run task.", "originalRequest": { "url": { @@ -146683,7 +146683,7 @@ "_postman_previewlanguage": "json" }, { - "id": "327b43a3-24c5-4312-abc9-815be69d239a", + "id": "3baba198-7ba8-4a0e-8e40-8ad0144f9636", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -146740,7 +146740,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2ac79b2-e511-430b-8db9-598338affe87", + "id": "aeee09fb-248b-4ef6-8879-b50b2dc038b7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -146797,7 +146797,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f9be827-8f91-45ed-99aa-3987f09fcb3b", + "id": "07eecca4-fe12-4def-b463-61132a8b29d9", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -146854,7 +146854,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35f3f4c9-9669-4f1e-8b5f-349a9236196c", + "id": "808d58c8-34dd-4847-91b4-46d60ce005c2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -146911,7 +146911,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7ed080a4-f26e-4469-a1ac-dabfde83b94e", + "id": "e76ff902-de4b-402e-b3e5-5f72d0c47627", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -146974,7 +146974,7 @@ } }, { - "id": "555a7df0-fe59-4fd8-91aa-109350b483a1", + "id": "0d578e13-c5a3-44e6-a3a9-8ed92e8aa537", "name": "Get multi-report run task status", "request": { "name": "Get multi-report run task status", @@ -147003,7 +147003,7 @@ }, "response": [ { - "id": "30eef156-a84c-4679-b880-b699b5326e60", + "id": "a63bd250-81df-41cd-98f9-1d794e9818a1", "name": "Status of the violation report run task for all policy run.", "originalRequest": { "url": { @@ -147046,7 +147046,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b86c7350-274e-4ee0-a2c4-37a5a1db1d05", + "id": "79f42d7c-6e35-4a9f-a0e3-35e686176c90", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147089,7 +147089,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c8ae0f2-1480-4d63-81a1-0afb5bfdc9c9", + "id": "275e3072-24aa-49ee-b3b3-51dce04e56a7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147132,7 +147132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "acce9bf0-1b8d-4578-a918-df483d319115", + "id": "971d8aa2-31be-4f1d-9e12-40d129449395", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147175,7 +147175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52160e09-9095-4606-a54c-a0d33640e7a1", + "id": "3fbf73ca-8dcd-41ae-9e40-5ac86ab11f0e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147218,7 +147218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49045ca2-9204-42b6-b22a-2ab600bb68d3", + "id": "ab05835b-d157-4dc5-bbe9-2ea477cd5be0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147267,7 +147267,7 @@ } }, { - "id": "f483bd1c-237b-41c0-91e2-211e8578e817", + "id": "27a37423-6e28-4528-bcc7-b458166c4868", "name": "Download violation report", "request": { "name": "Download violation report", @@ -147309,7 +147309,7 @@ }, "response": [ { - "id": "f601344a-c5d8-417f-a6aa-9e23f9c00d4d", + "id": "aeba8e59-29fb-4632-9e1f-6aaa9eab7141", "name": "Returns the PolicyReport.zip that contains the violation report file.", "originalRequest": { "url": { @@ -147349,12 +147349,12 @@ "value": "application/zip" } ], - "body": "et ut", + "body": "in exercitation quis Ut", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "f6f25249-6d13-4a74-9593-b638e842d2c4", + "id": "63108fca-61d4-49f1-9710-51d12694600c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147399,7 +147399,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93382f71-72e4-47cd-8564-22e4b9a46bef", + "id": "0b389fc9-a593-4103-ae53-64dc04b728b1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147444,7 +147444,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c74973e-8b11-4561-b9a5-63e74e1f2e02", + "id": "55aea14f-7d3e-4de9-bf81-13fc622d26b1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147489,7 +147489,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4eeb6c7d-8c49-44b2-b6b4-f4d1dcb33a38", + "id": "95b01bfb-fed9-4491-9caa-7bf5758b74d3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147534,7 +147534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b90ed27b-112a-490d-bdc4-0a7766407dc9", + "id": "272313bf-ff5f-4029-a111-7c796c5a2031", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147579,7 +147579,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6e97607-2398-4b33-af42-35482e665e7c", + "id": "cd722ed2-b613-4c0d-815a-f1dfcc43a10a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -147630,7 +147630,7 @@ } }, { - "id": "202729ef-1b91-4271-8fbf-c4bbc3f5a0a8", + "id": "66db758b-6b08-44e9-9506-db815954c2cf", "name": "Download custom violation report", "request": { "name": "Download custom violation report", @@ -147683,7 +147683,7 @@ }, "response": [ { - "id": "468663ea-371b-49a0-8a24-a30e152388df", + "id": "f50beedf-99e5-4527-88c2-68636e9b5811", "name": "Returns the zip file with given custom name that contains the violation report file.", "originalRequest": { "url": { @@ -147724,12 +147724,12 @@ "value": "application/zip" } ], - "body": "et ut", + "body": "in exercitation quis Ut", "cookie": [], "_postman_previewlanguage": "text" }, { - "id": "261f68d9-a60e-4ff1-957a-8ea289fee66c", + "id": "14c2890f-1c27-4b58-a3bc-3521e0584430", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -147775,7 +147775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91c05c65-abe9-4ced-9b05-b4736dcdf250", + "id": "e53ef32f-ca13-4775-8527-d7187f6bc067", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -147821,7 +147821,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b6c4a9e-47bf-4f0c-be8c-2c703883ff31", + "id": "743afe9b-0c45-4280-8ddb-a41cd868ab98", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -147867,7 +147867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7507942b-dbd5-43fe-9fd5-d3ac2c36de24", + "id": "a70a7bbc-069c-4afa-9ccb-4ced765fcbbe", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -147913,7 +147913,7 @@ "_postman_previewlanguage": "json" }, { - "id": "760ceb8c-f62e-4a4b-9d4d-936d15062929", + "id": "6085f81e-4d9f-4d44-a561-8027ddfd79d9", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -147959,7 +147959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f2f66ae8-f074-4bd1-85de-f7004b8ff42d", + "id": "d4832824-98e6-492a-b9ab-2bb8e540ca27", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148017,7 +148017,7 @@ "description": "Use this API to check for current \"separation of duties\" (SOD) policy violations as well as potential future SOD policy violations. \nWith SOD violation functionality in place, administrators can get information about current SOD policy violations and predict whether an access change will trigger new violations, which helps to prevent them from occurring at all. \n\n\"Separation of duties\" refers to the concept that people shouldn't have conflicting sets of access - all their access should be configured in a way that protects your organization's assets and data. \nFor example, people who record monetary transactions shouldn't be able to issue payment for those transactions.\nAny changes to major system configurations should be approved by someone other than the person requesting the change. \n\nOrganizations can use \"separation of duties\" (SOD) policies to enforce and track their internal security rules throughout their tenants.\nThese SOD policies limit each user's involvement in important processes and protects the organization from individuals gaining excessive access. \n\nOnce a SOD policy is in place, if an identity has conflicting access items, a SOD violation will trigger. \nThese violations are included in SOD violation reports that other users will see in emails at regular intervals if they're subscribed to the SOD policy.\nThe other users can then better help to enforce these SOD policies.\n\nAdministrators can use the SOD violations APIs to check a set of identities for any current SOD violations, and they can use them to check whether adding an access item would potentially trigger a SOD violation. \nThis second option is a good way to prevent SOD violations from triggering at all. \n\nRefer to [Handling Policy Violations](https://documentation.sailpoint.com/saas/help/sod/policy-violations.html) for more information about SOD policy violations. \n", "item": [ { - "id": "b4b51c81-e104-4999-a55a-6e1f8f033a3b", + "id": "8820ebe2-125b-408b-9f01-44b44b61937f", "name": "Predict SOD violations for identity.", "request": { "name": "Predict SOD violations for identity.", @@ -148060,7 +148060,7 @@ }, "response": [ { - "id": "3e4d309e-4057-4947-9ed1-cacc36a6a7ee", + "id": "f6824058-0aca-4899-bfe9-77a1b41004eb", "name": "Violation Contexts", "originalRequest": { "url": { @@ -148117,7 +148117,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4999d1d-3552-41c5-ac4a-41f8f69816ea", + "id": "9ab45aa0-85ab-41c4-92d4-60b772cc047c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148174,7 +148174,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ef16e37-5832-4300-8429-d0479c982991", + "id": "c506b5b9-43ee-485d-90f5-d25936cf2eac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148231,7 +148231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b663e187-2167-4ddd-90fc-0caca00b9a84", + "id": "077b8c30-bbe6-428c-9aae-a0d5cea3d324", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148288,7 +148288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "37d971a3-8979-425c-a2d8-38486363526a", + "id": "a604247d-0763-48c4-b8cb-05f19e878500", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148345,7 +148345,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e01e1cbb-a9a9-4ae8-b0ed-d74a08c70bd6", + "id": "81106837-ef1c-479c-977c-3d2fc8db08d2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148402,7 +148402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8a3ded5e-320a-41a5-a4c6-3a5404415e82", + "id": "95325e2a-68af-4f71-9f1f-aea0ccd6ba08", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148465,7 +148465,7 @@ } }, { - "id": "bb3750d3-2a29-4f6b-8777-63f99ce3dd48", + "id": "68044649-19e4-406b-869e-1196b1e7f950", "name": "Check SOD violations", "request": { "name": "Check SOD violations", @@ -148508,7 +148508,7 @@ }, "response": [ { - "id": "9055d0fa-a6a4-4f28-9a5a-2c73de72fd31", + "id": "95802eab-e67f-4d1b-b735-59bf45ce8374", "name": "Request ID with a timestamp.", "originalRequest": { "url": { @@ -148565,7 +148565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94940960-8617-4ff3-baa4-d77d489d010f", + "id": "446df5d0-ae43-4167-b9a4-fed4698593d2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -148622,7 +148622,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1f24aa3-07b2-46a2-9185-eb343de6dc0a", + "id": "1e3d49f5-cee2-4ca0-95bf-29d877c6ac60", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -148679,7 +148679,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a950f3ab-3864-4472-8523-0ca874de98a2", + "id": "5d1eede7-9e6a-4c8b-9bce-4c917ae89c0e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -148736,7 +148736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c6944ff-ca0e-4cec-b287-fcb37fca50d0", + "id": "77553453-e268-4feb-9867-39d4480ebd5a", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -148793,7 +148793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1bf04f0-4799-4b3e-903c-47d82a908295", + "id": "a7177da2-38d6-43db-8154-a12f99959da8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -148850,7 +148850,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e28fa2f-3420-45ed-a76a-73d650a428ad", + "id": "03c698f0-7ec6-44d6-afff-1af1cd4fa40b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -148919,7 +148919,7 @@ "description": "Use this API to implement source usage insight functionality.\nWith this functionality in place, administrators can gather information and insights about how their tenants' sources are being used.\nThis allows organizations to get the information they need to start optimizing and securing source usage.\n", "item": [ { - "id": "ae62981b-0dd7-4467-9974-abd2124bc783", + "id": "a922f442-3cae-473b-ad0e-4fc24f650343", "name": "Finds status of source usage", "request": { "name": "Finds status of source usage", @@ -148961,7 +148961,7 @@ }, "response": [ { - "id": "39d5a3bf-6ff5-4aff-a40d-a3ca11d45390", + "id": "d550ed3b-8f1e-4ce4-aeb9-6ad3123ba766", "name": "Status of the source usage insights setup by IDN source ID.", "originalRequest": { "url": { @@ -149006,7 +149006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "79ebeb3d-fa06-46db-bb45-4edf818fa699", + "id": "c70fe9ac-b1f9-4ebd-9023-1f4f242032cb", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149051,7 +149051,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ece2f8d9-683d-49e6-90de-9b602016055a", + "id": "3bc9665a-9aba-4250-93f4-849debcd981c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149096,7 +149096,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f61a1fe-2501-4ad4-a79b-1c0a9d1fd9d0", + "id": "c6df7821-45c5-4e1c-b53d-288084fe3d96", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149141,7 +149141,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ae23e73-d5dc-42ac-969e-2eb5443d582d", + "id": "a615262c-1809-4ca7-8d89-27f2420be416", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149186,7 +149186,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9693bf8f-7b11-4692-8f02-dc2fa4b0f663", + "id": "10e9bea7-b26f-4f4b-ae38-339d83ab146e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149237,7 +149237,7 @@ } }, { - "id": "02104583-ae87-4b41-aa75-19eed835c218", + "id": "e20ac30b-d313-47d5-816c-67cbe3f3f169", "name": "Returns source usage insights", "request": { "name": "Returns source usage insights", @@ -149316,7 +149316,7 @@ }, "response": [ { - "id": "cf1d5fbb-c8e2-4363-9564-648974c79770", + "id": "571fd566-3f6a-47a9-afeb-433908fb5272", "name": "Summary of source usage insights for past 12 months.", "originalRequest": { "url": { @@ -149398,7 +149398,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f96323bf-2abd-497b-a8aa-79635ddb10d8", + "id": "4230454d-320f-4ce8-a7ca-9902aae29d07", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -149480,7 +149480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "005e694e-ea4e-458c-b153-f49742957664", + "id": "1942320c-b476-4959-9ce9-aaec31d54f9e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -149562,7 +149562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "676e68b8-f7bf-40f3-9bc4-e6618280a480", + "id": "10d83d9d-fbdf-4883-abc0-50e6205bb5ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -149644,7 +149644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b7be518-f605-43e3-ac1b-6b338bf1a17a", + "id": "4f418d7a-a12d-4ef1-8f72-4faa416a025c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -149726,7 +149726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d46b5fed-bef9-4f72-88f1-d3f26ebe42d5", + "id": "29c01efd-c9b6-4e43-beb8-b5312f9b7e3d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -149820,7 +149820,7 @@ "description": "Use this API to implement and customize source functionality. \nWith source functionality in place, organizations can use Identity Security Cloud to connect their various sources and user data sets and manage access across all those different sources in a secure, scalable way. \n\n[Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) refer to the Identity Security Cloud representations for external applications, databases, and directory management systems that maintain their own sets of users, like Dropbox, GitHub, and Workday, for example.\nOrganizations may use hundreds, if not thousands, of different source systems, and any one employee within an organization likely has a different user record on each source, often with different permissions on many of those records. \nConnecting these sources to Identity Security Cloud makes it possible to manage user access across them all.\nThen, if a new hire starts at an organization, Identity Security Cloud can grant the new hire access to all the sources they need.\nIf an employee moves to a new department and needs access to new sources but no longer needs access to others, Identity Security Cloud can grant the necessary access and revoke the unnecessary access for all the employee's various sources. \nIf an employee leaves the company, Identity Security Cloud can revoke access to all the employee's various source accounts immediately. \nThese are just a few examples of the many ways that source functionality makes identity governance easier, more efficient, and more secure. \n\nIn Identity Security Cloud, administrators can create configure, manage, and edit sources, and they can designate other users as source admins to be able to do so.\nThey can also designate users as source sub-admins, who can perform the same source actions but only on sources associated with their governance groups.\nAdmins go to Connections > Sources to see a list of the existing source representations in their organizations. \nThey can create new sources or select existing ones. \n\nTo create a new source, the following must be specified: Source Name, Description, Source Owner, and Connection Type.\nRefer to [Configuring a Source](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html#configuring-a-source) for more information about the source configuration process. \n\nIdentity Security Cloud connects with its sources either by a direct communication with the source server (connection information specific to the source must be provided) or a flat file feed, a CSV file containing all the relevant information about the accounts to be loaded in.\nDifferent sources use different connectors to share data with Identity Security Cloud, and each connector's setup process is specific to that connector. \nSailPoint has built a number of connectors to come out of the box and connect to the most common sources, and SailPoint actively maintains these connectors.\nRefer to [Identity Security Cloud Connectors](https://documentation.sailpoint.com/connectors/identitynow/landingpages/help/landingpages/identitynow_connectivity_landing.html) for more information about these SailPoint supported connectors. \nRefer to the following links for more information about two useful connectors: \n\n- [JDBC Connector](https://documentation.sailpoint.com/connectors/jdbc/help/integrating_jdbc/introduction.html): This customizable connector an directly connect to databases that support JDBC (Java Database Connectivity).\n\n- [Web Services Connector](https://documentation.sailpoint.com/connectors/webservices/help/integrating_webservices/introduction.html): This connector can directly connect to databases that support Web Services. \n\nRefer to [SaaS Connectivity](https://developer.sailpoint.com/docs/connectivity/saas-connectivity/) for more information about SailPoint's new connectivity framework that makes it easy to build and manage custom connectors to SaaS sources. \n\nWhen admins select existing sources, they can view the following information about the source:\n\n- Associated connections (any associated identity profiles, apps, or references to the source in a transform).\n\n- Associated user accounts. These accounts are linked to their identities - this provides a more complete picture of each user's access across sources.\n\n- Associated entitlements (sets of access rights on sources).\n\n- Associated access profiles (groupings of entitlements). \n\nThe user account data and the entitlements update with each data aggregation from the source. \nOrganizations generally run scheduled, automated data aggregations to ensure that their data is always in sync between their sources and their Identity Security Cloud tenants so an access change on a source is detected quickly in Identity Security Cloud.\nAdmins can view a history of these aggregations, and they can also run manual imports. \nRefer to [Loading Account Data](https://documentation.sailpoint.com/saas/help/accounts/loading_data.html) for more information about manual and scheduled aggregations. \n\nAdmins can also make changes to determine which user account data Identity Security Cloud collects from the source and how it correlates that account data with identity data. \nTo define which account attributes the source shares with Identity Security Cloud, admins can edit the account schema on the source.\nRefer to [Managing Source Account Schemas](https://documentation.sailpoint.com/saas/help/accounts/schema.html) for more information about source account schemas and how to edit them. \nTo define the mapping between the source account attributes and their correlating identity attributes, admins can edit the correlation configuration on the source. \nRefer to [Assigning Source Accounts to Identities](https://documentation.sailpoint.com/saas/help/accounts/correlation.html) for more information about this correlation process between source accounts and identities.\n\nAdmins can also delete sources, but they must first ensure that the sources no longer have any active connections: the source must not be associated with any identity profile or any app, and it must not be referenced by any transform.\nRefer to [Deleting Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html#deleting-sources) for more information about deleting sources. \n\nWell organized, mapped out connections between sources and Identity Security Cloud are essential to achieving comprehensive identity access governance across all the source systems organizations need. \nRefer to [Managing Sources](https://documentation.sailpoint.com/saas/help/sources/managing_sources.html) for more information about all the different things admins can do with sources once they are connected.\n", "item": [ { - "id": "8dcb78f4-8441-4033-8e91-21e902e2dfa4", + "id": "acb62c9e-3396-4690-95ff-ed9972de3502", "name": "Lists all sources in IdentityNow.", "request": { "name": "Lists all sources in IdentityNow.", @@ -149913,7 +149913,7 @@ }, "response": [ { - "id": "974883f5-d3cb-46f4-a709-5793432f651e", + "id": "d8fcd99d-d359-4981-afd7-38bfb52d45a5", "name": "List of Source objects", "originalRequest": { "url": { @@ -150020,7 +150020,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dceda639-492e-41f7-b4af-5472609b674d", + "id": "8f5ba91c-2344-4aa5-adb3-1464c38f258a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150127,7 +150127,7 @@ "_postman_previewlanguage": "json" }, { - "id": "da01b9a8-c9a0-498d-959c-94ec22ea6cc5", + "id": "f61502c7-1f35-43a3-9cea-c8c2f5bc888c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150234,7 +150234,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5ce6ea8-051e-4744-a34c-8b4d103ede4a", + "id": "e9602372-01e4-40a1-bf8c-51ad534edb02", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150341,7 +150341,7 @@ "_postman_previewlanguage": "json" }, { - "id": "047f0c62-6af2-497b-a157-7a6fceefb1a8", + "id": "ebdce17d-3987-44fd-8144-8155aad51e88", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -150448,7 +150448,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e5b1715-9d68-41af-b8fc-f60532d5134a", + "id": "2fa61b72-2ff3-4aca-a010-9807a9a35133", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -150555,7 +150555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a75bdf64-2fab-4051-a00b-8a9ee5269089", + "id": "131c2373-2c9c-44c8-a27b-69a1dc39e2b6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -150668,7 +150668,7 @@ } }, { - "id": "6bc628d7-5cf0-4ec1-9f70-d5375aac3b40", + "id": "b4f09d49-d574-4573-b589-3448782bfebc", "name": "Creates a source in IdentityNow.", "request": { "name": "Creates a source in IdentityNow.", @@ -150720,7 +150720,7 @@ }, "response": [ { - "id": "8326c84c-2f8f-4dbb-b9a6-2991c428b31a", + "id": "13094276-285d-48c9-8b7c-33f6809fc35c", "name": "Created Source object. Any passwords will only show the the encrypted cipher-text, as they are not decrypt-able in IdentityNow cloud-based services, per IdentityNow security design.", "originalRequest": { "url": { @@ -150786,7 +150786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5664ee77-8a9a-4d59-a1aa-759f54ab980e", + "id": "e5e206af-12e2-4208-93ce-70979ca41bcf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -150852,7 +150852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "445470d9-acea-4213-8c0c-e40aa7c4b9bf", + "id": "28adc96e-e3fe-4c71-a4b7-ac0ab5bb73c3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -150918,7 +150918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "207f8c9e-1289-4a03-843f-4f0554887f61", + "id": "0013ab3c-9c0a-48b7-a053-12ae09d805ce", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -150984,7 +150984,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9a5a931-a93e-432c-aaea-3cab60448696", + "id": "b1605ab5-73c2-4b0a-be74-1b30214acd06", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151050,7 +151050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e9ec8610-d1b4-4d15-8f3a-be1ec1bef34e", + "id": "fec4d483-0fe4-4bce-b951-05cc31ebc063", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151122,7 +151122,7 @@ } }, { - "id": "da30bd7c-ed74-4bc5-ba3a-897404ac7ac3", + "id": "22657eda-9b26-4275-9d49-2aaa2213f105", "name": "Get Source by ID", "request": { "name": "Get Source by ID", @@ -151163,7 +151163,7 @@ }, "response": [ { - "id": "958c413c-05f1-447e-a06e-553d8a5ec1f9", + "id": "22eb47c7-ac45-444a-bc15-c39a87e1a3cb", "name": "Source object.", "originalRequest": { "url": { @@ -151207,7 +151207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8b43c2cc-c3cf-4633-942d-7e98647eab99", + "id": "06e3976d-ba91-430a-a40b-0ae7add77368", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151251,7 +151251,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b9128b7d-7cfa-44ae-9b57-83d3356e07ce", + "id": "a3018900-384e-4305-9418-3925ecb8e078", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151295,7 +151295,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6b183c0e-35bd-40c5-b93b-249f8d2aee16", + "id": "3570872d-99c6-4f6b-816b-460b84deeeac", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151339,7 +151339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4b6fbaff-e188-416e-8159-bbf229628206", + "id": "7f749935-d5fb-4ad0-8380-38daa5045c99", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151383,7 +151383,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb6a8024-b6c7-4fb3-8462-ea21965d9afa", + "id": "b890e233-5952-446e-8344-72dd34e12035", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151427,7 +151427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "71e4d6da-ec8d-4f92-bb7f-56baf7e46cb8", + "id": "d527cad9-46c4-4ae5-87d9-45435b4455f9", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151477,7 +151477,7 @@ } }, { - "id": "a628550d-a283-4b75-beb4-3eba9b16c480", + "id": "c9aaf607-aa4e-4d34-91ae-14cff68390a4", "name": "Update Source (Full)", "request": { "name": "Update Source (Full)", @@ -151531,7 +151531,7 @@ }, "response": [ { - "id": "e92a68f2-6227-4e2e-bdf9-f5a12a56d622", + "id": "ea247add-5cda-4f47-beb6-c8d56dcd9d6e", "name": "Updated Source object. Any passwords will only show the the encrypted cipher-text so that they aren't decryptable in Identity Security Cloud (ISC) cloud-based services, per ISC security design.", "originalRequest": { "url": { @@ -151588,7 +151588,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa44837b-b79c-4d30-8b8a-1039eef83097", + "id": "a96a5933-ab18-4c9e-a5d9-997192d84497", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -151645,7 +151645,7 @@ "_postman_previewlanguage": "json" }, { - "id": "efad2bfc-b836-48f0-a330-c0ed1f07af70", + "id": "ea6c5c5b-ad16-47c2-b3f8-fa5035847d2d", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -151702,7 +151702,7 @@ "_postman_previewlanguage": "json" }, { - "id": "954348ad-8994-4063-b409-c8f3f0f49185", + "id": "ccb8872b-2b77-4b04-b455-b448a03361c2", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -151759,7 +151759,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c10fa148-f65d-410a-a544-9d5e571f4709", + "id": "1407ccfa-951d-4816-bfd1-af5fb8d0d837", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -151816,7 +151816,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f8020eb8-80c4-4e6c-97f6-9148e6b28d5c", + "id": "5fb62559-d7c1-4896-b57c-5ea8a1cc6969", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -151873,7 +151873,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e5c5d5d9-69a8-43ee-9894-976249b6f1b9", + "id": "ef90dd69-6b2a-4aa5-aa1f-fd6b0932b090", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -151936,7 +151936,7 @@ } }, { - "id": "d0c270f7-bd66-43b0-bb8b-625db8b3dfaa", + "id": "d19ec388-4364-494e-bbc5-abf15b6c054e", "name": "Update Source (Partial)", "request": { "name": "Update Source (Partial)", @@ -151990,7 +151990,7 @@ }, "response": [ { - "id": "b4e10b7a-8234-4b0b-a6f4-34249e812ed4", + "id": "35d7c720-0e7d-4a99-9b2b-5e20177a7f5a", "name": "Edit the source description", "originalRequest": { "url": { @@ -152047,7 +152047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "759386ef-4336-4d3e-98e5-e0a6ff3e8627", + "id": "6182578c-29cd-4766-a288-bc66730ae262", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -152104,7 +152104,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d1a2d23-8d79-4e75-87f6-7e17c670c448", + "id": "b64366b6-51cc-4e3a-a69e-5aed1b36f5ae", "name": "Edit source features", "originalRequest": { "url": { @@ -152161,7 +152161,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7e15ce9-338b-42de-a337-71e2ff8ea2d5", + "id": "c3704cff-47b2-4262-b92b-99631157b839", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -152218,7 +152218,7 @@ "_postman_previewlanguage": "json" }, { - "id": "be135335-b967-4fdf-abe1-1781cad8c6d3", + "id": "5e34e182-f20c-4a83-8257-e26be228975e", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -152275,7 +152275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4f407d82-9d0d-4094-8b23-734fa43df34b", + "id": "f85d523c-7af3-4d93-9b45-9e9375a1007d", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -152332,7 +152332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a10781d3-98c4-4ee6-be10-638ed81778f9", + "id": "5e1a2d28-d2e3-46c9-9f21-635c14cad959", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -152389,7 +152389,7 @@ "_postman_previewlanguage": "json" }, { - "id": "97cbe59e-6bd3-4b55-8f05-8d72e3fbfaef", + "id": "45bd6cdc-4b2f-4625-8083-2cbac3e14f51", "name": "Edit the source description", "originalRequest": { "url": { @@ -152446,7 +152446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c9fbf65-0557-4500-bf30-8eeb5de44716", + "id": "a2e91bf8-d349-4907-bc8d-ec74cfde47c6", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -152503,7 +152503,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6a07b91-c136-46ab-8ad7-36dfe50bbf71", + "id": "dc2df1c4-e6a0-4794-956d-a29b6e393abe", "name": "Edit source features", "originalRequest": { "url": { @@ -152560,7 +152560,7 @@ "_postman_previewlanguage": "json" }, { - "id": "529847ed-d54a-48da-adea-94b99c4a09d1", + "id": "c7210e59-fdd5-463a-b55f-07a5fe28f142", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -152617,7 +152617,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f405aff-6d5d-4372-8e83-45111ab91f45", + "id": "a9403e61-ac2b-432c-97ce-5db6310c36d2", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -152674,7 +152674,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3da18ca4-ebe0-42b7-ba75-96ea849ff48a", + "id": "caf3f8fb-45de-4b6a-869c-277bcc279c3c", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -152731,7 +152731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dde2b565-454e-44e7-9fc5-0f38a0281ebc", + "id": "9c7f16f9-c7d3-4de3-a00e-d0b7cdb27ed0", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -152788,7 +152788,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f976a00d-5efe-4feb-9ee0-8c2e1ade00a6", + "id": "0bd39646-3757-4471-be52-89005f96ad85", "name": "Edit the source description", "originalRequest": { "url": { @@ -152845,7 +152845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c216b11-8e7c-4a3f-9634-c70ccaec2124", + "id": "bafe1b5b-ecf9-46e2-a651-ce571cf9bb24", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -152902,7 +152902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "04c2b88a-1daa-4232-bef5-99965bb9754c", + "id": "99e4fdd1-5d12-4baa-b021-f89681f3ef08", "name": "Edit source features", "originalRequest": { "url": { @@ -152959,7 +152959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "50f469a3-c63c-4bc7-b60d-b6f9e9385254", + "id": "e16eb089-cc1c-4f25-867e-3511ae01eedd", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -153016,7 +153016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "293cfa03-079d-4d02-a150-a715e130238f", + "id": "d908b115-5145-4ae3-aa80-4b42cc76b0ec", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -153073,7 +153073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fed3be88-6467-4f69-b68d-166ede7a0ec0", + "id": "cba68387-37a8-4d17-83ae-11cad0cea6c2", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -153130,7 +153130,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1c59252c-74ea-4e04-97c3-d751d158eccd", + "id": "b71f97ae-adaa-43fe-a4e6-5cde031ae791", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -153187,7 +153187,7 @@ "_postman_previewlanguage": "json" }, { - "id": "440b7cc1-b184-487a-8434-ac55cd917268", + "id": "0d115343-618a-4374-bb67-870b2b23ac07", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -153244,7 +153244,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c7b1c58-2e60-442b-8034-91704e408af5", + "id": "16200d25-5fb7-4184-a93f-cfb6c2bfe8db", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -153301,7 +153301,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17aa178b-88a7-45ea-9e9d-8fa317d999ad", + "id": "9660e646-9218-4b87-ad96-6331f8488ca4", "name": "Edit source features", "originalRequest": { "url": { @@ -153358,7 +153358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1b185be-e48f-46dd-a462-5cf2a0d9568c", + "id": "366da1b4-203f-44de-92f5-c43ef83a245b", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -153415,7 +153415,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb1ede86-a03f-46bb-b273-12778eabaf9e", + "id": "09c6d1bb-4bcf-4932-bc47-d8aea3838375", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -153472,7 +153472,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef05bb3-50a6-47b7-b2de-304da0b57184", + "id": "8bff0ffe-85ed-4596-a820-10e5875b321e", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -153529,7 +153529,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e84a5b9-8fbd-4e32-a03d-77fb78e26d11", + "id": "a28a769e-6135-430b-9665-6c2e070e327b", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -153586,7 +153586,7 @@ "_postman_previewlanguage": "json" }, { - "id": "985ad188-4a89-46a3-879c-f3d1a134485b", + "id": "52c7739d-2ea3-4b4f-8f37-de12e5be2c76", "name": "An example of a 404 response object", "originalRequest": { "url": { @@ -153643,7 +153643,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9f2f9e88-806c-45af-88b7-275a3a456e1a", + "id": "f423f526-605d-4e44-a227-53a38eece14f", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -153700,7 +153700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e0b60065-87e1-49db-9dd3-1de3eb986ffb", + "id": "e7dc6c02-9d29-4a67-9ad3-ddf439b7caa8", "name": "Edit source features", "originalRequest": { "url": { @@ -153757,7 +153757,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d577b7fe-81ac-49ea-8e80-8c05d82d4579", + "id": "c7a34497-823b-42a0-9670-388cc0ac3183", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -153814,7 +153814,7 @@ "_postman_previewlanguage": "json" }, { - "id": "22801f08-a072-44c7-93d4-b98ca08fcc2d", + "id": "5ecbd835-97c8-481c-a035-7be35f3c9445", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -153871,7 +153871,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b03d2b84-4bcb-44c6-bd52-61d1eae44457", + "id": "22223aad-a8ef-4726-808a-9831dd027dfc", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -153928,7 +153928,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6122816a-cb61-4968-bcff-b5b1ba7bfae7", + "id": "2d83cf36-291a-497a-8627-24c07c56bd3b", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -153985,7 +153985,7 @@ "_postman_previewlanguage": "json" }, { - "id": "225fd71f-cc8e-4a35-ab8b-00830c022ed7", + "id": "22ac3685-1370-433e-b9a5-27e6a15e833e", "name": "Edit the source description", "originalRequest": { "url": { @@ -154042,7 +154042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d16bfa68-5a07-4131-ae7c-2597eff94626", + "id": "94fb0473-b517-4da4-aa5a-f9b980274f0c", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -154099,7 +154099,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8c65c3b3-dc3f-47a6-ade6-a82871170cd5", + "id": "bb00bac9-010a-4c9e-92f5-acf5dcbf9f30", "name": "Edit source features", "originalRequest": { "url": { @@ -154156,7 +154156,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77ddb815-8081-474e-85b4-9663d8b0cc0a", + "id": "5b8d8c46-e2e2-430e-b31d-fea4a8ad3ab5", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -154213,7 +154213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e9c8a37-0e3a-4b5b-aee4-61cc8671b2b4", + "id": "346ccfd0-2734-4541-a23e-da0db1662ede", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -154270,7 +154270,7 @@ "_postman_previewlanguage": "json" }, { - "id": "047d77bf-34ab-4391-862b-a6dfb497162d", + "id": "a7ade4fb-944e-4b0c-9425-b653ab5eaf72", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -154327,7 +154327,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b8560450-004a-4009-a03c-f3785aebe346", + "id": "5acecb85-da98-40b4-989b-bccb76ca64c2", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -154384,7 +154384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39511b14-bbe3-4a36-83f2-98781adc489a", + "id": "5511c3d5-159d-4e67-a042-b056c8a04ffc", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -154441,7 +154441,7 @@ "_postman_previewlanguage": "json" }, { - "id": "412ba2c9-4f3b-4bf7-9473-21f6ff3ce925", + "id": "26236f5c-3b36-4ebb-b6da-9366f0b14e95", "name": "Edit the source cluster", "originalRequest": { "url": { @@ -154498,7 +154498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c248c03-809b-4d39-beda-253311e41a40", + "id": "e506faa1-ba4f-43f7-8e92-84e7a4841c30", "name": "Edit source features", "originalRequest": { "url": { @@ -154555,7 +154555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "91d3ecee-daf5-463f-88e3-3396fe794e9a", + "id": "dbf2c321-0835-4cf5-95eb-347c87b33522", "name": "Change a source description and cluster in one call", "originalRequest": { "url": { @@ -154612,7 +154612,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d3d0f7c-b056-4764-a9e6-e7891c44b53d", + "id": "5358965e-ee86-4a6b-86a9-f54f0a246086", "name": "Add a filter string to the connector", "originalRequest": { "url": { @@ -154669,7 +154669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3dfbf51a-4da3-40fa-bde7-578a5fc090b3", + "id": "e1dc782f-d86c-4131-8d5f-ab5b9ed54713", "name": "Update connector attribute for specific operation type", "originalRequest": { "url": { @@ -154726,7 +154726,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72ce4e7e-d769-4d72-9458-c0998ea4b298", + "id": "091e011f-bb7d-475c-a701-e67274a56111", "name": "Enable notifications for new account provisioning on a source", "originalRequest": { "url": { @@ -154789,7 +154789,7 @@ } }, { - "id": "f7134836-b7da-43ba-b3a6-9eec8f7fe065", + "id": "e11705a3-712b-4b5d-a96c-71acd7dab84a", "name": "Delete Source by ID", "request": { "name": "Delete Source by ID", @@ -154830,7 +154830,7 @@ }, "response": [ { - "id": "fc2366e6-19cc-42d2-b2d6-0f6fd5e12f86", + "id": "add6b705-22e6-4360-8276-eed7e9b8c431", "name": "Accepted - Returned if the request was successfully accepted into the system.", "originalRequest": { "url": { @@ -154874,7 +154874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "877c6cde-fb06-489a-8e9f-43ab69abf280", + "id": "7eeb2bfd-5405-4199-bc30-640ac3c65e56", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -154918,7 +154918,7 @@ "_postman_previewlanguage": "json" }, { - "id": "25d6dc72-6e5c-4e45-9fcc-e64406c25a4f", + "id": "f15af5bd-fec8-47ca-8566-f94222c12a9b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -154962,7 +154962,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65adaa23-ca3e-43c4-b7b7-cdba985c2d65", + "id": "9c5b8047-1f07-4a93-8c29-800d0c92b0fd", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155006,7 +155006,7 @@ "_postman_previewlanguage": "json" }, { - "id": "94cd1278-4dc9-490f-a372-0d0cb9dc50e0", + "id": "4f0e3760-6294-46bf-8bbf-68e5ef4fae47", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155050,7 +155050,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9493b576-a86a-4486-bcbb-74aed2a3da3d", + "id": "e604af20-0a71-42b2-82fe-75628d6959d3", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155094,7 +155094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34e5c473-c03e-409e-a89f-495b4e7b8b21", + "id": "5dee1e4a-da89-423d-8e8b-be5199b27923", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155144,7 +155144,7 @@ } }, { - "id": "5a78e652-0dfd-4fb8-be1a-36a6711ea756", + "id": "7b282074-c383-4ec6-b2f4-ce31a1db9421", "name": "Lists ProvisioningPolicies", "request": { "name": "Lists ProvisioningPolicies", @@ -155186,7 +155186,7 @@ }, "response": [ { - "id": "3812e12e-90be-4f5d-8d89-89cc007a794f", + "id": "46c3caa0-134f-4d8c-80d9-1b35eddace48", "name": "List of ProvisioningPolicyDto objects", "originalRequest": { "url": { @@ -155231,7 +155231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9981704a-8e4b-4a9f-8013-79f828ea9706", + "id": "4fd5e771-7e5b-4c60-9ef9-06c858442da1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155276,7 +155276,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba9f076d-789d-4b21-95bc-ffe752bebae9", + "id": "dbfe21cb-27d1-4e86-91a1-a983ff6b883b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155321,7 +155321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "47b48bb8-d07d-4535-ab4a-486cd92ba999", + "id": "2123d0a9-498d-45de-ad3e-4c4ab8fcbdfe", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155366,7 +155366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b07bf4f4-3196-4b15-a580-1dabf41c5d19", + "id": "5bd890b6-e902-4b17-ab9b-3c1634a54e4f", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155411,7 +155411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1149e06-25d8-4322-a34a-2bcec9e031f3", + "id": "d04eaeb0-e1b4-4139-bfb1-f7e47d7bb15d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155456,7 +155456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7771ca09-93d4-4d8e-9a3a-1e08135babb2", + "id": "e7294177-4502-4a3f-9026-6136b001cce6", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155507,7 +155507,7 @@ } }, { - "id": "84bfd55e-7535-4ea7-8ea2-1346c0fc676d", + "id": "738b3104-244e-4a8b-9e60-1d25e68c3b6d", "name": "Create Provisioning Policy", "request": { "name": "Create Provisioning Policy", @@ -155562,7 +155562,7 @@ }, "response": [ { - "id": "71a3f37b-b85d-42ea-bf8e-fa1704d204fb", + "id": "98af8f1e-764b-4d6b-84cd-bd0ff165722b", "name": "Created ProvisioningPolicyDto object", "originalRequest": { "url": { @@ -155620,7 +155620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fdf83731-60cf-49db-8455-06cf677f00b9", + "id": "47557bf5-e67f-426d-878a-4dad83af5640", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -155678,7 +155678,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7bb7a333-0252-4163-9c4b-ea0ab1c076ca", + "id": "5639dae1-0cdc-4a99-b2d3-95232b5c894e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -155736,7 +155736,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de032f6d-73f6-4481-9cc7-2107453245d6", + "id": "0ea96969-4a35-4e63-86d0-c13489e2f8f7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -155794,7 +155794,7 @@ "_postman_previewlanguage": "json" }, { - "id": "846b6d71-1ce5-455e-8533-7a60bcb07f65", + "id": "e546cad0-a0c9-41d3-a733-8045d5de82df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -155852,7 +155852,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2288e2dc-e6c5-4c8a-a841-42f2369ef0cc", + "id": "df9b2b64-a7be-436f-8d66-760767bfcab0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -155910,7 +155910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "878e2e8b-5280-4c53-85b6-d2b69a296cfa", + "id": "f932de02-49b3-4db3-b708-16eb262c5b8c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -155974,7 +155974,7 @@ } }, { - "id": "fce991ed-c75a-4cf0-acd8-326971e09ab8", + "id": "d9a4e55b-4cd3-41f2-9ea6-1537b2ce8ff0", "name": "Get Provisioning Policy by UsageType", "request": { "name": "Get Provisioning Policy by UsageType", @@ -156027,7 +156027,7 @@ }, "response": [ { - "id": "76cb214e-3e91-4788-86b4-1b0fcee2356e", + "id": "0420eee5-2345-4406-afc8-783e513a07af", "name": "The requested ProvisioningPolicyDto was successfully retrieved.", "originalRequest": { "url": { @@ -156073,7 +156073,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49a4ba1b-b7ab-4924-b66f-0adc2e0ca1ef", + "id": "ad7d1c39-9e54-4704-a984-0a0ee18ce700", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156119,7 +156119,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2bee0503-11bd-4851-91a2-024f5b2c554e", + "id": "a297e412-8ed8-46c5-ae54-791ec544f025", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156165,7 +156165,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10719e60-6c40-4836-9607-48b2cd9e3c9e", + "id": "8501206e-ed42-4ef8-823b-b4ddf32a3285", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156211,7 +156211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4c5565bd-388b-4461-a350-da96a50f493b", + "id": "fa086714-7584-4712-aa0f-a7b873b2ed1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156257,7 +156257,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8aa1ce12-8251-48b7-be52-5e26f7daca76", + "id": "9bc1e0e9-c63d-43c2-9141-ba3e2ce06864", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156303,7 +156303,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f915adb3-6662-4c9a-b125-64a5e13cae0d", + "id": "4d2c9bbe-dcc5-44dc-8e3d-5282e170873c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156355,7 +156355,7 @@ } }, { - "id": "b494fe8d-d68f-47e3-aa94-84e31de52a5a", + "id": "98b1b09d-88e9-4c16-a872-c90fe2fecf9c", "name": "Update Provisioning Policy by UsageType", "request": { "name": "Update Provisioning Policy by UsageType", @@ -156421,7 +156421,7 @@ }, "response": [ { - "id": "c887f827-f3cf-44d2-a95d-4c779440c35a", + "id": "c62da6d3-34f9-42a9-a922-520780032d8c", "name": "The ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -156480,7 +156480,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d292b82d-0256-44e5-b8e9-429fe8270a1f", + "id": "1ada677d-4a53-4285-a961-7085b45c5557", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -156539,7 +156539,7 @@ "_postman_previewlanguage": "json" }, { - "id": "196872e7-a601-407b-a9ea-443d707bb785", + "id": "9eff0734-58ed-491e-90f7-82faeb2e5986", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -156598,7 +156598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "161dcfb9-3b6e-4125-913b-244743b7d396", + "id": "7fc809df-d700-44eb-8a56-cbdc3dc40636", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -156657,7 +156657,7 @@ "_postman_previewlanguage": "json" }, { - "id": "422aa358-b120-43b4-a2fc-1dabc91481d3", + "id": "2e43f24f-6d14-4f74-af6f-c2af1fd20c3e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -156716,7 +156716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb442388-f800-4a67-af9e-0ce199252270", + "id": "c80e3757-8238-4ffe-a9cb-e87ee6db195c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -156775,7 +156775,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fc8b3766-e4c0-4020-bdbf-295d3c9f7b78", + "id": "3d03af59-dbc9-4dc4-b921-2c4eec65e5a4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -156840,7 +156840,7 @@ } }, { - "id": "d2088c67-2a21-4dd9-b2c4-9f4e2c4d6ff1", + "id": "771b1c0f-b17b-47d6-93fc-40310614e315", "name": "Partial update of Provisioning Policy", "request": { "name": "Partial update of Provisioning Policy", @@ -156906,7 +156906,7 @@ }, "response": [ { - "id": "3c22ef16-e86b-4b77-8ae5-82565db1b57e", + "id": "41fd8f1c-ed79-434e-bb67-c30d48a7799e", "name": "The ProvisioningPolicyDto was successfully updated.", "originalRequest": { "url": { @@ -156965,7 +156965,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8883dbde-8778-4ba5-8bfc-015eaca12b47", + "id": "009a5a9e-3a14-4ada-9134-77d543cb3a85", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157024,7 +157024,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8efaa4ab-bcf1-47b9-af35-4590b3cbcbbb", + "id": "efce364a-7cc8-4665-bf4c-843ed421835f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157083,7 +157083,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a734701f-7913-4003-823b-c43f90fa6b7e", + "id": "cd4ebeee-9a93-47f5-9814-30de5f449f86", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157142,7 +157142,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93ccf183-939f-448f-aaaa-145416eaccf3", + "id": "b796e0e8-6c7f-4703-8b95-b3d423953c72", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157201,7 +157201,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f0c1922-e984-40fc-b9ce-01da853b732b", + "id": "d80e9c00-bde8-4955-8dda-eb6c713fa2db", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157260,7 +157260,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdb6f68c-de2b-4cfd-8b08-b7b207d27f66", + "id": "0a2dc9a9-0ce1-4068-82e1-9359c872d5bf", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157325,7 +157325,7 @@ } }, { - "id": "a1eaa281-4c2a-462b-a06b-1362f5377b3c", + "id": "f3b96b98-94ed-4586-9f3f-d136c139dc9b", "name": "Delete Provisioning Policy by UsageType", "request": { "name": "Delete Provisioning Policy by UsageType", @@ -157378,7 +157378,7 @@ }, "response": [ { - "id": "26f278fc-d572-4a63-b051-d9155641ca0d", + "id": "515e137c-56ad-4cd8-8c4b-55a93265e1ab", "name": "The ProvisioningPolicyDto was successfully deleted.", "originalRequest": { "url": { @@ -157414,7 +157414,7 @@ "_postman_previewlanguage": "text" }, { - "id": "4bd462da-a385-4eae-bf49-1197ffdff6ed", + "id": "5432cbb7-c2fe-4807-bc53-a3adee350f97", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157460,7 +157460,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dfc0dbf4-414c-48ba-b552-f2dbcfdb46ce", + "id": "fde898ed-f773-41bb-b8e9-63cee4761f30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157506,7 +157506,7 @@ "_postman_previewlanguage": "json" }, { - "id": "518bdf4a-ece5-4d60-9664-168ac4572738", + "id": "a7897ff9-0576-4d8b-843f-c7f5e43d56c1", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157552,7 +157552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52cb1cbb-826c-42f2-a0c0-615ad59a0c9c", + "id": "5d5c48c2-0c2c-4c1c-9eaa-706ee2b861e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -157598,7 +157598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fd9e3389-3254-4baf-8bea-a704ac527b5a", + "id": "69f256dd-077d-4b2c-b6cc-d8ceef8f885f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -157644,7 +157644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2d223466-fca2-47a1-8640-169a1c7b5e92", + "id": "9668ba31-c549-4385-afbc-60bb314aca49", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -157696,7 +157696,7 @@ } }, { - "id": "a9c69918-c56d-4321-9b65-e27f13d24d36", + "id": "cc964c57-ad4f-4e23-a4b8-fdba4fad6c04", "name": "Bulk Update Provisioning Policies", "request": { "name": "Bulk Update Provisioning Policies", @@ -157752,7 +157752,7 @@ }, "response": [ { - "id": "936fe9b9-bd39-4ba5-8f8d-abcb725f0c3e", + "id": "1796d8ef-7510-4205-b794-cfd0cc1344b0", "name": "A list of the ProvisioningPolicyDto was successfully replaced.", "originalRequest": { "url": { @@ -157811,7 +157811,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1935843c-7216-4c7d-8afe-e0d4688ec80d", + "id": "474f7e79-fd25-44a8-869c-4db0406824dd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -157870,7 +157870,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c925f0a9-a8db-43f3-9883-4daf0e6a7687", + "id": "0d3f1da0-1d3a-412d-8c5b-6970a6360328", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -157929,7 +157929,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19c34a87-3928-4355-81eb-68f1be4d1f7f", + "id": "335b699b-e08c-4284-9b3a-6acee0920b07", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -157988,7 +157988,7 @@ "_postman_previewlanguage": "json" }, { - "id": "18ee7414-4923-4216-bd53-898c4ca6ca91", + "id": "4fe61671-e6aa-4974-9ec4-7af849f29c21", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158047,7 +158047,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa0d0903-a15e-401f-89a6-8444a025147c", + "id": "e42b8e05-b395-4c5b-976b-8800aabf3877", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158106,7 +158106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dabbc6de-c04d-45c4-b2a4-9e148ce95671", + "id": "547d856b-5041-4081-8655-4f0843c2bcdb", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158171,7 +158171,7 @@ } }, { - "id": "1eb532d5-fd98-4f35-933a-61b3662b26df", + "id": "eec56436-9bcd-4aff-b6f2-41dd77e71000", "name": "List Schemas on Source", "request": { "name": "List Schemas on Source", @@ -158232,7 +158232,7 @@ }, "response": [ { - "id": "63fce32b-e413-4a08-a500-d1c2605390a0", + "id": "3c4dfc84-edb0-44bd-bbb3-5f59f7e8d6c1", "name": "The schemas were successfully retrieved.", "originalRequest": { "url": { @@ -158296,7 +158296,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e56127d-9e6c-4bb8-9ba3-511c169a02fd", + "id": "acaba69a-3af4-47c8-8e1f-07f9ac8651d7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158360,7 +158360,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b24da326-2237-47b9-85b1-289cfefe6301", + "id": "1820a6de-4411-4099-a758-622c9d1f5ac1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158424,7 +158424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "89acff40-957e-4239-9b2d-b14b9ccec537", + "id": "db93962d-0a7c-40ae-b196-c2f6c0c2d59e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158488,7 +158488,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ce68c3d-e21f-42af-8afb-2642bfb2a04d", + "id": "af3dc0c4-6229-4660-9662-ae57c1b49ee4", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -158552,7 +158552,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2dd17282-f27f-4dbf-8d47-ae70f059c254", + "id": "8991c490-325a-4fe2-9687-ae319d89a8ba", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -158616,7 +158616,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c3681159-e251-4df0-a55f-427f58d1d73e", + "id": "02225341-024f-4bb2-aab0-e74e2e3ba6f1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -158686,7 +158686,7 @@ } }, { - "id": "8a878824-4f89-458c-b020-0b05aa7a1c85", + "id": "50e0d4e7-71c7-4109-95ed-c3878cb15675", "name": "Create Schema on Source", "request": { "name": "Create Schema on Source", @@ -158741,7 +158741,7 @@ }, "response": [ { - "id": "389ab43b-b326-4109-8651-21399d6a7374", + "id": "bfd45dd1-ed26-4ee8-93b7-f15fede72737", "name": "The schema was successfully created on the specified source.", "originalRequest": { "url": { @@ -158799,7 +158799,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6e54ab22-8cb6-46b6-bd01-6193a9f14315", + "id": "67335a25-1630-469e-a25b-0697217edda2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -158857,7 +158857,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2be7e31f-c46a-49cc-ac85-3bf452418704", + "id": "357a095d-1784-47e6-ad57-fffbf9407f7c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -158915,7 +158915,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2f56df00-8442-4b21-a6ee-d07cf52fd7dd", + "id": "540b33ff-e4da-4ef5-b863-bf6374446b49", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -158973,7 +158973,7 @@ "_postman_previewlanguage": "json" }, { - "id": "143c15eb-76e0-481c-80eb-22d0fdf17c8a", + "id": "ad01f637-ef45-41c9-b9fa-3dbd987d4c5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159031,7 +159031,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e2795515-0b4c-44bf-a83b-01bf5644b817", + "id": "d2b669ab-ec0e-44e6-a48e-2179eb83b291", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159095,7 +159095,7 @@ } }, { - "id": "409889c2-5fae-4b28-8d70-b58c66d42731", + "id": "94257030-28e1-49ec-9c69-de883b2e2bad", "name": "Get Source Schema by ID", "request": { "name": "Get Source Schema by ID", @@ -159148,7 +159148,7 @@ }, "response": [ { - "id": "e797211b-ce69-4e97-81f5-b2bf66054ad2", + "id": "e2afdfb4-1a3d-4453-8540-107eb2860ea2", "name": "The requested Schema was successfully retrieved.", "originalRequest": { "url": { @@ -159194,7 +159194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "683dba84-f051-4fc2-9b62-5efb2acb9007", + "id": "4a0c5853-a0c4-47b4-86cb-107d8debaa76", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159240,7 +159240,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee33c6d4-708a-4e96-aec6-595942151622", + "id": "e1c02f32-737b-4f95-9ce4-f52336edfff4", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159286,7 +159286,7 @@ "_postman_previewlanguage": "json" }, { - "id": "880a21bf-8dc0-4d6d-83d3-052255668207", + "id": "f78e3091-4111-4130-a587-382b09db1215", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159332,7 +159332,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ddb2cc55-f04e-47db-94f0-a83c581d99b2", + "id": "513686c6-8ced-4ac3-8383-2ccbd3121397", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159378,7 +159378,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba5c407a-4971-4abb-ac79-25b4b25afef4", + "id": "376a8ce6-776a-4cdb-a006-7c79af247314", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159424,7 +159424,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eb6294ed-09f3-4430-8901-89a1fe55657d", + "id": "637d06cd-28fc-44c2-909d-1a73ceac35b7", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159476,7 +159476,7 @@ } }, { - "id": "f46c4991-ae60-499f-a765-8f3279c64e49", + "id": "3db4d858-61e1-46a9-b357-cf64fb8a7b85", "name": "Update Source Schema (Full)", "request": { "name": "Update Source Schema (Full)", @@ -159542,7 +159542,7 @@ }, "response": [ { - "id": "166baa2a-58b1-4f4a-89ca-8a4c71f04424", + "id": "6ce9c7ba-5322-4125-a907-b6a12ead7e77", "name": "The Schema was successfully replaced.", "originalRequest": { "url": { @@ -159601,7 +159601,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aacbf74a-44dd-4385-8a6f-00bfcc782268", + "id": "0d6610ab-879a-49ff-957f-08c41d8cf8de", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -159660,7 +159660,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8f30d9b4-e153-4983-b7f3-795346ae5582", + "id": "8ea7dee5-f6a8-4b03-a495-a4c6a816376c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -159719,7 +159719,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3fc0bca3-f248-4d12-bc0f-08f453184106", + "id": "d4069fa2-9517-4bf1-9370-542fa41fc24e", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -159778,7 +159778,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5adb91b3-e3e0-4b2e-965c-25805f9e0cb2", + "id": "b424f837-e1d6-4c55-b51c-1cfb8155c2b0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -159837,7 +159837,7 @@ "_postman_previewlanguage": "json" }, { - "id": "df02f472-4aa4-42b4-b9ff-4a4180cdedc2", + "id": "5766133e-2234-466a-95f7-fc9d375ebfca", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -159896,7 +159896,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eeb4555d-e387-403f-a67c-67f663720506", + "id": "d7bc0981-fef9-461b-8b8b-703b28a82039", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -159961,7 +159961,7 @@ } }, { - "id": "e4a70118-7cd9-4c77-acfd-f539db154ad6", + "id": "1182dc12-6c3a-481a-b4c1-b6c81e7293bf", "name": "Update Source Schema (Partial)", "request": { "name": "Update Source Schema (Partial)", @@ -160027,7 +160027,7 @@ }, "response": [ { - "id": "df7762ef-eb6a-44e6-b445-678f1c445fa4", + "id": "a5d66973-ec72-452b-88e7-700f1756ed27", "name": "The Schema was successfully updated.", "originalRequest": { "url": { @@ -160086,7 +160086,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16d91344-6b62-4a5c-8e2f-59a3266acb83", + "id": "966e09cd-cb99-45f7-9723-72bf2b028564", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160145,7 +160145,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fecae2d2-5069-4e17-847f-caf9bc96f21a", + "id": "fce327aa-101b-421f-a95b-6194b3af08ab", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160204,7 +160204,7 @@ "_postman_previewlanguage": "json" }, { - "id": "00e69c79-c956-4a5f-90b5-ffddc42fd3b2", + "id": "565932b2-efcc-4b43-8ef4-e85cb1600234", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160263,7 +160263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "26053775-4605-4d4a-a02d-b34a68085216", + "id": "59b76e56-66d5-46f4-9fb9-407177725720", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160322,7 +160322,7 @@ "_postman_previewlanguage": "json" }, { - "id": "03a40efe-cab3-4cac-97a2-53895192b96c", + "id": "ba485ba2-992a-46e7-8896-af858f96b970", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160381,7 +160381,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92077329-9073-4949-b764-cea27fe3f6e8", + "id": "0bef8400-0449-4c52-b5e6-1b8bce753f14", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160446,7 +160446,7 @@ } }, { - "id": "58c582d1-8dc5-4809-8c0a-64b0584e5b44", + "id": "19010a4f-34ce-461e-b9d5-c3cb98dbc651", "name": "Delete Source Schema by ID", "request": { "name": "Delete Source Schema by ID", @@ -160496,7 +160496,7 @@ }, "response": [ { - "id": "2f90f540-a5b2-4969-9e5e-93703e3a37c6", + "id": "5edc27ff-5b66-4dbd-bf74-cab0a4bbb1da", "name": "The Schema was successfully deleted.", "originalRequest": { "url": { @@ -160532,7 +160532,7 @@ "_postman_previewlanguage": "text" }, { - "id": "60b16caf-9b2d-40df-8b2d-31c6dc419c45", + "id": "b08590aa-1ff3-400b-85f8-16afd2c56cba", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160578,7 +160578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1a014132-1d6a-4f9d-8059-bf338f386496", + "id": "8c2b1ed9-4f5a-486b-8a0e-301b20194b0a", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160624,7 +160624,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd06fa75-b79d-40b7-9534-17d3e259fe78", + "id": "bf0d7f88-1125-4678-80fb-3f0827f35b9c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -160670,7 +160670,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5202e1d6-734f-470e-8b6f-1d5afece431a", + "id": "4a5d5f73-22ca-4ed2-8d91-b0f7236e33bb", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -160716,7 +160716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ce00fbde-25fc-45d6-887f-01efb8d61011", + "id": "155df3bb-83d5-4f4c-a313-5946fabc04bc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -160762,7 +160762,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a8a986f2-17f1-4b0b-a661-d122c7235884", + "id": "c4589667-fea0-4978-b484-cb1bb2c13816", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -160814,7 +160814,7 @@ } }, { - "id": "604567cf-ac73-461e-82a7-baebf01a6e27", + "id": "00975a7a-4183-4f7f-9164-cdfbe6638f77", "name": "Fetches source health by id", "request": { "name": "Fetches source health by id", @@ -160856,7 +160856,7 @@ }, "response": [ { - "id": "2344c8d2-bd29-43dc-8dfb-eedb843402c5", + "id": "e3399a0c-ba0e-48dd-befc-64a3e4b9bef9", "name": "Fetched source health successfully", "originalRequest": { "url": { @@ -160901,7 +160901,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6a5a4c53-b96f-4189-a1a9-9cd5b40e54e9", + "id": "b46f8ad1-7ebe-48f8-98ee-65bdf4c5996e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -160946,7 +160946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2b770d77-20ab-4a74-b6db-c577ef1c435c", + "id": "6a3bc499-075b-4940-b3b7-077ad22634d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -160991,7 +160991,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6086d68b-0639-4415-af45-9b6e178e49f3", + "id": "5c0cf5a5-d26a-476a-b0e0-5926368d588c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161036,7 +161036,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fc8d90b-a740-40d2-a6b0-0019d337f432", + "id": "722de3ca-9a6c-48b9-8ff0-079ff024b9ea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161081,7 +161081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a72dbf27-7e71-4947-b76b-629cd204a547", + "id": "82e01876-9f4f-487e-a2bb-d17a928b2ecc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161126,7 +161126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "028be08e-bdf4-4bb3-b55e-6a81f7e09613", + "id": "7af61bfb-6728-4669-af25-7a9169d610cd", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161177,7 +161177,7 @@ } }, { - "id": "442ea7f2-88da-414d-811b-a210c45dd5e3", + "id": "89f89990-7fcb-4606-8e3c-6f9931173c30", "name": "Downloads source accounts schema template", "request": { "name": "Downloads source accounts schema template", @@ -161220,7 +161220,7 @@ }, "response": [ { - "id": "fabafa48-9fb7-417f-80f9-0c851132d5ea", + "id": "a602c9c9-2044-412f-8be5-8c6fc023bcdb", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -161266,7 +161266,7 @@ "_postman_previewlanguage": "text" }, { - "id": "dbbcbad6-6b0b-4142-9f96-5c86e9964c09", + "id": "7d193e32-38f4-4026-a71e-b0f30d69f0fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161312,7 +161312,7 @@ "_postman_previewlanguage": "json" }, { - "id": "db67a0b8-527a-45d8-9406-0769ff8e58e7", + "id": "2a5bd516-40b0-4eff-81ac-1ff2ab75f220", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161358,7 +161358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0e78b518-d475-46b2-b69c-753556709cd1", + "id": "6807409b-4c65-4215-8dd1-026f1708edd8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161404,7 +161404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "16ba3114-bfd8-4410-b908-cc6fda6d196b", + "id": "9e72701d-54a7-4d6f-b143-5cdcec4b0171", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -161450,7 +161450,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9ee573ce-c18a-41c3-b687-83d2c886dc15", + "id": "fa6a2f12-c31b-4b05-9a75-afb938e6268f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161496,7 +161496,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57181bf5-3aa9-4f56-995e-d66fd4f44e4d", + "id": "d93633d5-293f-40b7-a0af-4954ce55fdc3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161548,7 +161548,7 @@ } }, { - "id": "8e4da3cc-82a0-40fb-b69f-e8b4737d3a34", + "id": "605306c1-5efa-43a2-b66f-8215e6ad4989", "name": "Uploads source accounts schema template", "request": { "name": "Uploads source accounts schema template", @@ -161607,7 +161607,7 @@ }, "response": [ { - "id": "be37e7a9-d411-4366-8047-aa20b84db8a4", + "id": "44025d5b-324e-42e8-ac77-d156c21dc78c", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -161669,7 +161669,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8e0c121c-9c13-40a0-8b6d-bce6a86e708c", + "id": "7f4f3852-31c8-478a-a280-ae59f5d63f82", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -161731,7 +161731,7 @@ "_postman_previewlanguage": "json" }, { - "id": "201f7e2b-835d-4e7c-994f-4fd47c92f229", + "id": "0b9b76ea-4e9a-4c09-8bde-5ee06ec4caa5", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -161793,7 +161793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7b3a424-b207-472e-896f-f89baa87b7fc", + "id": "390878af-34f7-4d31-8589-64ffe46a3112", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -161855,7 +161855,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57e4b982-2b1f-4c9d-a8bc-05010d4523e2", + "id": "f10ddcc5-acc7-463f-a4a9-b6d619348981", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -161917,7 +161917,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3f247b38-6340-48a3-b56b-b6d8e031eb5e", + "id": "62789a87-9fd0-4067-90d9-3be0c604896b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -161985,7 +161985,7 @@ } }, { - "id": "21b4d5ac-7ceb-41f8-865c-afadf7f231ac", + "id": "515b5ec1-fd1d-4dff-9eca-f0cc5948af8f", "name": "Downloads source entitlements schema template", "request": { "name": "Downloads source entitlements schema template", @@ -162038,7 +162038,7 @@ }, "response": [ { - "id": "3bf1552a-9183-40c4-817f-d7017101d988", + "id": "0ce4b513-21a4-4de3-8d02-5d86c66bb946", "name": "Successfully downloaded the file", "originalRequest": { "url": { @@ -162094,7 +162094,7 @@ "_postman_previewlanguage": "text" }, { - "id": "440887c7-ca51-46b3-badd-7be43db4e4d5", + "id": "c9e54a2e-0d39-44c7-b686-24aae862221e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162150,7 +162150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5ab391f8-b80d-4604-ad54-382b645ab998", + "id": "6c801ed4-d5fe-4a91-bae5-8e29c3240b30", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162206,7 +162206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "982c775e-d95b-4c9d-b394-d86f9fe362db", + "id": "2c9be214-fbe4-49e9-b11e-3e7f0224fda4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162262,7 +162262,7 @@ "_postman_previewlanguage": "json" }, { - "id": "30abe93c-3049-46bf-a14b-c2fb84ac65ce", + "id": "71f3cdd1-0bea-4348-87d2-068481aef282", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -162318,7 +162318,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e453168-47ec-429f-aa3c-d94c7a342c78", + "id": "255f45fb-2021-4c34-a2fc-52a8bef90fcc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162374,7 +162374,7 @@ "_postman_previewlanguage": "json" }, { - "id": "49bf8bb5-f429-4942-9901-daf941474235", + "id": "0b94ddcf-45c5-4708-9c6a-b9d1bd238f43", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162436,7 +162436,7 @@ } }, { - "id": "b9c8888c-cb7d-453d-9c7f-be70349e1869", + "id": "7c3e0d48-8181-4fb6-8221-c67df7d600a0", "name": "Uploads source entitlements schema template", "request": { "name": "Uploads source entitlements schema template", @@ -162505,7 +162505,7 @@ }, "response": [ { - "id": "1923934a-0c5a-47f8-a56d-c2d2074ab9c0", + "id": "fc6c374c-93f0-4ca0-9b1c-7e9534548c9a", "name": "Successfully uploaded the file", "originalRequest": { "url": { @@ -162577,7 +162577,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9690bd6b-7df0-4329-a170-e559e360a48e", + "id": "4a106098-a73d-435b-9d67-d4e813d676ed", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -162649,7 +162649,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5447df5-b86c-4ee4-a606-f99b3827df74", + "id": "ccd16015-88c9-41f6-b3ec-3639450e73d9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -162721,7 +162721,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee55378e-9ccc-45e0-92d7-869ef19e3e30", + "id": "b700d87b-e5c2-4fbb-add3-759b65e29951", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -162793,7 +162793,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9e9b7bc9-ea61-49c7-96c6-6b461bd5365a", + "id": "b9636a30-5a83-48bf-96d2-7a7297f5319d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -162865,7 +162865,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7de22730-3bee-41e1-9715-c3b917f0fa08", + "id": "7aecbb87-e2e7-441f-9dce-ed0b6aea189a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -162943,7 +162943,7 @@ } }, { - "id": "f4e6e724-6a04-472e-ad95-eaec78a9cc8e", + "id": "77d37a5a-91f6-4215-8403-bdac8bcd9dae", "name": "Upload connector file to source", "request": { "name": "Upload connector file to source", @@ -163001,7 +163001,7 @@ }, "response": [ { - "id": "b7b458d0-f4e9-4ddf-9f26-7187e352db73", + "id": "2d97f630-f1da-432b-a48b-0dc1ebfbeb4f", "name": "Uploaded the file successfully and sent all post-upload events", "originalRequest": { "url": { @@ -163062,7 +163062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7f5c2463-b84c-41b8-85d5-98d7b840a90a", + "id": "83b033ce-8f71-4d37-854e-df78efa41218", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163123,7 +163123,7 @@ "_postman_previewlanguage": "json" }, { - "id": "39efaa9c-cf9b-41cf-8ce3-e31eead4087a", + "id": "cc777204-999f-4253-a595-7933d4b06a0f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163184,7 +163184,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4dc4e1b-1851-4f18-8512-50f58eaa84ff", + "id": "8430890c-cae0-43d5-b7ee-cf09c45e243d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163245,7 +163245,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bfdd90e-3505-4d92-841e-1d7267d96ae7", + "id": "4e953660-6e03-497e-94ba-05c8e5aec8dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163306,7 +163306,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c416a091-14fd-4430-92f8-ffe735f274f4", + "id": "a4b45581-76e5-4842-bd57-510a4aa6736c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163373,7 +163373,7 @@ } }, { - "id": "056562a5-c263-4bde-9275-dd7a51895d05", + "id": "c979b7eb-26a9-4555-91b1-0d73306b9c98", "name": "Get Source Connections by ID", "request": { "name": "Get Source Connections by ID", @@ -163419,7 +163419,7 @@ }, "response": [ { - "id": "6fa504e9-749a-404a-8de5-0bce57c1d114", + "id": "8c153c0d-af3d-4d25-a5ed-f85ab4d89681", "name": "Source Connections object.", "originalRequest": { "url": { @@ -163459,12 +163459,12 @@ "value": "application/json" } ], - "body": "{\n \"identityProfiles\": [\n {\n \"id\": \"76cfddb62818416f816bc494410f46c4\",\n \"name\": \"ODS-Identity-Profile\",\n \"identityCount\": 100\n },\n {\n \"id\": \"76cfddb62818416f816bc494410f46c4\",\n \"name\": \"ODS-Identity-Profile\",\n \"identityCount\": 100\n }\n ],\n \"credentialProfiles\": [\n \"dolore do\",\n \"ullamco ut\"\n ],\n \"sourceAttributes\": [\n \"Ut officia\",\n \"sint est labore dolor amet\"\n ],\n \"mappingProfiles\": [\n \"ODS-AD-Profile\",\n \"ODS-Profile2\"\n ],\n \"dependentCustomTransforms\": [\n {\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"sourceName\": \"Workday\",\n \"attributeName\": \"DEPARTMENT\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"!(nativeIdentity.startsWith(\\\"*DELETED*\\\"))\",\n \"accountPropertyFilter\": \"(groups.containsAll({'Admin'}) || location == 'Austin')\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"first_name\",\n \"sourceName\": \"Source\"\n }\n }\n }\n },\n {\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"sourceName\": \"Workday\",\n \"attributeName\": \"DEPARTMENT\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"!(nativeIdentity.startsWith(\\\"*DELETED*\\\"))\",\n \"accountPropertyFilter\": \"(groups.containsAll({'Admin'}) || location == 'Austin')\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"first_name\",\n \"sourceName\": \"Source\"\n }\n }\n }\n }\n ],\n \"dependentApps\": [\n {\n \"cloudAppId\": \"9e3cdd80edf84f119327df8bbd5bb5ac\",\n \"description\": \"This is a Sailpoint application\",\n \"enabled\": true,\n \"provisionRequestEnabled\": true,\n \"accountSource\": {\n \"useForPasswordManagement\": false,\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n }\n ]\n },\n \"launcherCount\": 100,\n \"matchAllAccount\": true,\n \"owner\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"appCenterEnabled\": false\n },\n {\n \"cloudAppId\": \"9e3cdd80edf84f119327df8bbd5bb5ac\",\n \"description\": \"This is a Sailpoint application\",\n \"enabled\": true,\n \"provisionRequestEnabled\": true,\n \"accountSource\": {\n \"useForPasswordManagement\": false,\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n }\n ]\n },\n \"launcherCount\": 100,\n \"matchAllAccount\": true,\n \"owner\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"appCenterEnabled\": false\n }\n ],\n \"missingDependents\": [\n {\n \"dependencyType\": \"dependantApps\",\n \"reason\": \"If there was an error retrieving any dependencies, it would lbe listed here\"\n },\n {\n \"dependencyType\": \"dependantApps\",\n \"reason\": \"If there was an error retrieving any dependencies, it would lbe listed here\"\n }\n ]\n}", + "body": "{\n \"identityProfiles\": [\n {\n \"id\": \"76cfddb62818416f816bc494410f46c4\",\n \"name\": \"ODS-Identity-Profile\",\n \"identityCount\": 100\n },\n {\n \"id\": \"76cfddb62818416f816bc494410f46c4\",\n \"name\": \"ODS-Identity-Profile\",\n \"identityCount\": 100\n }\n ],\n \"credentialProfiles\": [\n \"quis pariatur ullamco\",\n \"cupidatat occaecat pariatur\"\n ],\n \"sourceAttributes\": [\n \"id dolore occaecat\",\n \"anim in in\"\n ],\n \"mappingProfiles\": [\n \"ODS-AD-Profile\",\n \"ODS-Profile2\"\n ],\n \"dependentCustomTransforms\": [\n {\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"sourceName\": \"Workday\",\n \"attributeName\": \"DEPARTMENT\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"!(nativeIdentity.startsWith(\\\"*DELETED*\\\"))\",\n \"accountPropertyFilter\": \"(groups.containsAll({'Admin'}) || location == 'Austin')\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"first_name\",\n \"sourceName\": \"Source\"\n }\n }\n }\n },\n {\n \"name\": \"Timestamp To Date\",\n \"type\": \"dateFormat\",\n \"attributes\": {\n \"sourceName\": \"Workday\",\n \"attributeName\": \"DEPARTMENT\",\n \"accountSortAttribute\": \"created\",\n \"accountSortDescending\": false,\n \"accountReturnFirstLink\": false,\n \"accountFilter\": \"!(nativeIdentity.startsWith(\\\"*DELETED*\\\"))\",\n \"accountPropertyFilter\": \"(groups.containsAll({'Admin'}) || location == 'Austin')\",\n \"requiresPeriodicRefresh\": false,\n \"input\": {\n \"type\": \"accountAttribute\",\n \"attributes\": {\n \"attributeName\": \"first_name\",\n \"sourceName\": \"Source\"\n }\n }\n }\n }\n ],\n \"dependentApps\": [\n {\n \"cloudAppId\": \"9e3cdd80edf84f119327df8bbd5bb5ac\",\n \"description\": \"This is a Sailpoint application\",\n \"enabled\": true,\n \"provisionRequestEnabled\": true,\n \"accountSource\": {\n \"useForPasswordManagement\": false,\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n }\n ]\n },\n \"launcherCount\": 100,\n \"matchAllAccount\": true,\n \"owner\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"appCenterEnabled\": false\n },\n {\n \"cloudAppId\": \"9e3cdd80edf84f119327df8bbd5bb5ac\",\n \"description\": \"This is a Sailpoint application\",\n \"enabled\": true,\n \"provisionRequestEnabled\": true,\n \"accountSource\": {\n \"useForPasswordManagement\": false,\n \"passwordPolicies\": [\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n },\n {\n \"type\": \"PASSWORD_POLICY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"Policy ODS\"\n }\n ]\n },\n \"launcherCount\": 100,\n \"matchAllAccount\": true,\n \"owner\": [\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n }\n ],\n \"appCenterEnabled\": false\n }\n ],\n \"missingDependents\": [\n {\n \"dependencyType\": \"dependantApps\",\n \"reason\": \"If there was an error retrieving any dependencies, it would lbe listed here\"\n },\n {\n \"dependencyType\": \"dependantApps\",\n \"reason\": \"If there was an error retrieving any dependencies, it would lbe listed here\"\n }\n ]\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c50d7ab-6876-4a57-bec7-d874dad4a4fa", + "id": "0ad2d741-2d09-4ea8-95a1-e6430f9b378e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163509,7 +163509,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5a25498-0749-4794-a180-227b9183ff37", + "id": "36a9aea9-b5fa-4ae1-9893-2974a16c05d1", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -163554,7 +163554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "913dcea9-d668-458c-b2bc-78f99568345c", + "id": "46ed8a87-0123-498a-be45-6c9497080a2f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -163599,7 +163599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df9a6c6-1a7c-4b5b-b1c9-db9c4179ed8a", + "id": "77cbe88e-ed58-40e4-951c-23806be96cea", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -163644,7 +163644,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4355e9b-cd2b-4464-b386-acdc48e112c1", + "id": "2b50509f-87a9-4c84-81bf-7a58dee53354", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -163689,7 +163689,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c962a7c9-8590-4e39-9ab4-88e54a6f5f53", + "id": "0d6e1487-3dd2-4152-8f0f-5c90f11ac85a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -163746,7 +163746,7 @@ "description": "Use this API to implement object tagging functionality. \nWith object tagging functionality in place, any user in an organization can use tags as a way to group objects together and find them more quickly when the user searches Identity Security Cloud. \n\nIn Identity Security Cloud, users can search their tenants for information and add tags objects they find.\nTagging an object provides users with a way of grouping objects together and makes it easier to find these objects in the future. \n\nFor example, if a user is searching for an entitlement that grants a risky level of access to Active Directory, it's possible that the user may have to search through hundreds of entitlements to find the correct one. \nOnce the user finds that entitlement, the user can add a tag to the entitlement, \"AD_RISKY\" to make it easier to find the entitlement again.\nThe user can add the same tag to multiple objects the user wants to group together for an easy future search, and the user can also do so in bulk.\nWhen the user wants to find that tagged entitlement again, the user can search for \"tags:AD_RISKY\" to find all objects with that tag. \n\nWith the API, you can tag even more different object types than you can in Identity Security Cloud (access profiles, entitlements, identities, and roles). \nYou can use the API to tag all these objects:\n\n- Access profiles \n\n- Applications \n\n- Certification campaigns\n\n- Entitlements\n\n- Identities \n\n- Roles \n\n- SOD (separation of duties) policies\n\n- Sources \n\nYou can also use the API to directly find, create, and manage tagged objects without using search queries. \n\nThere are limits to tags: \n\n- You can have up to 500 different tags in your tenant.\n\n- You can apply up to 30 tags to one object. \n\n- You can have up to 10,000 tag associations, pairings of 1 tag to 1 object, in your tenant. \n\nBecause of these limits, it is recommended that you work with your governance experts and security teams to establish a list of tags that are most expressive of governance objects and access managed by Identity Security Cloud. \n\nThese are the types of information often expressed in tags: \n\n- Affected departments\n\n- Compliance and regulatory categories \n\n- Remediation urgency levels \n\n- Risk levels \n\nRefer to [Tagging Items in Search](https://documentation.sailpoint.com/saas/help/search/index.html?h=tags#tagging-items-in-search) for more information about tagging objects in Identity Security Cloud. \n", "item": [ { - "id": "01cab509-a2df-4d02-9277-f36f5394d1b2", + "id": "637b9bc1-4b97-4ffd-b61e-c2a63fafe0ab", "name": "List Tagged Objects", "request": { "name": "List Tagged Objects", @@ -163812,7 +163812,7 @@ }, "response": [ { - "id": "5ae20d6a-64d7-444a-b0f8-61a6e813c0d7", + "id": "d11a354d-ddb6-42c9-9d5f-36ae3d19cbe5", "name": "List of all tagged objects.", "originalRequest": { "url": { @@ -163892,7 +163892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7074a34a-6189-4460-b382-a3e44d0cbca1", + "id": "a5775d53-7962-410c-811f-c51d73170b38", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -163972,7 +163972,7 @@ "_postman_previewlanguage": "json" }, { - "id": "54c0ce71-8b4e-49d6-aa82-748e8cc36317", + "id": "f6e31dcd-862f-402c-a718-efed02820fce", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164052,7 +164052,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f30c555-32de-4634-9add-d05bc94e2d7e", + "id": "e4b66f9d-c78a-4ada-955c-d4b7664342ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164132,7 +164132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c289adc6-5e87-456d-975a-09ffcb01f8e1", + "id": "8310e365-45a2-4d28-8e5a-07c7e0fcb537", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164212,7 +164212,7 @@ "_postman_previewlanguage": "json" }, { - "id": "83287cdc-835d-487f-96fc-e6849f6fbec8", + "id": "961773bf-bd36-4c9d-be3a-6f641b35bb2d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164298,7 +164298,7 @@ } }, { - "id": "53f42286-aa1e-4185-9def-910c1604b9ac", + "id": "d0fb3d59-6323-4ca3-9fc9-ef4af34d182e", "name": "Add Tag to Object", "request": { "name": "Add Tag to Object", @@ -164340,7 +164340,7 @@ }, "response": [ { - "id": "d0b608a0-54c4-4f68-a107-a65068ffbe0f", + "id": "1a5daec7-f118-421f-8173-c74c437ff1d2", "name": "Created.", "originalRequest": { "url": { @@ -164386,7 +164386,7 @@ "_postman_previewlanguage": "text" }, { - "id": "627e617b-8ac5-4bf5-a2fd-6cdeca49c8a2", + "id": "13efc223-2d32-43b6-9d9a-bb5c37897f45", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164442,7 +164442,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0db949b-c1a2-4331-97f9-dc0aa5956c4e", + "id": "ad408083-797b-4928-8148-e393c6360180", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164498,7 +164498,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9cb1cc06-63ac-404c-bcab-df75a4c7fc1d", + "id": "5aec0c3d-3824-4bd5-8486-8794f3d0567c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -164554,7 +164554,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c6f5f998-6fb5-4523-8d81-0c8d098d9240", + "id": "6f166ae6-6335-4ec8-b57e-a61b3741645e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -164610,7 +164610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29f080fa-64b3-4bc7-bc51-2db0e2e841fb", + "id": "3b591e90-e96d-4710-9938-8f68d50a7741", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -164672,7 +164672,7 @@ } }, { - "id": "378c3a1e-ec2d-4109-8ab7-97f4559ecc7f", + "id": "69b266c9-36fe-4c12-85c7-984d0f88a8f0", "name": "List Tagged Objects by Type", "request": { "name": "List Tagged Objects by Type", @@ -164750,7 +164750,7 @@ }, "response": [ { - "id": "bb27117e-d306-4939-812d-3ce82575acb6", + "id": "69576ef9-44bd-4bde-94b9-ded134bbd786", "name": "List of all tagged objects for specified type.", "originalRequest": { "url": { @@ -164831,7 +164831,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a7be2725-4676-4698-b21e-f5cdb1299fdf", + "id": "0295e175-cf56-4b0b-b5b7-1464675707a5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -164912,7 +164912,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fe1e2e1a-398f-4458-be03-2e6eafd32091", + "id": "441e079f-c8dd-4c58-bf4e-c0a7cc02c1e9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -164993,7 +164993,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dbfbd304-2f2d-43ef-a83c-485e5a7a0ea7", + "id": "1884d1c9-e7ee-4f66-81c0-6ff01637b479", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165074,7 +165074,7 @@ "_postman_previewlanguage": "json" }, { - "id": "29fd5741-4956-46df-be10-f22cc3317550", + "id": "bc3204a8-e40b-4026-829e-3c22450e0313", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165155,7 +165155,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4ba73d42-f4ca-45d2-bb79-61bfbf15b678", + "id": "fff02210-bdf4-42b8-a1a4-bd3c332f84c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165242,7 +165242,7 @@ } }, { - "id": "7642ce38-e54b-4e2d-9e5f-85d42349bf0e", + "id": "37931976-1bd6-4398-a2d8-81193544fa6d", "name": "Get Tagged Object", "request": { "name": "Get Tagged Object", @@ -165294,7 +165294,7 @@ }, "response": [ { - "id": "5e3e3472-ec53-4d3e-ab60-7b439082b272", + "id": "6c6398cb-f9b5-448a-bb6f-48d33f44678d", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -165339,7 +165339,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7a22d76-0042-40ac-8599-1d059e4de258", + "id": "1a0b1f1d-dc48-4060-b8cb-bdd1c656b752", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165384,7 +165384,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9d09e4b6-324d-4803-a543-7f6f1a71bc6d", + "id": "03fe0874-30f9-4b28-9ee4-80e42bb60b05", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165429,7 +165429,7 @@ "_postman_previewlanguage": "json" }, { - "id": "347afe39-f81b-4edb-9c65-aa38d82042c3", + "id": "74394a33-591a-435c-9080-5243233498fa", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165474,7 +165474,7 @@ "_postman_previewlanguage": "json" }, { - "id": "10a59490-3614-4ba5-a493-c09457aaaf98", + "id": "a50ee8e9-dcde-46b0-87e5-cd09de41335f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165519,7 +165519,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e2ad45a-bd06-4ab5-8b39-afe66d91f6a9", + "id": "c2df0056-9033-4379-bfd9-861ca80ef9dc", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165570,7 +165570,7 @@ } }, { - "id": "41f23c38-09d2-4f32-a93e-3ccf2029ec0e", + "id": "623cb697-1e08-4a8b-b094-bf5b5334b6f4", "name": "Update Tagged Object", "request": { "name": "Update Tagged Object", @@ -165635,7 +165635,7 @@ }, "response": [ { - "id": "3439778f-231d-4726-b4b4-f12fe61df35b", + "id": "7ed23ea8-6c43-4bde-84c1-cec74831340a", "name": "Tagged object by type and ID.", "originalRequest": { "url": { @@ -165693,7 +165693,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc570b72-5d9a-41a3-a699-9209f02a5b3d", + "id": "b1d434e4-3aad-4e61-88df-50b26209bc44", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -165751,7 +165751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a56d66a6-fead-4598-bbf8-b7b8d7383851", + "id": "b858a89f-02ce-4527-a7d6-1eb257351dc2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -165809,7 +165809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d2db1558-5d42-40d9-bce4-d1ee592d0844", + "id": "e2c731d2-b8a5-45c7-8b4e-e502b7209d11", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -165867,7 +165867,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cba26054-a305-463e-8bdc-38a30a32087f", + "id": "5bda1f83-0547-48ee-ae72-6b1c376a6c56", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -165925,7 +165925,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6c265073-fc61-4a3e-b40d-b38d8d6c426c", + "id": "f25a0e60-ac10-4ad8-9dbb-cfb2094fa96e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -165989,7 +165989,7 @@ } }, { - "id": "20047e83-d6c4-4c29-bcae-378198ae655a", + "id": "887ad4d8-348c-44ad-924b-cb3cafd52e53", "name": "Delete Tagged Object", "request": { "name": "Delete Tagged Object", @@ -166041,7 +166041,7 @@ }, "response": [ { - "id": "b922d685-a7fd-487f-b95c-4bc0c8f21399", + "id": "2a9371ec-909b-4928-8586-91ffa72d48a1", "name": "No content.", "originalRequest": { "url": { @@ -166076,7 +166076,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3a4019db-ea88-411a-9b53-a0e50225540f", + "id": "0a37ee76-91a4-4145-a9fa-4f5c5aa60769", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166121,7 +166121,7 @@ "_postman_previewlanguage": "json" }, { - "id": "33e4741e-dcc3-4344-9443-7f7fdc2dcafe", + "id": "09e947dc-8e2d-4ba3-a02e-e95efaf54c02", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166166,7 +166166,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fd8bb29-4465-40d8-91bd-70d3ca7b0660", + "id": "0a95717b-1781-4a7a-8fa9-db2e9b148d31", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166211,7 +166211,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cf7709b1-5b23-420d-b471-234344f52080", + "id": "d38e2acc-8fdb-4196-b670-0ba1d39615fb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166256,7 +166256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d4fd464d-2edc-454c-b4e8-fed11b5348cb", + "id": "ec9f14aa-3460-4d3d-be02-6b9ac6a62bca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166307,7 +166307,7 @@ } }, { - "id": "7f273cc3-1b2c-4def-aa4c-0521d4c7c3b5", + "id": "c880721d-3d4f-4593-95b0-7b2793295ba6", "name": "Tag Multiple Objects", "request": { "name": "Tag Multiple Objects", @@ -166350,7 +166350,7 @@ }, "response": [ { - "id": "4ab72adf-b6c7-4a06-ae96-a92db592dad0", + "id": "e3768845-13fd-4cb2-a1c5-5d2cc310d670", "name": "Request succeeded.", "originalRequest": { "url": { @@ -166407,7 +166407,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ffafccda-a3bf-4dda-9087-aa49cccace38", + "id": "fc932c6b-f76b-4f6c-ac76-bda868e7c64c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166464,7 +166464,7 @@ "_postman_previewlanguage": "json" }, { - "id": "96e30ae9-065b-4c8d-a436-db2f15d2dd30", + "id": "3081c92d-5970-4505-a749-e663f8fe0b39", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166521,7 +166521,7 @@ "_postman_previewlanguage": "json" }, { - "id": "402d0c5b-bad9-4774-8c33-12c5e5be65ae", + "id": "51e698fd-0187-42d0-8402-e9428a9d06d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166578,7 +166578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cd30bf39-91b4-44b0-8487-548eb11d4438", + "id": "a2409123-de9d-4007-b2cd-9ca780f0636d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -166635,7 +166635,7 @@ "_postman_previewlanguage": "json" }, { - "id": "848d061d-3e4a-46b0-a650-9afc459397d7", + "id": "7e188fda-bbeb-4f7d-b3ee-5ec45c25982d", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -166698,7 +166698,7 @@ } }, { - "id": "37a2e2e7-0b3e-4936-a0b0-48185c9d791e", + "id": "8a16d6d3-4dc4-4f20-b71d-616e98d7796b", "name": "Remove Tags from Multiple Objects", "request": { "name": "Remove Tags from Multiple Objects", @@ -166741,7 +166741,7 @@ }, "response": [ { - "id": "73b0364d-5523-42ca-84ee-406635124ed2", + "id": "0380aa0e-a481-46a3-9bd2-c5a140d7ab53", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -166788,7 +166788,7 @@ "_postman_previewlanguage": "text" }, { - "id": "b5057d1b-27d5-4cde-b08f-027083aab02c", + "id": "b9f32ad8-6cd1-41b2-a5c0-d7e5b3a5bd11", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -166845,7 +166845,7 @@ "_postman_previewlanguage": "json" }, { - "id": "60e44907-ff78-4b7d-88e5-bab6c161c82d", + "id": "132abc5f-1af8-4cac-8092-3a3769d305b0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -166902,7 +166902,7 @@ "_postman_previewlanguage": "json" }, { - "id": "13af4d35-8b8f-4431-a99d-6d2d0bc60cfb", + "id": "7a6419b8-9d2a-47a7-a901-6cdc47022cf5", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -166959,7 +166959,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdd9eba8-480b-4a04-b62d-96cea805b439", + "id": "0e0de6e5-c40e-4093-9a59-92495472526c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167016,7 +167016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3cece47d-9f5a-4eb0-882f-d185e5b37097", + "id": "f60d72e1-cbbc-4227-ae63-a53c645da4c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167085,7 +167085,7 @@ "description": "The purpose of this API is to expose functionality for the manipulation of Transform objects.\nTransforms are a form of configurable objects which define an easy way to manipulate attribute data without having\nto write code. These endpoints don't require API calls to other resources, audit service is used for keeping track\nof which users have made changes to the Transforms.\n\nRefer to [Transforms](https://developer.sailpoint.com/docs/extensibility/transforms/) for more information about transforms.\n", "item": [ { - "id": "34e35503-dd19-40de-96aa-fb0e5cd150d9", + "id": "7a4d3749-f885-4e99-8bd4-00eb961322fc", "name": "List transforms", "request": { "name": "List transforms", @@ -167160,7 +167160,7 @@ }, "response": [ { - "id": "21b27e75-7dbc-48b2-accd-a8d274a79e36", + "id": "131147f5-37e0-447e-8e35-13867f9aefe6", "name": "A list of transforms matching the given criteria.", "originalRequest": { "url": { @@ -167249,7 +167249,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1358b265-6331-41be-9f22-aa61b40eb3c6", + "id": "4b6592e9-88e0-4722-8e7f-d50bd5e1b45a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167338,7 +167338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "34229825-7aa3-4819-9f2f-78646ff2836a", + "id": "89537484-8aa5-4775-a649-2b2140731856", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167427,7 +167427,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a38d05d8-0e9a-4aa2-a82e-4e8ee4ccb31e", + "id": "4f207727-f568-418f-b572-dfd24a309b21", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -167516,7 +167516,7 @@ "_postman_previewlanguage": "json" }, { - "id": "48104701-3017-4325-94f8-d179c7b842cf", + "id": "79537ab0-7c3d-40e2-b8b9-7feee5a0ff1b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -167605,7 +167605,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d1017275-f1f4-4748-86d7-a3008812efdf", + "id": "8cd846c3-7e32-45b1-9300-5888f121d8a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -167694,7 +167694,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a11a015c-a590-4b16-86ab-29bfbf8a752b", + "id": "02017e23-ce57-4e20-9336-70865484fc29", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -167789,7 +167789,7 @@ } }, { - "id": "45d4ddba-9dba-4c6a-9ebc-fe2a8cd8cf99", + "id": "a24158be-b784-47e1-ae34-ce2afbaa51b2", "name": "Create transform", "request": { "name": "Create transform", @@ -167831,7 +167831,7 @@ }, "response": [ { - "id": "59334cc7-00ef-4708-87d7-96ae08dea930", + "id": "cf3947bf-c886-4432-bf39-b2a7d32f811a", "name": "Indicates the transform was successfully created and returns its representation.", "originalRequest": { "url": { @@ -167887,7 +167887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb5c0236-c8a1-4f34-8c41-4c6409df6007", + "id": "b0e6ff92-1a5c-4d8f-a2e5-11ac4960eddf", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -167943,7 +167943,7 @@ "_postman_previewlanguage": "json" }, { - "id": "927e681b-7df0-4ecc-9855-df59ae2ddea6", + "id": "7bd45573-73d8-45e2-a045-059beb9935e2", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -167999,7 +167999,7 @@ "_postman_previewlanguage": "json" }, { - "id": "de1da44b-7b37-4a4f-86e6-08bc9f149873", + "id": "e56d720f-d615-4eb7-beb6-e90652ef6b54", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168055,7 +168055,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f226a1e5-787a-4338-8c02-2404f3c2d827", + "id": "8181bbc6-39b5-4f05-89c4-962ffa8c768e", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168111,7 +168111,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42ea8262-87fa-47a1-9e3e-743df5ced6d2", + "id": "6403020a-73a4-4ede-87f9-8de94905856e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168167,7 +168167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e1e23c2-e7ee-4d01-a7e2-fbf7703083ee", + "id": "8827ec86-56c7-4ec9-808d-7c67392654c5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168229,7 +168229,7 @@ } }, { - "id": "d86701c6-fba3-4acd-98a8-536e7ddf11bf", + "id": "2c5b04f6-30b6-44fe-bc16-71322de2c2ad", "name": "Transform by ID", "request": { "name": "Transform by ID", @@ -168270,7 +168270,7 @@ }, "response": [ { - "id": "08d4c3da-9c01-4098-b03d-b66c3fa926e9", + "id": "8cf9e742-bef8-49b6-8254-9d12c8fd9524", "name": "Transform with the given ID", "originalRequest": { "url": { @@ -168314,7 +168314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "67e98658-7e0b-4bb5-adc9-de8225f6a804", + "id": "a77123f9-fae7-4a86-8a57-9fbc8d2a128a", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168358,7 +168358,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bef1618c-d309-4230-932d-e7b1daf0738f", + "id": "2fc24430-6c1d-4c87-99b5-488ad4ea735b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168402,7 +168402,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c508e62c-1954-42ea-9b79-40fa74ac48cb", + "id": "0e3c594c-b17c-4762-a82a-18f9f5c3431c", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168446,7 +168446,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e5facb2-712b-46d7-93d9-c22cc0ad6b55", + "id": "fc29f7af-77b0-4423-8462-de2533acf1df", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168490,7 +168490,7 @@ "_postman_previewlanguage": "json" }, { - "id": "19f49b74-7448-4167-a5eb-1f6bfdabe87d", + "id": "2b4b6fee-bc3a-4dc7-9ef5-46d790d79119", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168534,7 +168534,7 @@ "_postman_previewlanguage": "json" }, { - "id": "aa836597-3bc7-468c-bc7a-d13f331902fa", + "id": "f9af673e-0f13-4262-939a-a3a6b90a7c75", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -168584,7 +168584,7 @@ } }, { - "id": "08c57ab3-3dfe-4a95-93ff-0cb9be0abd27", + "id": "2092b750-d6dc-480c-b500-e89155ffdb20", "name": "Update a transform", "request": { "name": "Update a transform", @@ -168638,7 +168638,7 @@ }, "response": [ { - "id": "334d22d5-e486-4071-8a50-bcfeb101519e", + "id": "907a8627-550d-4a11-b31e-4a3d3ffc2c79", "name": "Indicates the transform was successfully updated and returns its new representation.", "originalRequest": { "url": { @@ -168695,7 +168695,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c6ff5c8-3fb4-4475-be43-188b4c6a1d4a", + "id": "b4a54917-55c3-4e59-987e-34cac1971502", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -168752,7 +168752,7 @@ "_postman_previewlanguage": "json" }, { - "id": "658e16b0-6109-424a-81bb-c4328e6d2001", + "id": "269f6ed9-9dbd-42c4-b61f-3fc89f6256f9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -168809,7 +168809,7 @@ "_postman_previewlanguage": "json" }, { - "id": "06df1ab2-b329-4c6a-9616-3150235d702d", + "id": "2ec6be28-5704-4907-aece-badd91b36e63", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -168866,7 +168866,7 @@ "_postman_previewlanguage": "json" }, { - "id": "350e216f-f949-4495-9604-ef4018a12de2", + "id": "2db87591-6b3e-47a9-a7de-d546d78530d7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -168923,7 +168923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d48637fe-1916-4187-a4ef-b81c00347a7e", + "id": "4c0f77eb-00c1-433c-bb53-838d1b29b290", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -168980,7 +168980,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9394e9db-d988-48b3-ad07-f739cef32331", + "id": "39588182-ffee-47e6-9136-7f30e452056b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169043,7 +169043,7 @@ } }, { - "id": "ab724685-d91c-4f92-9b2a-655c02c9296d", + "id": "1a8dbd8c-a9d6-446c-afa3-0866fe7d167e", "name": "Delete a transform", "request": { "name": "Delete a transform", @@ -169084,7 +169084,7 @@ }, "response": [ { - "id": "d18c7012-ae26-4454-8315-c868e413f5cc", + "id": "304bca09-4bd1-4b67-9ebb-aaac8acf255d", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -169118,7 +169118,7 @@ "_postman_previewlanguage": "text" }, { - "id": "16ca07e5-9b78-4545-9ffa-6c7fd3683469", + "id": "5ad14822-ae58-47d7-9af9-f0e872c24a6c", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -169162,7 +169162,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93504145-4c03-4be5-849b-542006241639", + "id": "aaff74d6-f3c7-4d3b-962f-dd2e1cab9916", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169206,7 +169206,7 @@ "_postman_previewlanguage": "json" }, { - "id": "adeee8c5-102f-4a3a-8a04-50e09c07b5a2", + "id": "9bdd94df-bd58-4c60-958e-746837764388", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169250,7 +169250,7 @@ "_postman_previewlanguage": "json" }, { - "id": "92969dfd-6173-42b4-b630-a5fe6a4cf415", + "id": "83fcdb42-974d-40c2-8298-34f7216ec9ca", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169294,7 +169294,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e5debab-2781-4637-b802-428c3b30fbe1", + "id": "9ca68f89-6cc1-45aa-b74e-387dcfd736a0", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169338,7 +169338,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c8bcf9c0-f061-4e26-84c0-a20253a00d27", + "id": "8f801ba7-6290-4f72-8091-af4f31a89893", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169394,7 +169394,7 @@ "description": "Use this API to implement work item functionality. \nWith this functionality in place, users can manage their work items (tasks). \n\nWork items refer to the tasks users see in Identity Security Cloud's Task Manager. \nThey can see the pending work items they need to complete, as well as the work items they have already completed. \nTask Manager lists the work items along with the involved sources, identities, accounts, and the timestamp when the work item was created. \nFor example, a user may see a pending 'Create an Account' work item for the identity Fred.Astaire in GitHub for Fred's GitHub account, fred-astaire-sp. \nOnce the user completes the work item, the work item will be listed with his or her other completed work items. \n\nTo complete work items, users can use their dashboards and select the 'My Tasks' widget. \nThe widget will list any work items they need to complete, and they can select the work item from the list to review its details. \nWhen they complete the work item, they can select 'Mark Complete' to add it to their list of completed work items. \n\nRefer to [Task Manager](https://documentation.sailpoint.com/saas/user-help/task_manager.html) for more information about work items, including the different types of work items users may need to complete.\n", "item": [ { - "id": "a9b62978-44b0-4247-bd64-9ef7c34ad543", + "id": "f36b0576-435f-4048-b762-0f86f86975d0", "name": "List Work Items", "request": { "name": "List Work Items", @@ -169460,7 +169460,7 @@ }, "response": [ { - "id": "d1732c07-429e-4de3-b410-f5ddedc0ab03", + "id": "63853b5c-e646-48aa-ac7a-7b8156548541", "name": "List of work items", "originalRequest": { "url": { @@ -169540,7 +169540,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6f6a095d-e241-476a-96e3-e03b5e702d49", + "id": "8f89c5e9-3369-4cc5-9cdb-1fab5197f8d3", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -169620,7 +169620,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1bd78439-bcdf-4664-bce1-da52f8b8b630", + "id": "242a328c-985b-4f47-bf7e-982da3c792df", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -169700,7 +169700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f09b9534-2225-41d1-81d5-fcc630268ffc", + "id": "a4d57a49-a640-47a3-884f-e7be63ee8f6b", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -169780,7 +169780,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c9324fec-2b04-49fe-a84c-712ff059a5ed", + "id": "5f3d497f-36ea-4e61-8d2f-b3849211105b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -169860,7 +169860,7 @@ "_postman_previewlanguage": "json" }, { - "id": "24f70621-03de-41da-96e7-83fb142e4bc5", + "id": "a5fdf852-807c-4b4d-af21-63451c39f331", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -169946,7 +169946,7 @@ } }, { - "id": "904a3e0c-0509-45bf-bfca-5594606436a2", + "id": "5577361f-c6f5-4c8d-b7bc-7b32d39a56c3", "name": "Completed Work Items", "request": { "name": "Completed Work Items", @@ -170013,7 +170013,7 @@ }, "response": [ { - "id": "ba3088c0-ce98-4d8c-96fc-789faa99c923", + "id": "08208ea5-58bb-4d2a-8113-9eacecd7fa8c", "name": "List of completed work items.", "originalRequest": { "url": { @@ -170094,7 +170094,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f26ec5cf-52ec-4641-9140-d27d7f7a268e", + "id": "9d86ba50-acb2-49fd-a7b3-2931afe85000", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170175,7 +170175,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d00f4174-796b-407a-97bb-190fb3b4eb28", + "id": "79592c91-93ec-4c42-a866-018025b984f3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170256,7 +170256,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad20da30-9574-4ad1-8f2c-97cab60098fb", + "id": "e2b1743a-a89f-47ad-aa29-c7f8edd487a0", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170337,7 +170337,7 @@ "_postman_previewlanguage": "json" }, { - "id": "722fe6c1-3fac-4156-b95a-688f154689fb", + "id": "3c5d9a0b-a689-432f-b104-33acb29856a8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170418,7 +170418,7 @@ "_postman_previewlanguage": "json" }, { - "id": "57aef0eb-9c56-4b71-9e54-51327ffa4991", + "id": "87ac59f5-777b-49df-9381-48a44d26936c", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170505,7 +170505,7 @@ } }, { - "id": "99019b0e-4fd5-42da-bc30-0ac1ffbf0bf3", + "id": "1afaa74d-6bec-4c47-b531-9ebb19fb5017", "name": "Count Work Items", "request": { "name": "Count Work Items", @@ -170545,7 +170545,7 @@ }, "response": [ { - "id": "8d694028-9f8c-4732-ba79-68e579a3f838", + "id": "8419a098-57cc-4707-b28f-e1a5cc80daee", "name": "List of work items", "originalRequest": { "url": { @@ -170599,7 +170599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4585eca1-e44d-484e-a998-0ece688864e3", + "id": "b712aaa9-caba-4160-ae2d-1d18a1e6e8c7", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -170653,7 +170653,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cad5ca16-48bf-4aac-a089-a5105ce83ff3", + "id": "419cacb7-38d2-4f6a-9e60-c95eaa52d99d", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -170707,7 +170707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1d1cc9db-a9a3-48ea-931d-d1ad45bf1e4a", + "id": "7630c3d5-d1e8-4a4a-8c9a-6045c5a39d9d", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -170761,7 +170761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d89862e-dcec-452a-bfaa-ae8086551dd9", + "id": "dddf923e-21b8-4bad-b59a-b575ebb8f9e6", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -170815,7 +170815,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8bd1c80b-f343-4596-befe-fd165aa4a245", + "id": "87fe4f90-ac33-41cd-9617-8c968bd651a5", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -170875,7 +170875,7 @@ } }, { - "id": "08f3e2f1-1c87-473b-8ef5-b8da601669b1", + "id": "1f40fd62-b214-4d11-93fe-3c293f6aea2a", "name": "Count Completed Work Items", "request": { "name": "Count Completed Work Items", @@ -170916,7 +170916,7 @@ }, "response": [ { - "id": "446fe652-c2f4-4738-b0c8-7576fca00565", + "id": "1e5f5673-28a4-4d07-8c54-ab2695e1d3b0", "name": "List of work items", "originalRequest": { "url": { @@ -170971,7 +170971,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fc62365-1174-49a0-b027-e20099fd5af2", + "id": "b098d083-3064-4e4f-b8ef-19285460034e", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171026,7 +171026,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b26e4022-234c-48c8-a76f-ad12081f9062", + "id": "e74fa185-38fe-4db0-9fc8-722514a82a6a", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171081,7 +171081,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1df619c6-3650-4cc9-9c61-6b9a66e1517d", + "id": "2b2c1ab7-0c53-4d9a-822e-2d69bcd72139", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171136,7 +171136,7 @@ "_postman_previewlanguage": "json" }, { - "id": "43bd9286-3d36-47a5-bcff-c485b7e327ea", + "id": "77728602-933c-48fe-a5b0-9bdc67236482", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171191,7 +171191,7 @@ "_postman_previewlanguage": "json" }, { - "id": "62bde68a-9a15-41ad-9203-21bae7c944f9", + "id": "12a13c4f-ee51-4bdd-8716-4559f9740466", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171252,7 +171252,7 @@ } }, { - "id": "aba1823e-dc22-4a8a-b6e7-3532395ea3f7", + "id": "12db775a-7264-45e9-8332-120055611512", "name": "Work Items Summary", "request": { "name": "Work Items Summary", @@ -171292,7 +171292,7 @@ }, "response": [ { - "id": "3da98d41-353c-4418-839a-edb37cb2bb68", + "id": "9b4defd0-8d5a-4082-be11-5af407c7e871", "name": "List of work items", "originalRequest": { "url": { @@ -171346,7 +171346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b45b8a60-43e8-4562-b425-ce770e27d922", + "id": "cb037f6a-74c3-4e31-90d5-01719299e85c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171400,7 +171400,7 @@ "_postman_previewlanguage": "json" }, { - "id": "11187e88-0323-491b-9d0d-39f1f2776aaa", + "id": "f39629be-0b58-4605-876e-360f3224e7a4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171454,7 +171454,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eebddaef-fc51-4db4-ab55-5bf9082967c1", + "id": "e48e0049-ad68-4089-9618-21a376f21f34", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171508,7 +171508,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b1047dc3-ee31-46f7-aa85-39e6a8a1975c", + "id": "275de42d-d416-4161-a95b-043016b2b5e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171562,7 +171562,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9b4e3a8e-c8ce-4948-8cb9-74c4b1724f7a", + "id": "033beaa9-755f-4c38-b68a-0248635e5d5a", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171622,7 +171622,7 @@ } }, { - "id": "e7a4cbe6-2e28-4659-96f3-efd5a69a4b54", + "id": "8ca89c86-2d77-485d-aec1-0022aa0b5829", "name": "Get a Work Item", "request": { "name": "Get a Work Item", @@ -171663,7 +171663,7 @@ }, "response": [ { - "id": "b1296b38-e989-4705-affe-a1df94d7aad4", + "id": "3ab3737a-e886-4361-a4d1-5f2c5d099f18", "name": "The work item with the given ID.", "originalRequest": { "url": { @@ -171707,7 +171707,7 @@ "_postman_previewlanguage": "json" }, { - "id": "711a661a-58c7-469e-aac7-a38973080f37", + "id": "e8f11bd5-a4f5-4482-933f-72f597894218", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -171751,7 +171751,7 @@ "_postman_previewlanguage": "json" }, { - "id": "23576c06-7220-40b3-a2e8-66c2d070b6d0", + "id": "6fe1e23a-8098-4044-b85c-c2f238a975c7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -171795,7 +171795,7 @@ "_postman_previewlanguage": "json" }, { - "id": "af941625-bba4-4e34-9fc0-baaf26239fad", + "id": "a469e8b2-431c-4040-9ebc-5c098f546fe3", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -171839,7 +171839,7 @@ "_postman_previewlanguage": "json" }, { - "id": "28bc01ce-cbaf-4e88-81e3-fc1293419237", + "id": "79d880df-a7e0-41f9-b2e3-9f03ee7c69ec", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -171883,7 +171883,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d59841af-f3e2-4a82-a1f0-33cb975ed0c3", + "id": "308a80d6-e07a-416e-aa7c-018e08359e60", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -171933,7 +171933,7 @@ } }, { - "id": "177ad286-8fc4-44c5-adac-3463d01371cb", + "id": "0f815200-8515-4516-aa01-5e3cf0c52ff6", "name": "Complete a Work Item", "request": { "name": "Complete a Work Item", @@ -171974,7 +171974,7 @@ }, "response": [ { - "id": "1643dc3b-9721-4f2b-9fb6-f6aa0c667f97", + "id": "a779efdf-a1a5-4b84-b1d7-06791fba9417", "name": "A WorkItems object", "originalRequest": { "url": { @@ -172018,7 +172018,7 @@ "_postman_previewlanguage": "json" }, { - "id": "77f08323-715b-4223-8759-d370b57fd4e7", + "id": "1bc6615c-51b2-4a40-b046-d6f09fb79493", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172062,7 +172062,7 @@ "_postman_previewlanguage": "json" }, { - "id": "14557f99-5632-4ef2-81d9-7586ab05b063", + "id": "47ec8b14-3c30-489b-8cf6-7b40733ba2b6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172106,7 +172106,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8abd4029-d3a4-48d5-bba6-421833d9a2ae", + "id": "c90880b5-c961-4a72-8ed8-df4a0674ebeb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172150,7 +172150,7 @@ "_postman_previewlanguage": "json" }, { - "id": "42e910d1-4891-4626-9bf2-a33784308846", + "id": "80ab7d7d-cbf8-44a3-bc42-00ce20d2d8a2", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172194,7 +172194,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bee3ba28-45e9-4561-a252-6d4950387207", + "id": "a0b16550-f21b-435c-9abe-eaf215bd929f", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172238,7 +172238,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c30196a0-0109-4337-9d4e-dbfef78b1ca3", + "id": "b1258732-9749-47d1-a29e-b8f76814d94e", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172288,7 +172288,7 @@ } }, { - "id": "a61db2e8-8af6-4ba7-a910-3cd1cb53bd78", + "id": "1b09a6e1-e024-420f-8675-50a87114676e", "name": "Forward a Work Item", "request": { "name": "Forward a Work Item", @@ -172343,7 +172343,7 @@ }, "response": [ { - "id": "8e3ccf5e-9219-4ca5-8ea1-6a7f0ed225e2", + "id": "7c81cb75-0b82-46eb-9a94-853b0d6e1a71", "name": "Success, but no data is returned.", "originalRequest": { "url": { @@ -172391,7 +172391,7 @@ "_postman_previewlanguage": "text" }, { - "id": "398986f7-931e-4cba-b575-ccde27345ae6", + "id": "84100cf6-7eda-4852-a93d-8d258a8b5214", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172449,7 +172449,7 @@ "_postman_previewlanguage": "json" }, { - "id": "69a1b854-a52e-451c-9aa2-b86cb511e615", + "id": "4e42ced8-1b2a-4d22-9058-09cf3db511fe", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172507,7 +172507,7 @@ "_postman_previewlanguage": "json" }, { - "id": "347ac329-c34e-4596-bd4f-d309acdd4a37", + "id": "d3aa5e42-fffb-4662-b46e-0211d9b388bb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172565,7 +172565,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f7ed5795-fef1-4000-9284-0b69543eb84e", + "id": "94365685-6b47-47a6-b010-7787127856a4", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -172623,7 +172623,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27489c72-775c-4af8-abeb-dfb043cfc931", + "id": "03fbd160-0620-4248-9404-c962918e95ac", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -172687,7 +172687,7 @@ } }, { - "id": "80d0663a-94d9-46f2-b033-f2c3362faff7", + "id": "9dcb8da9-f208-45ca-876a-0f488deeaa61", "name": "Approve an Approval Item", "request": { "name": "Approve an Approval Item", @@ -172740,7 +172740,7 @@ }, "response": [ { - "id": "ed4ddf01-7149-4872-9527-0e5badf4b56c", + "id": "6f80767f-2960-4257-9bff-21d17ff8d37c", "name": "A work items details object.", "originalRequest": { "url": { @@ -172786,7 +172786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c9da05c-4da3-429b-9f98-cd099384790b", + "id": "24577bdc-557c-400c-a015-8f8841b814f1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -172832,7 +172832,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2a04fe39-61e9-4a98-8758-fd6a38e4c558", + "id": "d159087e-699b-4214-81ee-dbf83a6d64ac", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -172878,7 +172878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e971c4ef-c19e-4318-a498-67c995afbe18", + "id": "61a79101-2251-43e0-8143-1a3655b9bc48", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -172924,7 +172924,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1e609266-8d0d-4d8a-9c94-c7209e3a1a64", + "id": "8cc237ae-fbbf-468d-b0b8-ee87077b42e8", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -172970,7 +172970,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3848aa9d-391a-47ce-970f-8d3464ffd4a6", + "id": "9396ff97-71f8-4322-b866-b463ed8eafc8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173016,7 +173016,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7c56edfa-fdd9-49b4-8455-3e0309449bb7", + "id": "c7176c1d-2661-4468-9f21-1187eca546fe", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173068,7 +173068,7 @@ } }, { - "id": "33fd53f1-27b4-4926-b8b7-0fea118e162f", + "id": "3d4f5b34-d339-4d58-9a06-8efc46bcc9ba", "name": "Reject an Approval Item", "request": { "name": "Reject an Approval Item", @@ -173121,7 +173121,7 @@ }, "response": [ { - "id": "a125ec0f-bbef-45a1-81b3-0d97094ee1ce", + "id": "b1ecddf6-ab4a-4ce0-a851-38a3b82d70fc", "name": "A work items details object.", "originalRequest": { "url": { @@ -173167,7 +173167,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0a32b257-d905-4b2a-809f-3d2f1acd64a1", + "id": "c5b6f03b-6eec-43ec-9d79-af447ca536a6", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173213,7 +173213,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51bb3277-c0a4-4bcf-ab36-c98a75f5425b", + "id": "785eb6c5-9893-473a-9ba9-dba51614a7fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173259,7 +173259,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0eda4c28-53fc-4e01-b5a6-962867f4f0d6", + "id": "a606b19e-e16d-4a5d-8455-cad58bc615d7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173305,7 +173305,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e32ee61-2528-461a-b309-ca86adf0b8c9", + "id": "81a9a959-8091-4591-af5d-774a8c4cddc6", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173351,7 +173351,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3c2dde73-fd32-43ba-81e1-cd1d7ac9c559", + "id": "3935c715-ea98-48ea-9bf9-da11effc86ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173397,7 +173397,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3756d8e9-6db0-438f-9340-a2dcd5be4105", + "id": "84a193e7-1037-4828-afcc-85bf9132e29b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173449,7 +173449,7 @@ } }, { - "id": "ab340d89-d455-4a4b-9add-4bbbfaa68ac4", + "id": "146309e2-4fcc-4db5-8593-f69d1cb5a01b", "name": "Bulk approve Approval Items", "request": { "name": "Bulk approve Approval Items", @@ -173491,7 +173491,7 @@ }, "response": [ { - "id": "c50fe436-a4f1-47e8-8150-9bbeb697eb43", + "id": "4ea5eca1-f6d7-462d-97dc-4891dae52b44", "name": "A work items details object.", "originalRequest": { "url": { @@ -173536,7 +173536,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59a53b7e-3a70-432e-8e74-b75c774474d2", + "id": "d76f998f-6553-44e5-8f8e-727fe2ab85f2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173581,7 +173581,7 @@ "_postman_previewlanguage": "json" }, { - "id": "851a30d9-0098-4ed2-8068-513d1d59d317", + "id": "ab83d672-1c62-4295-bf11-2cce1602cd11", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173626,7 +173626,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52e3cba0-7ee3-4a27-91b5-a3d6c0048793", + "id": "e9e00ce0-54fb-4ff4-af93-8f3b15270905", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -173671,7 +173671,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3e88f2db-fd62-4c6c-aa4c-cbcb6d2e2db8", + "id": "7578def0-025a-4f7f-a4d1-898a0c9a66f5", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -173716,7 +173716,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5d3026da-a7f7-43eb-943a-726616c78cf7", + "id": "6151a8ae-6bfc-4ecd-8096-feabbeed08af", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -173761,7 +173761,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bdcab41b-ae1d-498e-ad5c-89830c659f3d", + "id": "4628f545-1208-4706-957c-a83deb968789", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -173812,7 +173812,7 @@ } }, { - "id": "b7acb67b-fdc1-4614-a99b-79679ce6313d", + "id": "3e84219b-476e-474a-9201-1e60c092ce57", "name": "Bulk reject Approval Items", "request": { "name": "Bulk reject Approval Items", @@ -173854,7 +173854,7 @@ }, "response": [ { - "id": "caa10b39-3cf7-4637-9c3c-9e850172b1f9", + "id": "02cf58df-5f01-4a50-bd02-1ecba399fcb0", "name": "A work items details object.", "originalRequest": { "url": { @@ -173899,7 +173899,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d66afa0b-8c2b-49b9-9dec-a41e7438b9e4", + "id": "bd2d0be3-9e6b-41d2-8016-cbdac9e55864", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -173944,7 +173944,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3266d08f-0adf-4b3b-967c-d290b0124227", + "id": "086efbde-9961-4194-af57-ebad67d9a959", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -173989,7 +173989,7 @@ "_postman_previewlanguage": "json" }, { - "id": "78c90fd8-3624-4d41-b391-a06d1ab4bbb7", + "id": "98351f84-578c-494b-b3a5-f73fca019a45", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174034,7 +174034,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fb6124e-66ff-426e-a2ed-cb2798429a2f", + "id": "e529511d-bada-40d2-be3f-f9b7ccb0cc78", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174079,7 +174079,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702b0f36-b1e8-45bc-817d-0d52ca9ca311", + "id": "5a42a0de-553b-4713-a43c-6c87ec35e427", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174124,7 +174124,7 @@ "_postman_previewlanguage": "json" }, { - "id": "51596b54-7812-42a2-85e6-dc98e110b74a", + "id": "7960652e-482f-4bf3-a468-e584418f0331", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174175,7 +174175,7 @@ } }, { - "id": "55e0529e-999b-4065-84a5-6be9ec330c78", + "id": "c7cef710-a348-4447-a9da-44d934bfc3c2", "name": "Submit Account Selections", "request": { "name": "Submit Account Selections", @@ -174230,7 +174230,7 @@ }, "response": [ { - "id": "75ce26ca-9da1-4911-bcf9-24e7ada5007f", + "id": "55dc6384-1d2c-43ef-b656-478249e6dea0", "name": "A work items details object.", "originalRequest": { "url": { @@ -174288,7 +174288,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cb2db0a4-258d-4693-8f1a-f0ba3d49541b", + "id": "f2e59f38-5c4d-4ca9-803f-947a7ea7d4fd", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174346,7 +174346,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27c85d85-be75-4104-a553-ecc36d6ab870", + "id": "93cde8ec-5e21-4524-af46-e96cf0b5c042", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174404,7 +174404,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8d5a42f5-e560-4c3f-84c6-9bea2bfb1364", + "id": "f2e75343-9ad2-442d-96ab-e23aa8584ead", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174462,7 +174462,7 @@ "_postman_previewlanguage": "json" }, { - "id": "249fad48-765b-491b-a438-0b0e289d7993", + "id": "b1320512-e99d-4810-a867-8fb589d64aad", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -174520,7 +174520,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dba20d47-b9c2-45df-9fe1-e115c17ad1bb", + "id": "b44bd63d-79db-4fb7-b551-d243962b45e7", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174578,7 +174578,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff9716d4-d04c-4e9c-ae2e-4235ec248192", + "id": "57cccfea-212f-43f3-89c4-ba6498352495", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174648,7 +174648,7 @@ "description": "Workflows allow administrators to create custom automation scripts directly within Identity Security Cloud. These automation scripts respond to [event triggers](https://developer.sailpoint.com/docs/extensibility/event-triggers/#how-to-get-started-with-event-triggers) and perform a series of actions to perform tasks that are either too cumbersome or not available in the Identity Security Cloud UI. Workflows can be configured via a graphical user interface within Identity Security Cloud, or by creating and uploading a JSON formatted script to the Workflow service. The Workflows API collection provides the necessary functionality to create, manage, and test your workflows via REST.\n", "item": [ { - "id": "0a10e241-a2ec-40d7-b51b-3a8cb4446e9b", + "id": "9fc8a4d7-1de3-4066-bc91-d67b192b548d", "name": "List Workflows", "request": { "name": "List Workflows", @@ -174677,7 +174677,7 @@ }, "response": [ { - "id": "8c8eb2f6-351b-499b-8695-1e1b7b791e22", + "id": "5b2f9877-2bbc-47db-8a8e-b6fab952741d", "name": "List of workflows", "originalRequest": { "url": { @@ -174715,12 +174715,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"aliqua aliquip occaecat eu\"\n },\n \"displayName\": \"ullamco officia ad cillum\"\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"dolore ut\"\n },\n \"displayName\": \"irure quis dolor Lorem\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ex\"\n },\n \"displayName\": \"aliquip do aute\"\n }\n },\n {\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"dolor la\"\n },\n \"displayName\": \"ut aliquip\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d216a9a0-77be-408f-8313-915e26b13e8e", + "id": "a970b818-3627-4b12-b85c-fbe801208330", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -174763,7 +174763,7 @@ "_postman_previewlanguage": "json" }, { - "id": "70507ddd-6d4d-4cb8-b689-c9b7181abf27", + "id": "8056a11d-fe25-47cd-a2c1-281318f8ca90", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -174806,7 +174806,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4258b9a8-5b03-4658-9ed8-22bb6d6c606c", + "id": "c31bb2cb-e0c5-4dbe-a4ff-75516f56772f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -174849,7 +174849,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8fb03944-bdde-4599-bdf8-d3b0c84571a1", + "id": "f6f77903-93d4-43b1-a0f7-b09dd40e8c32", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -174892,7 +174892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d3351804-d45f-4ec6-90d2-2bc0ffa9f62b", + "id": "074eb00b-4600-4874-bb22-448e7c0b7554", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -174941,7 +174941,7 @@ } }, { - "id": "e95014e1-7592-4933-8b0e-5ee653f47b53", + "id": "02f36c09-6614-443b-bfba-2a8a741f3cd5", "name": "Create Workflow", "request": { "name": "Create Workflow", @@ -174983,7 +174983,7 @@ }, "response": [ { - "id": "c02abb1d-478f-4199-b32a-9e78f23de020", + "id": "b33c310f-2bee-4b33-a7b9-975bc23e0226", "name": "Event Trigger", "originalRequest": { "url": { @@ -175034,12 +175034,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"laboris nulla culpa in ipsum\"\n },\n \"displayName\": \"proident veniam\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ut dolore \"\n },\n \"displayName\": \"tempor dolor aliqua Duis\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "78ff3639-caf6-4fe6-a478-e91c731996b6", + "id": "9f0e294e-fe86-4ae8-9740-b7e7cb73b2b5", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -175090,12 +175090,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"laboris nulla culpa in ipsum\"\n },\n \"displayName\": \"proident veniam\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ut dolore \"\n },\n \"displayName\": \"tempor dolor aliqua Duis\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e87a1f8d-e800-48ec-9c18-096f9fea5bb0", + "id": "08e408a6-c544-4095-9193-26b24152ddd1", "name": "External Trigger", "originalRequest": { "url": { @@ -175146,12 +175146,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"laboris nulla culpa in ipsum\"\n },\n \"displayName\": \"proident veniam\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ut dolore \"\n },\n \"displayName\": \"tempor dolor aliqua Duis\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "34e42767-afe6-4458-8171-7299775785cc", + "id": "4d886c07-9b32-4a29-85bc-9c8a758dff7c", "name": "Event Trigger", "originalRequest": { "url": { @@ -175207,7 +175207,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3b4e8c5-e12f-47e9-b446-80c0e8af1cec", + "id": "4b9fa6e8-de86-4ff7-a3bc-7d5bb06404a4", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -175263,7 +175263,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0fec3ea3-b77d-48ea-9b89-23c8bed5b938", + "id": "e38ee477-4c98-455e-ad2a-6259a75e8c70", "name": "External Trigger", "originalRequest": { "url": { @@ -175319,7 +175319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7133381-5312-4bb0-8751-a94d46e1abbf", + "id": "31456067-c7bd-4b71-8463-12114e4e0809", "name": "Event Trigger", "originalRequest": { "url": { @@ -175375,7 +175375,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ba6dec44-7dd5-4ffc-84f1-64f9ded8b71c", + "id": "96d62200-daf7-4eaf-ab45-2fbd8f0b0e2a", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -175431,7 +175431,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d730fe5a-e225-41e8-a38d-67b950756324", + "id": "a6abfaa8-173a-4fba-a602-0096e450c436", "name": "External Trigger", "originalRequest": { "url": { @@ -175487,7 +175487,7 @@ "_postman_previewlanguage": "json" }, { - "id": "763a407e-fada-40aa-8f0a-0e75b2b1933f", + "id": "adc9a9d4-7584-404b-a0a2-0ed4f675d4ee", "name": "An example of a 403 response object", "originalRequest": { "url": { @@ -175543,7 +175543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7fd4f37f-acb7-43da-8ee0-567b85cb7b80", + "id": "088eff29-774d-4c04-ad36-ac697062d678", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -175599,7 +175599,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c4bbad8c-1907-4bd4-9071-aa68d6e14aad", + "id": "62beb0e0-51da-46f0-bdff-cee034df4980", "name": "External Trigger", "originalRequest": { "url": { @@ -175655,7 +175655,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ff1a2f28-5b9f-4cba-9c1b-7b538c7d0e5f", + "id": "287f6e5c-cfb9-406a-beb5-9e2d99e8a59e", "name": "Event Trigger", "originalRequest": { "url": { @@ -175711,7 +175711,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5f9f569a-f354-46bf-ac68-0f0db5b112ec", + "id": "a25ff4ce-2da3-4118-bb78-2313014766c7", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -175767,7 +175767,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d664970e-ffe7-4c94-9250-6e53766048b3", + "id": "1db39b48-4c02-415d-9f43-668bcc98b656", "name": "External Trigger", "originalRequest": { "url": { @@ -175823,7 +175823,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17ddcdcb-cd39-437c-b110-1f6cf9766120", + "id": "e08342e1-a3c4-4af5-90b9-4ba3e947ae74", "name": "An example of a 500 response object", "originalRequest": { "url": { @@ -175879,7 +175879,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c94fa70c-420d-41a3-8197-8af8a37f8f28", + "id": "e4e170d9-ddde-4765-a8a9-ff21c56d0301", "name": "Scheduled Trigger", "originalRequest": { "url": { @@ -175935,7 +175935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0ba8e5c1-f056-4452-9c37-7535b8c90793", + "id": "8c8f97d9-1d63-423d-be29-f34e93a7d2f7", "name": "External Trigger", "originalRequest": { "url": { @@ -175997,7 +175997,7 @@ } }, { - "id": "c1a17dd7-7f4a-436a-94c2-5168b00a5126", + "id": "9c6c0262-894d-4a17-af02-65e810b909da", "name": "Get Workflow By Id", "request": { "name": "Get Workflow By Id", @@ -176038,7 +176038,7 @@ }, "response": [ { - "id": "089f7017-5e04-4435-bfe3-ea64b3c09280", + "id": "0f39d7a6-a9c1-43e7-a983-aaeed3af466c", "name": "The workflow object", "originalRequest": { "url": { @@ -176077,12 +176077,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"laboris nulla culpa in ipsum\"\n },\n \"displayName\": \"proident veniam\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ut dolore \"\n },\n \"displayName\": \"tempor dolor aliqua Duis\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d9e1ffd4-4547-4db3-a392-e3e0f3072e38", + "id": "104d66c1-3933-4544-b844-c5d98712f478", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176126,7 +176126,7 @@ "_postman_previewlanguage": "json" }, { - "id": "6250b9bf-5b8d-4ea8-b118-f05be6453b27", + "id": "dd144935-ebe3-4122-919f-6bd957eb1851", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176170,7 +176170,7 @@ "_postman_previewlanguage": "json" }, { - "id": "daa6c6b4-bed1-4e81-bcdd-9f65a607a88d", + "id": "a7e72260-07d0-4467-93f7-981a601a68d8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176214,7 +176214,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd046d6e-db2c-4896-8e42-f5041aaccca1", + "id": "88ac964a-78c2-48dc-8216-0561445cf9f8", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176258,7 +176258,7 @@ "_postman_previewlanguage": "json" }, { - "id": "3b65932a-1f82-4861-a8bb-965a25aad930", + "id": "4614d26e-0fe3-49ae-b3d3-85c8c656b6c4", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176308,7 +176308,7 @@ } }, { - "id": "50223d84-6ff6-43dc-9bab-a0ca3bf504b9", + "id": "7700443e-3e3d-4414-9a78-5b0932041b94", "name": "Update Workflow", "request": { "name": "Update Workflow", @@ -176351,7 +176351,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176362,7 +176362,7 @@ }, "response": [ { - "id": "b7a7dfdf-cb6a-4479-ac19-cf99cc6278cc", + "id": "96e3e888-8df3-4a13-85a5-69d6e6b57430", "name": "The Workflow object", "originalRequest": { "url": { @@ -176397,7 +176397,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176414,12 +176414,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"laboris nulla culpa in ipsum\"\n },\n \"displayName\": \"proident veniam\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ut dolore \"\n },\n \"displayName\": \"tempor dolor aliqua Duis\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "d2e2bf4e-3bd8-4f6e-b395-628d0db0e3f8", + "id": "db0d3092-c480-4f74-930a-67d7e7119937", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176454,7 +176454,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176476,7 +176476,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d939afc9-7a68-4c07-8fd9-43172e3b7027", + "id": "a818a08c-7140-4325-8416-bab1a5b657f0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176511,7 +176511,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176533,7 +176533,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c7057051-9ab4-4171-b03c-1946c3ce67d0", + "id": "56107c8f-918b-40a7-980c-ba57f34ee1ff", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176568,7 +176568,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176590,7 +176590,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a856e031-4c3a-41a0-9e39-c6727991d6ee", + "id": "af67fde1-5ce6-40dd-b01f-933d0b96995c", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -176625,7 +176625,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176647,7 +176647,7 @@ "_postman_previewlanguage": "json" }, { - "id": "35883619-c5d3-41cd-a911-26c387495fa6", + "id": "ce4eb909-3ea7-4a15-8cea-771918e7dbf1", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -176682,7 +176682,7 @@ "method": "PUT", "body": { "mode": "raw", - "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"voluptate sunt\"\n },\n \"displayName\": \"\"\n }\n}", + "raw": "{\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"nisi eiusmod sed qui\"\n },\n \"displayName\": \"exercitatio\"\n }\n}", "options": { "raw": { "headerFamily": "json", @@ -176710,7 +176710,7 @@ } }, { - "id": "28ec3a14-e2bd-417a-b475-5a00952954a0", + "id": "15d1ebbe-072b-4392-b33d-fa3ad3f72d9b", "name": "Patch Workflow", "request": { "name": "Patch Workflow", @@ -176764,7 +176764,7 @@ }, "response": [ { - "id": "6ad06b68-f607-4fe9-a232-b24f8ead78d3", + "id": "b6b22a1e-5b28-4b97-a481-807a8f02c19c", "name": "The Workflow object", "originalRequest": { "url": { @@ -176816,12 +176816,12 @@ "value": "application/json" } ], - "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"laboris nulla culpa in ipsum\"\n },\n \"displayName\": \"proident veniam\"\n }\n}", + "body": "{\n \"id\": \"d201c5e9-d37b-4aff-af14-66414f39d569\",\n \"executionCount\": 2,\n \"failureCount\": 0,\n \"created\": \"2022-01-10T16:06:16.636381447Z\",\n \"modified\": \"2023-12-05T15:18:27.699Z\",\n \"modifiedBy\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c9180a46faadee4016fb4e018c20639\",\n \"name\": \"Thomas Edison\"\n },\n \"creator\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c7180a46faadee4016fb4e018c20642\",\n \"name\": \"Michael Michaels\"\n },\n \"name\": \"Send Email\",\n \"owner\": {\n \"type\": \"IDENTITY\",\n \"id\": \"2c91808568c529c60168cca6f90c1313\",\n \"name\": \"William Wilson\"\n },\n \"description\": \"Send an email to the identity who's attributes changed.\",\n \"definition\": {\n \"start\": \"Send Email Test\",\n \"steps\": {\n \"Send Email\": {\n \"actionId\": \"sp:send-email\",\n \"attributes\": {\n \"body\": \"This is a test\",\n \"from\": \"sailpoint@sailpoint.com\",\n \"recipientId.$\": \"$.identity.id\",\n \"subject\": \"test\"\n },\n \"nextStep\": \"success\",\n \"selectResult\": null,\n \"type\": \"ACTION\"\n },\n \"success\": {\n \"type\": \"success\"\n }\n }\n },\n \"enabled\": false,\n \"trigger\": {\n \"type\": \"EVENT\",\n \"attributes\": {\n \"id\": \"idn:identity-attributes-changed\",\n \"filter.$\": \"$.changes[?(@.attribute == 'manager')]\",\n \"description\": \"Ut dolore \"\n },\n \"displayName\": \"tempor dolor aliqua Duis\"\n }\n}", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "1c4b21dd-ff6f-4de6-9361-4312fe4efa6d", + "id": "9da6d618-34b7-43de-9ac7-b84af95d90c7", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -176878,7 +176878,7 @@ "_postman_previewlanguage": "json" }, { - "id": "8ecdbd9b-c5fe-42b8-af26-3bb5c5d7b625", + "id": "1a46be42-7596-4f9d-a4a5-55b7b2414975", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -176935,7 +176935,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c26567fa-89eb-4913-a64f-58b12ed2093f", + "id": "dab925bf-3c70-48b6-aed1-abd5bdd6b7c8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -176992,7 +176992,7 @@ "_postman_previewlanguage": "json" }, { - "id": "277deb39-9eae-473c-abae-29d6dd3585a2", + "id": "c6777fdb-a4d4-492f-925c-75b8167f2c5e", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177049,7 +177049,7 @@ "_postman_previewlanguage": "json" }, { - "id": "164f815b-e87a-4f2a-af26-b51271fea825", + "id": "2ae58e0c-4516-4235-b620-98e8a1c1e984", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177112,7 +177112,7 @@ } }, { - "id": "c15ab4c7-01fb-45a6-9751-79565a285aab", + "id": "571de930-28fe-4dc0-af95-e1d766b44adb", "name": "Delete Workflow By Id", "request": { "name": "Delete Workflow By Id", @@ -177153,7 +177153,7 @@ }, "response": [ { - "id": "403fd6b9-7ee5-43d9-a2b2-e1de94d86067", + "id": "ce15190d-ab6c-45d3-8704-81976206f198", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -177187,7 +177187,7 @@ "_postman_previewlanguage": "text" }, { - "id": "3ae5cc53-9ecf-4170-b7df-06945583e0b3", + "id": "ea0bd705-c4ee-40ce-aac7-77fd4f81ad8d", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177231,7 +177231,7 @@ "_postman_previewlanguage": "json" }, { - "id": "739fee05-a197-4355-a8a3-9c45ac97f578", + "id": "5ecbb5c4-87b8-429f-ba38-437e3d17d869", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177275,7 +177275,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d7184cf9-5dc1-4a0a-852e-d1af4fcb6f89", + "id": "0b70d6c3-483b-447f-b67c-a8088e013431", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177319,7 +177319,7 @@ "_postman_previewlanguage": "json" }, { - "id": "02ce6c83-d1ec-4a1e-9065-21afc19c4cd8", + "id": "c260740f-f79c-4bc1-aaf3-42562b5dea84", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177363,7 +177363,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c0ae60e-b663-4ab6-8416-f870da912730", + "id": "41c20297-408c-41a9-aeac-900be1238eca", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177413,7 +177413,7 @@ } }, { - "id": "328cbc11-23b2-4ce6-9d5c-850b219979a8", + "id": "6f8030fa-dd74-4f30-8a8b-99be387f667a", "name": "Test Workflow By Id", "request": { "name": "Test Workflow By Id", @@ -177468,7 +177468,7 @@ }, "response": [ { - "id": "07ff8ebc-200e-4626-b821-8d67bee99072", + "id": "d356f6bb-7bd8-4067-96e2-66f668e6014c", "name": "The Workflow object", "originalRequest": { "url": { @@ -177526,7 +177526,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7e0cb9cb-0f48-46aa-b9c8-7dc7acf8290d", + "id": "bcf52abc-98c3-488b-829d-eccd00883615", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -177584,7 +177584,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5a25ff14-a8ce-49e9-a759-a16f5ba441fd", + "id": "9a34cf7d-cb1f-413c-b6b6-5417fa6f61c0", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -177642,7 +177642,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b46efdd0-322e-4c1f-9bf9-8d9b1c3ffc21", + "id": "0dc8508e-b8ef-44bd-9402-152a31563625", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -177700,7 +177700,7 @@ "_postman_previewlanguage": "json" }, { - "id": "87289a12-4769-45a3-8e8e-bb89c8db3f5e", + "id": "de44feac-f8ba-4a02-ba52-3d42dde58bdb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -177758,7 +177758,7 @@ "_postman_previewlanguage": "json" }, { - "id": "81ba19b9-2aef-49aa-812c-293a9d0398c9", + "id": "81f9aeaf-18ee-4d64-b094-2f2215e50061", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -177822,7 +177822,7 @@ } }, { - "id": "1e7eb3e7-aeb4-4344-bcdc-39c07ce10e2b", + "id": "85889cf3-d6dc-4446-b331-146d6abcb9dd", "name": "List Workflow Executions", "request": { "name": "List Workflow Executions", @@ -177901,7 +177901,7 @@ }, "response": [ { - "id": "0fcd534e-def6-4fd5-afe1-637cbb15a115", + "id": "7ddf920f-bdbe-467d-aa88-336b269aedff", "name": "List of workflow executions for the specified workflow.", "originalRequest": { "url": { @@ -177983,7 +177983,7 @@ "_postman_previewlanguage": "json" }, { - "id": "985e7ea0-5547-4c3f-bcf0-e052d62f9d25", + "id": "1710ba10-507d-4d5b-ae6d-e06786e29df2", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178065,7 +178065,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a4f2af37-807c-40d2-87df-ff8aa93fc32d", + "id": "d812bf4c-8c52-4760-a945-3f25e98e21fc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178147,7 +178147,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59fd7761-6856-4cd4-ad99-cf6cc0c50b71", + "id": "a9a0ad87-26c1-4999-bd08-477de6b3f338", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178229,7 +178229,7 @@ "_postman_previewlanguage": "json" }, { - "id": "dc736490-1843-48a0-b380-0638afbb3e8c", + "id": "91928b95-2377-450f-b8a3-03317bb84603", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178311,7 +178311,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4e935504-9e2a-4d4c-9db8-2e1b4b5efc64", + "id": "7df6d051-f516-4f63-8df8-3399408443dd", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178393,7 +178393,7 @@ "_postman_previewlanguage": "json" }, { - "id": "702aac29-fb09-4e1c-969d-c68fcfafd211", + "id": "e592b903-da29-4b5f-beca-ddb60cd1da73", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178481,7 +178481,7 @@ } }, { - "id": "0182b7b6-5b13-4df9-8988-226ba17628e4", + "id": "cf99b203-3b7f-4415-b38e-382efffb0c50", "name": "Get Workflow Execution", "request": { "name": "Get Workflow Execution", @@ -178522,7 +178522,7 @@ }, "response": [ { - "id": "d844b109-3ddd-4dc5-a6e7-8a872c89696e", + "id": "42a67e20-8e06-4436-a0df-02642ec76d2e", "name": "Workflow execution.", "originalRequest": { "url": { @@ -178566,7 +178566,7 @@ "_postman_previewlanguage": "json" }, { - "id": "93081166-24d7-4db8-a35a-a58b4e1d10ce", + "id": "712c1483-4380-4bf6-b878-c8c41122fd26", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178610,7 +178610,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad1ef5cd-15bf-44c2-b7c7-eeaff0b74bae", + "id": "d33b685d-c693-4495-b096-e652c7dd0016", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -178654,7 +178654,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a06f9b89-2e39-4e18-830b-f74292af84e5", + "id": "1b6d2137-5d5b-45da-b3f8-403ef08abc27", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -178698,7 +178698,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0c1cdf87-2eef-4ad3-92d9-1157b5c166c4", + "id": "5da77b98-48c3-47c5-b693-d8f2a5e7e4e7", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -178742,7 +178742,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e409e200-689d-4c47-8551-0988da582ac4", + "id": "7d72499c-4d7a-49aa-bfd6-071c4de59adf", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -178786,7 +178786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "674cf054-565b-427d-9da8-b1a350009c3b", + "id": "476f7889-a87a-46f7-a298-8fc8858675da", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -178836,7 +178836,7 @@ } }, { - "id": "9a235eeb-3d23-47d9-983d-597ea758ccfe", + "id": "b71b72af-15b4-4419-bb7b-90fdba10d562", "name": "Get Workflow Execution History", "request": { "name": "Get Workflow Execution History", @@ -178878,7 +178878,7 @@ }, "response": [ { - "id": "2249ab1b-0b23-4c31-ae07-0611adb280d1", + "id": "99a6db83-832a-4150-bdb8-525b52b99328", "name": "List of workflow execution events for the given workflow execution", "originalRequest": { "url": { @@ -178923,7 +178923,7 @@ "_postman_previewlanguage": "json" }, { - "id": "17e35898-a4f5-49a4-a3db-cb32129612cc", + "id": "5c5f4e51-5049-454a-bda8-42b450e24fd3", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -178968,7 +178968,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a714936a-fd0f-4708-81bf-648956a0bc28", + "id": "efcf56ee-0a48-4c78-8607-971e56e36ccc", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179013,7 +179013,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9c0e1a66-2727-4752-97ea-f529fa9ea6b9", + "id": "60fd440d-3221-47ed-9562-3ce6edd6060f", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179058,7 +179058,7 @@ "_postman_previewlanguage": "json" }, { - "id": "eedbb93c-1fd6-43ad-a504-e2935f9fa5e8", + "id": "686b83f3-ab6a-4116-a706-ad26bbfba980", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179103,7 +179103,7 @@ "_postman_previewlanguage": "json" }, { - "id": "835abc60-3213-4b80-aa64-5a6c19d497c4", + "id": "70b97e41-6e19-4c12-a206-66ba6304dbbe", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179148,7 +179148,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59ed9a0c-ca6a-4fca-9e94-47408bee50b3", + "id": "0be531f1-5e7b-45c5-9cd6-52f52bb00ea0", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179199,7 +179199,7 @@ } }, { - "id": "8f025ec4-9a56-4fa6-927a-4c5a43272049", + "id": "6d6574fe-9ece-4395-911d-053aef47330d", "name": "Cancel Workflow Execution by ID", "request": { "name": "Cancel Workflow Execution by ID", @@ -179241,7 +179241,7 @@ }, "response": [ { - "id": "db38b991-9344-493e-96d6-cb99ec00a387", + "id": "9762b9a1-c34d-4032-ab1c-17c925a40599", "name": "No content - indicates the request was successful but there is no content to be returned in the response.", "originalRequest": { "url": { @@ -179276,7 +179276,7 @@ "_postman_previewlanguage": "text" }, { - "id": "6de47b63-7220-410f-a953-0a8e360dc957", + "id": "94247d09-a64d-45fd-a096-732404cc1836", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179321,7 +179321,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad850ade-021a-43fa-8c52-386cd4275ce1", + "id": "5ffff871-b70b-42c4-bf5e-1e5d476c5718", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179366,7 +179366,7 @@ "_postman_previewlanguage": "json" }, { - "id": "749f11a3-4a6a-475c-a5e5-008499814e02", + "id": "cb1c8b70-5f93-4afe-8327-821fb8e46888", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179411,7 +179411,7 @@ "_postman_previewlanguage": "json" }, { - "id": "72ccc047-40a3-4494-8f29-5e532d38722c", + "id": "b0f31ebe-a7ab-4846-a7fb-697ead443319", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -179456,7 +179456,7 @@ "_postman_previewlanguage": "json" }, { - "id": "27493425-1a54-435a-b1ec-9411f78baf28", + "id": "800731cb-d10e-46e1-a68b-45715312dd47", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179501,7 +179501,7 @@ "_postman_previewlanguage": "json" }, { - "id": "4a243760-dd7c-4d20-a60a-a0a85c37e725", + "id": "af5b1df3-7012-4a69-8feb-7ec8889ad694", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179552,7 +179552,7 @@ } }, { - "id": "ed3ec97b-9788-46c7-9641-e38c082f0c74", + "id": "3deb89ce-cd7b-49b6-85ba-c05f947ce7e0", "name": "List Complete Workflow Library", "request": { "name": "List Complete Workflow Library", @@ -179600,7 +179600,7 @@ }, "response": [ { - "id": "82ebd736-1824-4282-aee8-aac0f98e61a0", + "id": "beb05a56-fbff-4799-8898-10a6a5034129", "name": "List of workflow steps", "originalRequest": { "url": { @@ -179657,12 +179657,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"2008-11-05T18:40:18.263Z\",\n \"versionNumber\": -35495983,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1946-07-18T12:05:52.178Z\",\n \"versionNumber\": 5833308,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"2016-03-23T12:00:03.458Z\",\n \"versionNumber\": -80491961,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1967-09-01T06:33:05.503Z\",\n \"versionNumber\": -15951428,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "e8752ff5-3fac-4ea2-a001-768b5fe185c8", + "id": "9938b251-debd-499e-b5f8-52fa961b0eb4", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -179724,7 +179724,7 @@ "_postman_previewlanguage": "json" }, { - "id": "850a0dcb-4de5-42c5-9b41-f3eceebf7841", + "id": "8cdb44cf-bbe9-4aba-8462-644d11fff1c9", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -179786,7 +179786,7 @@ "_postman_previewlanguage": "json" }, { - "id": "7437ebf5-bb2d-4010-a1d3-70505e8b3aba", + "id": "7e0ab7b0-7dc0-4bf4-8c8b-b846fbd47101", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -179848,7 +179848,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f4f1303a-4057-4707-a027-cea6727c14b0", + "id": "bc7a4105-c3d1-4bfe-a396-5c3909203e58", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -179910,7 +179910,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2ac604c3-cd2b-40fb-9c04-3f50e8b48f37", + "id": "c86e7c10-be12-42da-bae6-2bb83a06d34b", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -179978,7 +179978,7 @@ } }, { - "id": "00dd2ebd-e2d7-4a21-9aef-cc65b45b7082", + "id": "864b8808-581d-4580-a09e-726b2949ded1", "name": "List Workflow Library Actions", "request": { "name": "List Workflow Library Actions", @@ -180036,7 +180036,7 @@ }, "response": [ { - "id": "a0b895ee-2ebc-44d1-8318-56b034e6fa4c", + "id": "a51f6a58-d5e4-46bc-a24f-20b5a525047b", "name": "List of workflow actions", "originalRequest": { "url": { @@ -180103,12 +180103,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"2008-11-05T18:40:18.263Z\",\n \"versionNumber\": -35495983,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1946-07-18T12:05:52.178Z\",\n \"versionNumber\": 5833308,\n \"isSimulationEnabled\": true,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", + "body": "[\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": true,\n \"deprecatedBy\": \"2016-03-23T12:00:03.458Z\",\n \"versionNumber\": -80491961,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n },\n {\n \"id\": \"sp:create-campaign\",\n \"name\": \"Create Certification Campaign\",\n \"type\": \"ACTION\",\n \"description\": \"Generates a certification campaign.\",\n \"formFields\": [\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"First value to compare\",\n \"helpText\": \"The name to give to this certification campaign.\",\n \"label\": \"Campaign Name\",\n \"name\": \"name\",\n \"required\": false,\n \"type\": \"text\"\n }\n ],\n \"exampleOutput\": {},\n \"deprecated\": false,\n \"deprecatedBy\": \"1967-09-01T06:33:05.503Z\",\n \"versionNumber\": -15951428,\n \"isSimulationEnabled\": false,\n \"isDynamicSchema\": false,\n \"outputSchema\": {\n \"definitions\": {},\n \"properties\": {\n \"autoRevokeAllowed\": {\n \"$id\": \"#sp:create-campaign/autoRevokeAllowed\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"autoRevokeAllowed\",\n \"type\": \"boolean\"\n },\n \"deadline\": {\n \"$id\": \"#sp:create-campaign/deadline\",\n \"default\": \"\",\n \"examples\": [\n \"2020-12-25T06:00:00.468Z\"\n ],\n \"format\": \"date-time\",\n \"pattern\": \"^.*$\",\n \"title\": \"deadline\",\n \"type\": \"string\"\n },\n \"description\": {\n \"$id\": \"#sp:create-campaign/description\",\n \"default\": \"\",\n \"examples\": [\n \"A review of everyone's access by their manager.\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"description\",\n \"type\": \"string\"\n },\n \"emailNotificationEnabled\": {\n \"$id\": \"#sp:create-campaign/emailNotificationEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"emailNotificationEnabled\",\n \"type\": \"boolean\"\n },\n \"filter\": {\n \"$id\": \"#sp:create-campaign/filter\",\n \"properties\": {\n \"id\": {\n \"$id\": \"#sp:create-campaign/filter/id\",\n \"default\": \"\",\n \"examples\": [\n \"e0adaae69852e8fe8b8a3d48e5ce757c\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/filter/type\",\n \"default\": \"\",\n \"examples\": [\n \"CAMPAIGN_FILTER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"filter\",\n \"type\": \"object\"\n },\n \"id\": {\n \"$id\": \"#sp:create-campaign/id\",\n \"default\": \"\",\n \"examples\": [\n \"2c918086719eec070171a7e3355a360a\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"id\",\n \"type\": \"string\"\n },\n \"name\": {\n \"$id\": \"#sp:create-campaign/name\",\n \"default\": \"\",\n \"examples\": [\n \"Manager Review\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"name\",\n \"type\": \"string\"\n },\n \"recommendationsEnabled\": {\n \"$id\": \"#sp:create-campaign/recommendationsEnabled\",\n \"default\": true,\n \"examples\": [\n false\n ],\n \"title\": \"recommendationEnabled\",\n \"type\": \"boolean\"\n },\n \"type\": {\n \"$id\": \"#sp:create-campaign/type\",\n \"default\": \"\",\n \"examples\": [\n \"MANAGER\"\n ],\n \"pattern\": \"^.*$\",\n \"title\": \"type\",\n \"type\": \"string\"\n }\n },\n \"title\": \"sp:create-campaign\",\n \"type\": \"object\"\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "9205bcd3-decf-406f-9583-76c4e45221d3", + "id": "4e7af23c-d900-47fc-b156-a16644f36c20", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180180,7 +180180,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d5fa830a-ffef-4a72-b732-f93e19344c99", + "id": "72c22db5-6498-4a92-bab3-5657742e7072", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180252,7 +180252,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0cae54ed-912b-4bb2-89c5-c97be61e0702", + "id": "23322c3a-d024-4e42-9c8a-996bb64e7fc3", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180324,7 +180324,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d30dab42-67b8-4fc7-823c-36a21259e237", + "id": "c1f703eb-e8b6-4226-8825-2cc9a84e4681", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180396,7 +180396,7 @@ "_postman_previewlanguage": "json" }, { - "id": "2e5ef8f2-12c1-41ba-8268-c84393f3be12", + "id": "103029c7-5ca1-4d46-86fe-b6415e29e584", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180474,7 +180474,7 @@ } }, { - "id": "3e89e462-f49a-44de-9d9a-be84bbdfddef", + "id": "2269923b-b37a-4dde-b222-666699ab0fc1", "name": "List Workflow Library Triggers", "request": { "name": "List Workflow Library Triggers", @@ -180532,7 +180532,7 @@ }, "response": [ { - "id": "c29ab91e-020b-4aae-a1d5-4e515670f6cb", + "id": "b0074027-18ce-49d2-a94a-16d15d918141", "name": "List of workflow triggers", "originalRequest": { "url": { @@ -180599,12 +180599,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"2004-08-05T22:42:11.142Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"2024-03-07T09:43:58.267Z\",\n \"isSimulationEnabled\": false,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", + "body": "[\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": false,\n \"deprecatedBy\": \"1972-03-13T19:34:08.458Z\",\n \"isSimulationEnabled\": true,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n },\n {\n \"id\": \"idn:identity-attributes-changed\",\n \"type\": \"EVENT\",\n \"deprecated\": true,\n \"deprecatedBy\": \"1956-03-30T06:33:29.709Z\",\n \"isSimulationEnabled\": false,\n \"outputSchema\": {},\n \"name\": \"Identity Attributes Changed\",\n \"description\": \"One or more identity attributes changed.\",\n \"isDynamicSchema\": false,\n \"inputExample\": {\n \"changes\": [\n {\n \"attribute\": \"department\",\n \"newValue\": \"marketing\",\n \"oldValue\": \"sales\"\n },\n {\n \"attribute\": \"manager\",\n \"newValue\": {\n \"name\": \"mean.guy\",\n \"type\": \"IDENTITY\"\n },\n \"oldValue\": {\n \"name\": \"nice.guy\",\n \"type\": \"IDENTITY\"\n }\n },\n {\n \"attribute\": \"email\",\n \"newValue\": \"john.doe@gmail.com\",\n \"oldValue\": \"john.doe@hotmail.com\"\n }\n ],\n \"identity\": {\n \"name\": \"john.doe\",\n \"type\": \"IDENTITY\"\n }\n }\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "708dcb2a-19ac-4c81-832f-d1769f2c00c4", + "id": "5f6fb271-4bba-4816-abf9-36c086acbea5", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -180676,7 +180676,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45c8e3e8-003d-46bf-b225-8e95d63d569f", + "id": "f2ade459-d94b-40c5-9e24-612417f34dcb", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -180748,7 +180748,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9eba2188-a5ab-40d8-8ba0-29220bd81473", + "id": "a6ba5d3a-91b3-411a-8018-8b261e3dbe93", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -180820,7 +180820,7 @@ "_postman_previewlanguage": "json" }, { - "id": "65d75cff-e93a-4147-8e8b-9dc0aaffa2d5", + "id": "f2a27083-004f-4a22-a070-b228be048c3d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -180892,7 +180892,7 @@ "_postman_previewlanguage": "json" }, { - "id": "66525819-414e-45ae-8488-27c58ac88600", + "id": "9b58a477-a606-4c74-9eb8-8a947fde3e71", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -180970,7 +180970,7 @@ } }, { - "id": "d1c3bf3e-7058-48d5-a0d6-0fa859f1c7da", + "id": "1f67659b-e5ad-4e5e-9d15-1aece1915b52", "name": "List Workflow Library Operators", "request": { "name": "List Workflow Library Operators", @@ -181000,7 +181000,7 @@ }, "response": [ { - "id": "5ad94450-5863-4160-a9cc-ef4204a5e62e", + "id": "3ad05ff4-1d4c-4713-a27e-52e61ba152a5", "name": "List of workflow operators", "originalRequest": { "url": { @@ -181039,12 +181039,12 @@ "value": "application/json" } ], - "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"1980-08-12T04:44:34.964Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": false,\n \"deprecatedBy\": \"1987-07-20T19:29:44.253Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", + "body": "[\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": true,\n \"deprecatedBy\": \"1980-04-23T15:59:18.649Z\",\n \"isSimulationEnabled\": true,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n },\n {\n \"id\": \"sp:compare-boolean\",\n \"name\": \"Compare Boolean Values\",\n \"type\": \"OPERATOR\",\n \"description\": \"Compare two boolean values and decide what happens based on the result.\",\n \"isDynamicSchema\": false,\n \"deprecated\": true,\n \"deprecatedBy\": \"1964-05-30T06:49:30.860Z\",\n \"isSimulationEnabled\": false,\n \"formFields\": [\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable B.\",\n \"helpText\": \"\",\n \"label\": \"Variable A\",\n \"name\": \"variableA.$\",\n \"required\": true,\n \"type\": \"text\"\n },\n {\n \"helpText\": \"Select an operation.\",\n \"label\": \"Operation\",\n \"name\": \"operator\",\n \"options\": [\n {\n \"label\": \"Equals\",\n \"value\": \"BooleanEquals\"\n }\n ],\n \"required\": true,\n \"type\": \"select\"\n },\n {\n \"description\": \"Enter the JSONPath to a value from the input to compare to Variable A.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB.$\",\n \"required\": false,\n \"type\": \"text\"\n },\n {\n \"description\": \"Enter True or False.\",\n \"helpText\": \"\",\n \"label\": \"Variable B\",\n \"name\": \"variableB\",\n \"required\": false,\n \"type\": \"text\"\n }\n ]\n }\n]", "cookie": [], "_postman_previewlanguage": "json" }, { - "id": "229f42e5-fbb6-4177-aab4-c44d3e2d5bd4", + "id": "8f1dbceb-716d-410a-b953-bd875f691aa1", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181088,7 +181088,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ad0db395-e861-459e-a48e-2b61b8f732ac", + "id": "b48a7780-97c1-4478-9a5b-bfd6f880e0d6", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181132,7 +181132,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d73e3372-f8f7-45ca-a613-6b0327cf8985", + "id": "b0989c9f-7f8b-41ad-892c-d3c1fca5caeb", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181176,7 +181176,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c88d04c7-8c68-4d35-8905-2b17ee48d033", + "id": "0d497894-42a2-4616-bf11-74806705a295", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181220,7 +181220,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e53fc879-2421-40d0-b00a-46db4d92bca3", + "id": "a063e91f-89df-4ead-b13e-818fa825a996", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181270,7 +181270,7 @@ } }, { - "id": "e36e7362-661e-4e02-8e40-2d34ee58b7c1", + "id": "2c02aca7-9eee-45d1-944d-803739637e4e", "name": "Generate External Trigger OAuth Client", "request": { "name": "Generate External Trigger OAuth Client", @@ -181313,7 +181313,7 @@ }, "response": [ { - "id": "11664703-8054-491b-a36e-56a2a2560ca0", + "id": "66ad4310-4d6d-4c0f-b24a-bd08d8581d2c", "name": "The OAuth Client object", "originalRequest": { "url": { @@ -181359,7 +181359,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bd4c527f-7a27-466e-9c5a-5100714ef13a", + "id": "cc2a5fd9-c85b-4392-89c1-62059db75601", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181405,7 +181405,7 @@ "_postman_previewlanguage": "json" }, { - "id": "defdc181-6c34-4a4d-be90-29a50a3b23b6", + "id": "c9c75ba1-1028-405b-82ea-064ac0f9d38c", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181451,7 +181451,7 @@ "_postman_previewlanguage": "json" }, { - "id": "5322be40-661e-418e-b792-4ebff868c605", + "id": "f50d9c9d-992d-40cc-b4de-074e3dccd469", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181497,7 +181497,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ee44eeb8-674e-45f2-8e29-0e9215fc42bc", + "id": "5db654b3-4bd2-45d8-939f-ef39f94b14e2", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181543,7 +181543,7 @@ "_postman_previewlanguage": "json" }, { - "id": "0d0758b7-8dec-4e9d-981f-b72657ccb581", + "id": "418a1d72-8180-4932-8cd1-e934fdc5e7b3", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -181595,7 +181595,7 @@ } }, { - "id": "d85922e6-0e61-4e1d-8ba6-c3ba151cc645", + "id": "ad88ec36-49d7-4d94-998a-f6a3ce799010", "name": "Execute Workflow via External Trigger", "request": { "name": "Execute Workflow via External Trigger", @@ -181651,7 +181651,7 @@ }, "response": [ { - "id": "336637b3-4bd8-4acd-9169-a3a457003852", + "id": "9044175a-253f-4290-9c44-052f9b2e0744", "name": "The Workflow object", "originalRequest": { "url": { @@ -181710,7 +181710,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e6317658-edb2-4e77-b31b-9115e7460c3b", + "id": "160559a9-5dfe-41e8-b6c4-c5d57bd4e387", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -181769,7 +181769,7 @@ "_postman_previewlanguage": "json" }, { - "id": "007ad41d-f652-4e2c-b541-077a92ba2938", + "id": "1db89e9b-53d9-4903-bc0d-b5541347d6d8", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -181828,7 +181828,7 @@ "_postman_previewlanguage": "json" }, { - "id": "1eb6dfe8-1c86-4bfd-943c-d87474fba16a", + "id": "f80d85eb-a4f4-4d5c-97c8-d4fe9f76faf4", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -181887,7 +181887,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f0e8bf9c-4cca-4a93-aa8e-80e33536bf78", + "id": "847ebb7b-3a90-49a3-a8ae-6ac70e2a202d", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -181946,7 +181946,7 @@ "_postman_previewlanguage": "json" }, { - "id": "45879c88-1da5-4c60-803f-fa7e087b08db", + "id": "bdab9ff4-1543-4c85-b9e8-0fddeea9f4ed", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182011,7 +182011,7 @@ } }, { - "id": "2d16bc85-e884-4fa0-99ca-a08545dbc7e7", + "id": "b6cd26a5-60f8-4fc5-8874-e3e751139cf0", "name": "Test Workflow via External Trigger", "request": { "name": "Test Workflow via External Trigger", @@ -182068,7 +182068,7 @@ }, "response": [ { - "id": "4aced6c7-4790-456a-9db0-5c349d558470", + "id": "da7e1277-47bc-431d-ac01-bc95e11ac02e", "name": "Responds with the test input", "originalRequest": { "url": { @@ -182128,7 +182128,7 @@ "_postman_previewlanguage": "json" }, { - "id": "ed882e4c-92ec-4bd4-9e02-5b872568275d", + "id": "a2caf915-1811-4404-b706-343819f1e85e", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182188,7 +182188,7 @@ "_postman_previewlanguage": "json" }, { - "id": "d0624938-0e61-4f16-986b-1b4de6041854", + "id": "59cbffc5-6ea1-4e31-a8d5-c83e89519754", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182248,7 +182248,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88e26a21-9a2f-466a-8805-7af3fd78173d", + "id": "3b1932e2-4de7-4fb4-92db-97456fcca2e8", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182308,7 +182308,7 @@ "_postman_previewlanguage": "json" }, { - "id": "41cf9c93-1823-4c3b-8d60-e2451b0f1c6e", + "id": "37d8e527-c760-439d-b68e-e05cbae2e0ff", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182368,7 +182368,7 @@ "_postman_previewlanguage": "json" }, { - "id": "091f7fc5-4ca3-4728-b87d-8b98d9fb9168", + "id": "143058e4-a241-4a2c-95e3-a3fdba146690", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182440,7 +182440,7 @@ "description": "", "item": [ { - "id": "01909639-95f9-4066-8e60-5b28db502893", + "id": "bff446a3-4ab5-4416-a663-451b1a097e29", "name": "List Vendor Connector Mappings", "request": { "name": "List Vendor Connector Mappings", @@ -182469,7 +182469,7 @@ }, "response": [ { - "id": "6237c718-abc2-4c5c-bbaa-63922ced361c", + "id": "4349808d-45a1-4d1a-ace7-41cc4b3c5053", "name": "Successfully retrieved list.", "originalRequest": { "url": { @@ -182512,7 +182512,7 @@ "_postman_previewlanguage": "json" }, { - "id": "567cb5e7-7099-467e-9c15-8ff0ae4bba50", + "id": "52d62150-74d6-4926-90a6-2b66016ecf24", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182555,7 +182555,7 @@ "_postman_previewlanguage": "json" }, { - "id": "e3d2a8b2-d5b4-424a-9945-474c81d6827b", + "id": "bf063c9a-5c17-4a59-8b38-0afbedda8766", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182598,7 +182598,7 @@ "_postman_previewlanguage": "json" }, { - "id": "f56eb693-e341-49ac-8c3c-153c76a88b51", + "id": "5e9ce987-2e41-423e-b6e1-ecfde3423729", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -182641,7 +182641,7 @@ "_postman_previewlanguage": "json" }, { - "id": "a09df4ce-137c-4a7b-8f33-d4f51b63c2db", + "id": "eb7d2c0b-71d7-413a-897e-d3cd93ca953a", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -182684,7 +182684,7 @@ "_postman_previewlanguage": "json" }, { - "id": "b6a5ea15-0b87-4633-b632-af888f7d2cd1", + "id": "5be5de4d-9646-4078-aabc-bd6bb64c2bdb", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -182727,7 +182727,7 @@ "_postman_previewlanguage": "json" }, { - "id": "092fc874-4154-42c3-beab-ef040fb4c5b0", + "id": "e1920a50-7341-42b4-b148-fa8cef923263", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -182776,7 +182776,7 @@ } }, { - "id": "4bc7b037-df3e-4f66-a2fb-f7945a3b534f", + "id": "77a37971-95b3-4ac5-a7d7-d86f6a8836c8", "name": "Create Vendor Connector Mapping", "request": { "name": "Create Vendor Connector Mapping", @@ -182818,7 +182818,7 @@ }, "response": [ { - "id": "c1b4d12d-c20e-437f-96b1-cac6f8733a0a", + "id": "0b8accac-e6dc-4a3d-b2b1-2aa047216696", "name": "Successfully created a new vendor connector mapping.", "originalRequest": { "url": { @@ -182874,7 +182874,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c2d28940-456e-45ad-b25e-577d727f4652", + "id": "413aa33d-89e2-4027-b437-88f5cfbc3b08", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -182930,7 +182930,7 @@ "_postman_previewlanguage": "json" }, { - "id": "9369db3a-82cc-4eab-87b0-fdb1d8cde635", + "id": "e0ce2892-5143-4be9-b296-154f0cc3d50f", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -182986,7 +182986,7 @@ "_postman_previewlanguage": "json" }, { - "id": "76eb67f0-c8d1-43e2-bf25-f6dedd453e55", + "id": "88e6b13a-709a-46ff-a1be-717a74e9ce35", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183042,7 +183042,7 @@ "_postman_previewlanguage": "json" }, { - "id": "cefcf728-9825-422c-8b14-df831f601556", + "id": "fa072865-9290-46ca-a108-904fac9da70b", "name": "Method Not Allowed - indicates that the server knows the request method, but the target resource doesn't support this method.", "originalRequest": { "url": { @@ -183098,7 +183098,7 @@ "_postman_previewlanguage": "json" }, { - "id": "88579ae5-cb42-4686-9012-50e2d93a13ec", + "id": "c09c2f33-2b39-4db6-a3b0-70ae01b6cebc", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183154,7 +183154,7 @@ "_postman_previewlanguage": "json" }, { - "id": "c53107b4-e118-4298-973a-2c556343ea17", + "id": "d79c0d35-f94e-442f-b2ad-700ed4188939", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183216,7 +183216,7 @@ } }, { - "id": "0e86879e-e044-4167-9b7c-7ca1146fbe4e", + "id": "b3befcfd-1243-4edf-8141-6247cf519d6c", "name": "Delete Vendor Connector Mapping", "request": { "name": "Delete Vendor Connector Mapping", @@ -183258,7 +183258,7 @@ }, "response": [ { - "id": "fa6c1702-5c43-4404-94cc-9c8419f07bf7", + "id": "07136247-a50e-4296-b029-0343f5768332", "name": "Successfully deleted the specified vendor connector mapping.", "originalRequest": { "url": { @@ -183314,7 +183314,7 @@ "_postman_previewlanguage": "json" }, { - "id": "59c81872-393e-40a9-a9d0-b570305ff7b6", + "id": "70cc6b63-7f05-45f9-8c6f-5e01875ef154", "name": "Client Error - Returned if the request body is invalid.", "originalRequest": { "url": { @@ -183370,7 +183370,7 @@ "_postman_previewlanguage": "json" }, { - "id": "fb025123-f673-449d-8396-de71c9f723f4", + "id": "169ed726-83da-40e9-94c1-c94f8332452b", "name": "Unauthorized - Returned if there is no authorization header, or if the JWT token is expired.", "originalRequest": { "url": { @@ -183426,7 +183426,7 @@ "_postman_previewlanguage": "json" }, { - "id": "250d4b0e-cb46-42fc-8b99-86e1cd621aa8", + "id": "b8990688-48e8-44bc-99e5-b996b120dbb7", "name": "Forbidden - Returned if the user you are running as, doesn't have access to this end-point.", "originalRequest": { "url": { @@ -183482,7 +183482,7 @@ "_postman_previewlanguage": "json" }, { - "id": "bc867736-d447-49f8-98b9-9f75b90ffbb4", + "id": "377fc0e8-239f-4d51-aceb-da8f21e1b736", "name": "Not Found - returned if the request URL refers to a resource or object that does not exist", "originalRequest": { "url": { @@ -183538,7 +183538,7 @@ "_postman_previewlanguage": "json" }, { - "id": "52482a73-9889-46e0-b55d-9873bc4e7ce0", + "id": "a38056d8-a2f4-4e84-9ad6-fbc2ffa68e5b", "name": "Too Many Requests - Returned in response to too many requests in a given period of time - rate limited. The Retry-After header in the response includes how long to wait before trying again.", "originalRequest": { "url": { @@ -183594,7 +183594,7 @@ "_postman_previewlanguage": "json" }, { - "id": "82b6d76e-47e7-4a89-b05b-0dccb61b2dea", + "id": "9835a1d8-db42-48d2-8830-7ed8af0ed241", "name": "Internal Server Error - Returned if there is an unexpected error.", "originalRequest": { "url": { @@ -183736,7 +183736,7 @@ } ], "info": { - "_postman_id": "93225c6c-3b97-4e21-ad18-150a40d517e9", + "_postman_id": "bab6d06f-1566-4370-b6a0-0d0c8195495f", "name": "Identity Security Cloud V3 API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "description": {